Julien Isorce
Julien Isorce
+1, latest tag of electron-chromedriver is beta 4.0
Is this working with https://www.npmjs.com/package/spectron-menu-addon ?
For log: https://bugzilla.gnome.org/show_bug.cgi?id=761700 https://bugs.webkit.org/show_bug.cgi?id=154235
You are right, currently if upstream Chromium is built with use_proprietary_codecs=1 and ffmpeg_branding=Chromium then it fails to play Youtube video that wants to use proprietary codec in priority. Indeed Chromium...
Simply add: media_use_ffmpeg=0 media_use_libvpx=0 media_use_libwebm=0 to the GYP_DEFINES when executing the gyp configuration command. (I need to mention it in our README.md) Btw why FFmpeg is not allowed on Fedora...
Thx for the detailed explanations. Make perfectly sense. I also like the argument about "Bundled libraries are also not allowed in Fedora in most cases" Then for chromium it is...
On Mac, pass the chromium flag `--disable-features=IOSurfaceCapturer` ( from the app just add: `app.commandLine.appendSwitch('disable-features', 'IOSurfaceCapturer') `)
Yes, to have `setContentProtection` working again you need to pass the above flag.
Probably Google meets ignores all chromium flags. What I meant has to be set for an electron based application on which you have control on the build, so calling `app.commandLine.appendSwitch('disable-features',...
Oh I see you would need to pass `--disable-features=IOSurfaceCapturer` to Google Chrome but that's not possible. I thought you were capturing the screen with your app (electron's desktopCapturer)