Thanks,
I've created a little BASH script to do it per directory.
#! /bin/sh
for a in *.m4a; do
OUTF=${a%.m4a}_new.m4a
echo "$a" "$OUTF"
ffmpeg -hide_banner -loglevel panic -i "$a" -c copy -map 0 -movflags
+faststart "$OUTF"
mv "$OUTF" "$a"
RESULT=$?
done
------------------------------------------------------------------------
mfraser's Profile: http://forums.slimdevices.com/member.php?userid=22793
View this thread: http://forums.slimdevices.com/showthread.php?t=110530
_______________________________________________
ripping mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/ripping