Skip to content

Video Conversion notes

BAD-AL edited this page Mar 22, 2024 · 1 revision

Video Conversion notes

:: notes From Phantom

ffmpeg -i xboxmovie.xmv xboxmovie.mp4

::Convert 'original' to movie only format:
ffmpeg -i xboxmovie.mp4 -map 0:v -c:v copy -bsf:v h264_mp4toannexb raw.h264

::Convert h264 video to mp4 at the correct speed:
ffmpeg -fflags +genpts -r 105 -i raw.h264 -c:v copy output.mp4

::Convert video to mp4 with sound:
ffmpeg -i output.mp4 -i ps2movie9_pcm.wav -c:v copy -c:a aac outputWithAudio.mp4

::(PCM audio was pulled from PSS demux - probably not the most efficient but higher quality videos are cool).