My LG CX TV can't play some mkv videos even if the codec (HEVC) is supported and working fine with other videos.
I would like to copy the same settings from a working video and re-encode the "non working" one using ffmpeg.
How can I do?
Thanks.
My LG CX TV can't play some mkv videos even if the codec (HEVC) is supported and working fine with other videos.
I would like to copy the same settings from a working video and re-encode the "non working" one using ffmpeg.
How can I do?
Thanks.
I found a solution:
ffmpeg -i input.mkv -c:v libx265 -pix_fmt yuv420p10le -c:a ac3 output.mkv
input video:
hevc (Main), yuv420p(tv), 1920x818, SAR 1:1 DAR 960:409, 23.98 fps, 23.98 tbr, 1k tbn, 1k tbc (default) (forced)
input audio:
ac3, 48000 Hz, 5.1(side), fltp, 448 kb/s (default)
output video:
hevc (Main 10), yuv420p10le(tv, progressive), 1920x818 [SAR 1:1 DAR 960:409], 23.98 fps, 23.98 tbr, 1k tbn, 23.98 tbc (default) (forced)
output audio:
ac3, 48000 Hz, 5.1(side), fltp, 448 kb/s (default)
So the problem is the pixel format.