3 lines
65 B
Text
3 lines
65 B
Text
|
#!/bin/sh
|
||
|
for i in *.$1; do ffmpeg -i "$i" "$3/${i%.*}.$2"; done
|