[FFmpeg-user] MOV to MP4 for PS3

Bill Adams gofish at evilbill.org
Fri Dec 30 21:48:49 CET 2011


On 11/13/2011 12:30 PM, timo orava wrote:
> I have been trying to get my .MOV-files to work on PS3. I used ffmpeg to convert them to MP4 but they still don't work.
>
> I tried the following: ffmpeg.exe -i "%e" -vprofile baseline -aq 224k -b 4000k "%e.mp4
>
> What are the parameters for PS3 as it seems to be quite picky? I have tried both PS3 Media Server and TVersity without any luck.


To encode 1080p for the PS3, the ffmpeg command line needs one of:
     -x264opts bluray-compat=1
or
     -x264opts b-pyramid=strict


Here is an example full command line I use for 1080p with surround:

ffmpeg -y -i path/to/source/file -map 0.0 -map 0.1 -metadata title="The 
Title" -metadata album="Movies" -acodec libfaac -ac 6 -ab 384k -f mp4 
-vcodec libx264 -crf 24 -r 24 -preset slower -deinterlace -refs 4 
-x264opts bluray-compat=1:level=41 -threads 0 outputfile.m4v


Good luck.

b.




More information about the ffmpeg-user mailing list