Last active
October 11, 2015 20:02
-
-
Save rytoj/491d679b3ba10656daf7 to your computer and use it in GitHub Desktop.
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/bash | |
#function to convert youtube clip to .webm | |
youtubewebm(){ | |
avconv -i $1 -acodec libvorbis -aq 5 -ac 2 -qmax 25 -threads 2 $2.webm | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment