How to enable H264 support in CEF3 latest version ?

Indeed the compile option to support proprietary codecs was moved. the magic now happens here: set GN_DEFINES=is_official_build=true proprietary_codecs=true ffmpeg_branding=Chrome there is 2 batch files that you should update/create (as found here): c:\code\chromium_git\update.bat: set CEF_USE_GN=1 set GN_DEFINES=is_official_build=true proprietary_codecs=true ffmpeg_branding=Chrome set GN_ARGUMENTS=–ide=vs2015 –sln=cef –filters=//cef/* python ..\automate\automate-git.py –download-dir=C:\code\chromium_git –depot-tools-dir=C:\code\depot_tools –no-distrib –no-build c:\code\chromium_git\chromium\src\cef\create.bat: set CEF_USE_GN=1 set GN_DEFINES=is_win_fastlink=true proprietary_codecs=true ffmpeg_branding=Chrome … Read more

h264 lossless coding

I am going to add a late answer to this one after spending all day trying to figure out how to get YUV 4:4:4 pixels into x264. While x264 does accept raw 4:2:0 pixels in a file, it is really quite difficult getting 4:4:4 pixels passed in. With recent versions of ffmpeg, the following works … Read more