Last active
August 29, 2015 14:27
-
-
Save 8l/bc25252e1e9073939a72 to your computer and use it in GitHub Desktop.
flv to webm convert shell script using ffmpeg ex) ./webm_encode.sh sample
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
#!/bin/sh | |
ffmpeg -i $1.flv -vcodec libvpx -acodec libvorbis $1.webm |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment