I recently spent an unhealthy amount of time tearing down Episode 6 ("Herogasm") and Episode 7 ("Here Comes a Candle to Light You to Bed") to see how Kripke & Co. pull off their visual tricks. Here is how you can use FFmpeg to break down Season 3 like a Vought intern leaking secrets. The flashback sequences in Russia have a specific film grain and desaturation. To study the lighting setup, I dumped the entire episode into JPEGs.
ffmpeg -i "The.Boys.S03E06.mkv" -vf "fps=1" soldier_boy_frames/frame_%04d.jpg This extracts one frame per second. If you want every single frame (24 per second), change fps=1 to fps=24 . Watching Homelander’s laser eyes flicker at native framerate is terrifying. 2. The "Herogasm" Blur Effect (Reverse Engineering) There is a specific chaotic zoom during the brawl. I wanted to see if the blur was in-camera or digital. the boys s03 ffmpeg
ffmpeg -i "The.Boys.S03E07.mkv" -vf "codecview=mv=pf+bf+bb" -f null - This visualizes the motion vectors. Spoiler: The CGI on the super-suit punches is smoother than you think, but the practical effects for the... ahem ... "intimate" stunts rely on heavy optical flow interpolation. Let’s be honest. The Deep talking to his gills is the highest form of cinema. To clip just his pep talk with Timothy the Octopus (RIP): I recently spent an unhealthy amount of time
ffmpeg -i "The.Boys.S03E01.mkv" -filter_complex "[0:v]setpts=4*PTS[v];[0:a]atempo=0.5[a]" -map "[v]" -map "[a]" termite_slowmo.mp4 Note: Audio gets choppy below 0.5 speed, so you might have to mute this one unless you want to hear Ant-Man screaming in slo-mo. The Boys Season 3 is a masterpiece of compression artifacts and VFX. Using FFmpeg lets you peel back the Amazon Prime bitrate and see the actual artistry underneath. The flashback sequences in Russia have a specific