Zulko / moviepy

Video editing with Python
https://zulko.github.io/moviepy/
MIT License
12.08k stars 1.51k forks source link

ffmpeg filter #2132

Open sugizo opened 3 months ago

sugizo commented 3 months ago

nice to have ffmpeg video and audio filter e.g.

ffmpeg -y -i 'input_ss_t.mp4' -vf 'hflip' 'hflip.mp4'
ffmpeg -y -i 'input_ss_t.mp4' -af 'rubberband = pitch = 1.5' 'output_pitch.mp4'

not found ffmpeg filters on https://zulko.github.io/moviepy/ref/ffmpeg.html https://github.com/Zulko/moviepy/blob/master/moviepy/video/io/ffmpeg_tools.py

best regards