I have to create video in mp4 format, and it seems that I can encode it with different pixel formats like yuv420p
, yuv422p
, yuvj422p
. Which one I should use to maximize compatibility with most browsers/players?
相关问题
- Improving accuracy of Google Cloud Speech API
- Video Format that Works on Mobile Phones
- MP4 codec support in Chromium
- Streaming video (C# using FFmpeg AutoGen) sends mu
- How do I decode opus file to pcm file using libavc
相关文章
- Handling ffmpeg library interface change when upgr
- How to use a framework build of Python with Anacon
- c++ mp3 library [closed]
- Passing a native fd int to FFMPEG from openable UR
- FFmpeg - What does non monotonically increasing dt
- Why html5 video loop create request each iteration
- ffmpeg run from shell runs properly, but does not
- .ogg video not playing in firefox
yuv420p
You can use
-pix_fmt yuv420p
or-vf format=yuv420p
to make sure your output uses this pixel format (assuming you're outputting H.264 video).