BREAKING NEWS
LATEST POSTS
-
Reve Image 1.0 Halfmoon – A new model trained from the ground up to excel at prompt adherence, aesthetics, and typography
A little-known AI image generator called Reve Image 1.0 is trying to make a name in the text-to-image space, potentially outperforming established tools like Midjourney, Flux, and Ideogram. Users receive 100 free credits to test the service after signing up, with additional credits available at $5 for 500 generations—pretty cheap when compared to options like MidJourney or Ideogram, which start at $8 per month and can reach $120 per month, depending on the usage. It also offers 20 free generations per day.
-
NVidia Physical AI – Collection of commercial-grade datasets for physical AI developers
https://huggingface.co/collections/nvidia/physical-ai-67c643edbb024053dcbcd6d8
🔹 15TB of high-quality, standardized synthetic data
🔹 320,000+ trajectories for robotics training
🔹 1,000+ OpenUSD assets, including a SimReady collection -
RGBAvatar – Reduced Gaussian Blendshapes for Online Modeling of Head Avatars
https://gapszju.github.io/RGBAvatar
A method for reconstructing photorealistic, animatable head avatars at speeds sufficient for on-the-fly reconstruction. Unlike prior approaches that utilize linear bases from 3D morphable models (3DMM) to model Gaussian blendshapes, our method maps tracked 3DMM parameters into reduced blendshape weights with an MLP, leading to a compact set of blendshape bases.
https://github.com/gapszju/RGBAvatar
-
Robert Legato joins Stability AI as Chief Pipeline Architect
https://stability.ai/news/introducing-our-new-chief-pipeline-architect-rob-legato
“Joining Stability AI is an incredible opportunity, and I couldn’t be more excited to help shape the next era of filmmaking,” said Legato. “With dynamic leaders like Prem Akkaraju and James Cameron driving the vision, the potential here is limitless. What excites me most is Stability AI’s commitment to filmmakers—building a tool that is as intuitive as it is powerful, designed to elevate creativity rather than replace it. It’s an artist-first approach to AI, and I’m thrilled to be part of it.”
-
WSL – Windows Subsystem for Linux
https://learn.microsoft.com/en-us/windows/wsl/install
The Windows Subsystem for Linux (WSL) is a feature of the Windows operating system that enables you to run a Linux file system, along with Linux command-line tools and GUI apps, directly on Windows, alongside your traditional Windows desktop and apps.
https://ubuntu.com/desktop/wsl
-
Apple TV+ Reportedly Loses $1 Billion on Streaming a Year
https://www.indiewire.com/news/business/apple-tv-reportedly-loses-1-billion-streaming-1235110323
But it supposedly also has 45 million subscribers, and with $124.3 million in revenue.
Per the company’s most recent earnings, the three months ending in January saw Apple bring in $124.3 billion in revenue, $26.3 billion of which came from Services, a record for the division. That’s just for one quarter. For the year, Services brought in more than $96 billion. It can afford to absorb a billion dollars in losses.https://spyglass.org/apple-tv-plus-strategy
It Wasn’t the Apple TV+ Spend, It Was the Apple TV+ Strategy
FEATURED POSTS
-
Embedding frame ranges into Quicktime movies with FFmpeg
QuickTime (.mov) files are fundamentally time-based, not frame-based, and so don’t have a built-in, uniform “first frame/last frame” field you can set as numeric frame IDs. Instead, tools like Shotgun Create rely on the timecode track and the movie’s duration to infer frame numbers. If you want Shotgun to pick up a non-default frame range (e.g. start at 1001, end at 1064), you must bake in an SMPTE timecode that corresponds to your desired start frame, and ensure the movie’s duration matches your clip length.
How Shotgun Reads Frame Ranges
- Default start frame is 1. If no timecode metadata is present, Shotgun assumes the movie begins at frame 1.
- Timecode ⇒ frame number. Shotgun Create “honors the timecodes of media sources,” mapping the embedded TC to frame IDs. For example, a 24 fps QuickTime tagged with a start timecode of 00:00:41:17 will be interpreted as beginning on frame 1001 (1001 ÷ 24 fps ≈ 41.71 s).
Embedding a Start Timecode
QuickTime uses a
tmcd
(timecode) track. You can bake in an SMPTE track via FFmpeg’s-timecode
flag or via Compressor/encoder settings:- Compute your start TC.
- Desired start frame = 1001
- Frame 1001 at 24 fps ⇒ 1001 ÷ 24 ≈ 41.708 s ⇒ TC 00:00:41:17
- FFmpeg example:
ffmpeg -i input.mov \ -c copy \ -timecode 00:00:41:17 \ output.mov
This adds a timecode track beginning at 00:00:41:17, which Shotgun maps to frame 1001.
Ensuring the Correct End Frame
Shotgun infers the last frame from the movie’s duration. To end on frame 1064:
- Frame count = 1064 – 1001 + 1 = 64 frames
- Duration = 64 ÷ 24 fps ≈ 2.667 s
FFmpeg trim example:
ffmpeg -i input.mov \ -c copy \ -timecode 00:00:41:17 \ -t 00:00:02.667 \ output_trimmed.mov
This results in a 64-frame clip (1001→1064) at 24 fps.