You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I’m looking for some guidance on reading an MP4 video in YUV format and converting it to RGB without using hardware acceleration. I want to make sure I get consistent results across both ARM and x86 architectures.
Could you please let me know how to set the sws_flags? I'm planning to use the following flags: -sws_flags full_chroma_int+bitexact+accurate_rnd.
This is the full command line (from here): ffmpeg -i video.mp4 -frames 1 -color_range pc -f rawvideo -pix_fmt rgb24 -sws_flags full_chroma_int+bitexact+accurate_rnd output_good.rgb24
Thanks so much for your help! I really appreciate it!
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi,
I’m looking for some guidance on reading an MP4 video in YUV format and converting it to RGB without using hardware acceleration. I want to make sure I get consistent results across both ARM and x86 architectures.
Could you please let me know how to set the
sws_flags
? I'm planning to use the following flags:-sws_flags full_chroma_int+bitexact+accurate_rnd
.This is the full command line (from here):
ffmpeg -i video.mp4 -frames 1 -color_range pc -f rawvideo -pix_fmt rgb24 -sws_flags full_chroma_int+bitexact+accurate_rnd output_good.rgb24
Thanks so much for your help! I really appreciate it!
Beta Was this translation helpful? Give feedback.
All reactions