Fuze+ Video Requirements

Sometimes the fuze+ don’t play the resulting mp4 container files properly. Using the avi container format is a nice workaround. Also I needed to change the audio codec to mp3, please see below.

#! /bin/bash
# This is for aspect ratio 16:9, sometimes the fuze+ player don’t play mp4 files properly
# so I use .avi container instead with mp3 audio
for file in .mp4
do
    ffmpeg  -i “$file”  -s 320x180 -vf pad=320:240:0:20 -vcodec mpeg4 -acodec libmp3lame "out/${file%%.
}.avi"
    mv – “$file” done
done
read -p “Please press Enter to continue” yn

Best regards

Jeppe