Created
July 19, 2019 06:08
-
-
Save 1f0/c880b73c15c9e680ae8593af7886c372 to your computer and use it in GitHub Desktop.
example of testing different filter of ffmpeg
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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