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?
Asked
Active
Viewed 3,659 times
7
-
Did you find anything? – Tsury May 05 '15 at 06:22
2 Answers
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