[ create a new paste ] login | about

Link: http://codepad.org/cE1d6a6f    [ raw code | fork ]

jpjacobs - Plain Text, pasted on Oct 23:
1
2
3
4
5
6
7
8
any2ogg() { 
# arguments: $1 output dir without trailing slash
    for file in *.mp3 
     do
        avconv -i "$file" -ab 192k "$1${file%.*}.ogg"
    done
}



Create a new paste based on this one


Comments: