Skip to content

Instantly share code, notes, and snippets.

@tuzz
Last active December 15, 2015 20:59
Show Gist options
  • Save tuzz/5322240 to your computer and use it in GitHub Desktop.
Save tuzz/5322240 to your computer and use it in GitHub Desktop.
The PS3 can't play MKVs over my minidlna server. This script attempts to convert to mp4. I run this in cron.
%!/bin/bash
previous=IFS
IFS=$(echo -en "\n\b")
for file in `find /media/hdd -iname '*.mkv'`
do
if [ ! -f "$file.mp4" ];
then
echo "Converting $file..."
avconv -i "$file" -codec copy -loglevel warning "$file.mp4"
fi
done
IFS=previous
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment