Karel Juricka
Karel Juricka
I just figured it out: ``` import { formatters } from 'jsondiffpatch'; export class CeosPropertyDiffFormatter extends (formatters as any).base.default { ... } ```
Same problem here...
Another "quickfix" is only to add: `onsubmit="return false"` to all `` elements. Example: ` ` It doesn't solve error in console but it prevent page to be reloaded.
@bigtimebuddy thanks for tips I don't like Ticker solution due to need to start a Ticker timer. So I tried to make it work with prepare solution, but with no...
Our app using shaka player embedded was successfully approved by apple and moved to app store. So I confirm with @TheModMaker that there is no release problem.
I just append more description about problem from logs. This errors show when app is moved background: ``` E1223 09:24:17.956127 1871097856 apple_decoder.cc:629] Error decoding frames: -12903 Got Shaka Player Error:...
After week I decided to do some more info, maybe it could help: I can reproduce error on shaka demo content - I added manifest to issue. I also updated...
I finally found way how to reproduce error: When I call load() method in situation, that video from previous load() has been loaded and .play() was called but audio still...
I know it's overhead, but it was the simplest solution. I tried to think your advice but: ``` shaka::ShakaRect image_bounds = {0, 0, CGImageGetWidth(image), CGImageGetHeight(image)}; ``` returns wrong image size...
Sorry, you're right. Image dimensions are really same, I was wrong. I create new commit, where I reverse all previous patches and has working solution as you advice. Two notes:...