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