Encodage vidéo sur PSP avec FFMPEG
Voici un script à utiliser sur FFMPEG en ligne de commande pour convertir vos vidéos et les rendre compatible pour le système PSP :
ffmpeg -threads 0 -i video.mp4 -ss 0.000000 -t 1428.29 -vf scale="min(480\, iw*3/2):-1" -c:v libx264 -b:v 1024k -vprofile main -level 30 -x264opts frameref=3:8x8dct=0:b_pyramid=0:partitions=all:me=umh:weight_b -flags +loop -cmp +chroma -partitions +parti4x4+partp8x8+partb8x8 -me_method tesa -subq 6 -me_range 16 -trellis 2 -g 250 -keyint_min 25 -sc_threshold 40 -c:a libvo_aacenc -b:a 128k -y videopsp.mp4




