File size: 254 Bytes
911c66e
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import ffmpeg
(
    ffmpeg
    .input("scratch/tmp/studio_output.mp4", ss=2.0)
    .filter('scale', 200, -1)
    .output("scratch/tmp/frame.jpg", vframes=1)
    .overwrite_output()
    .run(quiet=True)
)
print("Frame extracted to scratch/tmp/frame.jpg")