Wassem Keddah

Results 25 comments of Wassem Keddah

Changing it manually to `Cordova/CDVPlugin.h` works for me, seems like a deprecated import is used Edit: you can comment out the import as well and it should work too

@n00mkrad you can detect the hdr from ffprob track info, search for `bt2020:colormatrix=bt2020nc:transfer=smpte2084` Using ffmpeg you can convert the exported file again to have hdr support but for sure its...

I successfully managed to fix it doing the following 1. go to file node_modules/cordova-plugin-firebasex/src/android/build.gradle and comment out line 10 and from line 20 to 36 ![image](https://user-images.githubusercontent.com/23165327/95336928-ed693880-08b9-11eb-8546-320b6927637d.png) 2. go to android/build.gradle...

After looking at the main cause of this problem I notice that it is related to the Angular/preboot. as a temp fix for this I commented out this line :...

I tested the example app and also has the same behavior, I think there is something wrong with preboot.

My chrome is at latest version and this issue happened also on firefox for me not only chrome. Yes removing `setImmediate` works but also need to remove `builder.preboot(true);` in `server/index.ts`.

i am not using the cli version right now as i tested the express and it works. but maybe this will be fixed when they notice it.

As a temp solution I fixed it by the following: "30fps" ```javascript let frameData: any; videoSink.addEventListener( 'frame', ({ frame: { width, height, data } }) => { const size =...

because the epubjs library is not included in the github project and the example files are loading it from `../dist/epub.js` - look the html header element To make it work...