7

I'm now developing an app with cef3 for Windows. I know that chromium has just dropped supprort for H.264. But is there another way that I can make my application play mp4 and flash video?

user3090223
  • 71
  • 1
  • 2

2 Answers2

3

You need to reconfigure CEF build with at least

GYP_DEFINES="proprietary_codecs=1 ffmpeg_branding=Chrome"

The full GYP_DEFINES is

GYP_DEFINES="branding=Chromium buildtype=Official proprietary_codecs=1 ffmpeg_branding=Chrome", GYP_GENERATORS="ninja,msvs-ninja", GYP_MSVS_VERSION="2013"

More info:

https://groups.google.com/forum/#!topic/delphichromiumembedded/8jisGiqxD-Y https://code.google.com/p/chromiumembedded/issues/detail?id=371

You will need license for codecs. Chromium/CEF do not include them for licensing reasons.

Cristian Amarie
  • 160
  • 1
  • 8
1

the options to enable proprietary codecs (i.e. H.264) have been moved.

you can read my answer with all the details.

Eugen
  • 537
  • 6
  • 14