Skip to content

Instantly share code, notes, and snippets.

@Canx
Created December 19, 2012 20:46
Show Gist options
  • Save Canx/4340287 to your computer and use it in GitHub Desktop.
Save Canx/4340287 to your computer and use it in GitHub Desktop.
convert recursively videos to phone format
#!/bin/bash
find . | while read file
do
echo "Processing $file file..."
avconv -i "$file" -s qvga -strict experimental "$file".mp4
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment