vlc says the avi is "planar 4:2:0 YUV full scale".
if I transcode the video to h264 (but it also happens with when transcoding to other formats), black gets some kind of dark gray and white some kind of light grey.
vlc says the transcoded file is "planar 4:2:0 YUV". -> "full scale" is missing.
obviously the chroma from the source file is interpreted right when playing, but wrong when transcoding.
I understand the thing with the different chroma modes I420 (16-240 / analog) and J420 (0-255 / digital),
but how can I adjust the chrome for the input and/or the output file?
I'm doing
Code: Select all
vlc.exe -I dummy -vvv mjpeg.avi --sout #transcode{vcodec=h264,vb=1000,acodec=mp3,ab=128}:standard{access=file,mux=ts,dst=h264_mp3.ts}
thanks for your help!