Avidemux > Unix-Like (Linux/Bsd/...)
command line to convert to PS3 compatible MP4
rebeltaz:
I have found that I can convert AVIs to Playstation 3 compatible MP4s using the avidemux GUI and the following codecs - video: MPEG-4 ASP (lavc) / audio: AAC (Faac) / type: MP4
I tried using the following bash script to batch convert a folder of AVI files, but the resultant MP4s were still incompatible with PS3:
--- Code: ---#!/bin/bash
VIDEOCODEC="FFmpeg4"
AUDIOCODEC="AAC"
for FIL in `ls *avi | sort` ; do
avidemux --video-codec $VIDEOCODEC --audio-codec $AUDIOCODEC --force-alt-h264 --load "$FIL" --save ${FIL%.*}.mp4 --quit
done
--- End code ---
I also tried VIDEOCODEC="XviD4" but that didn't work either. Can someone please tell me what the proper Video and Audio Codecs are for this? Thanks...
mean:
You didnt specify a container, the output files are probably avi renamed to mp4
rebeltaz:
So I just need to add '--output-format MP4' to the command in the script?
mean:
before the --save
rebeltaz:
OK.. I'll give that a try tonight. I'll let you know how it works... Thanks.
Navigation
[0] Message Index
[#] Next page
Go to full version