Skip to content

Instantly share code, notes, and snippets.

@1f0
Created July 19, 2019 06:08
Show Gist options
  • Select an option

  • Save 1f0/c880b73c15c9e680ae8593af7886c372 to your computer and use it in GitHub Desktop.

Select an option

Save 1f0/c880b73c15c9e680ae8593af7886c372 to your computer and use it in GitHub Desktop.
example of testing different filter of ffmpeg
import ffmpeg
(
ffmpeg
.input('D:\\P\\ffmpeg-20190702-231d0c8-win64-static\\bin\\xiaoice_360p.mp4', re=None)
.audio
.filter('aderivative')
.output('rtmp://localhost/live/test', f='flv')
.run()
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment