Created
August 7, 2019 18:18
-
-
Save osbre/c0645f5dbc28b1cafa14d2284e51ea7e to your computer and use it in GitHub Desktop.
Convert all mkv-files in folder, to 3gp
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
| for i in *.mkv; | |
| do name=`echo "$i"` | |
| echo "$name" | |
| ffmpeg -y -i "$i" \ | |
| -r 20 -s 352x288 -vb 400k \ | |
| -acodec aac -strict experimental -ac 1 -ar 8000 -ab 24k \ | |
| "phone/${name}.3gp" | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment