mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-05 04:22:51 +08:00
9 lines
175 B
Python
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()
|
|
)
|