Skip to content

Instantly share code, notes, and snippets.

@osbre
Created August 7, 2019 18:18
Show Gist options
  • Select an option

  • Save osbre/c0645f5dbc28b1cafa14d2284e51ea7e to your computer and use it in GitHub Desktop.

Select an option

Save osbre/c0645f5dbc28b1cafa14d2284e51ea7e to your computer and use it in GitHub Desktop.
Convert all mkv-files in folder, to 3gp
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