[FFmpeg-user] MOV to MP4 for PS3

Bill Adams gofish at evilbill.org
Wed Jan 4 04:04:54 CET 2012


On 12/30/2011 12:48 PM, Bill Adams wrote:
> 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

Ugh, my mistake, actually for -preset slower @ 1080p the refs need to be 
4 for the PS3 and given in -x264opts:

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 -x264opts 
level=41:ref=4 -threads 0 outputfile.m4v

If you use -preset medium (the default) it will work fine because the 
refs are 3 for that preset.


b.







More information about the ffmpeg-user mailing list