Skip to content

Instantly share code, notes, and snippets.

@yseto
Created April 29, 2013 08:09
Show Gist options
  • Save yseto/5480299 to your computer and use it in GitHub Desktop.
Save yseto/5480299 to your computer and use it in GitHub Desktop.
timidityからm4aを作成する。
#!/bin/bash
if [ -f $1 ]; then
rm tmp.aac
OUTPUT=`basename $1 .mid`
timidity -Ow -o - $1 | avconv -i - -acodec aac -strict experimental -ab 128k tmp.aac
MP4Box -add tmp.aac $OUTPUT.m4a
rm tmp.aac
ls -l $OUTPUT.m4a
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment