ffmpeg-python/examples/facetime.py
2018-11-25 04:36:55 -06:00

9 lines
175 B
Python

import ffmpeg
(
ffmpeg
.input('FaceTime', format='avfoundation', pix_fmt='uyvy422', framerate=30)
.output('out.mp4', pix_fmt='yuv420p', vframes=100)
.run()
)