webm-duration-fix icon indicating copy to clipboard operation
webm-duration-fix copied to clipboard

based on ts-ebml and support large file,optimize memory usage during repair

Results 7 webm-duration-fix issues
Sort by recently updated
recently updated
newest added

Hi, First of all, thank you for providing such a handy library. When using rollup to create a bundle, it's throwing a warning relating to circular dependencies, which I believe...

Hi i'm using this module in electron and everything works fine after until i've built the app with electron-builder Then I get this error: RangeError: The value of "byteLength" is...

Hi. I am a new JS programmer. I am interested to apply this at client side. I have tried this but cannot manage to get this to work. In my...

I suppose it should be MIT, given that it's based on ts-ebml but I'm not sure. Thanks!

调试代码发现本库计算webm的时长,是通过EBMLReader里面的duration()方法。 计算的代码如下: ``` const duration_nanosec = ((this.lastClusterTimecode + lastTimecode) * this.timecodeScale) + defaultDuration - codecDelay; const duration = duration_nanosec / this.timecodeScale; ``` 其中`defaultDuration`,是通过这种方式计算得到的 ``` defaultDuration = (this.last2SimpleBlockVideoTrackTimecode[1] - this.last2SimpleBlockVideoTrackTimecode[0]) *...

On npm.js, there is a new library [`webm-duration-fix-buffer`](https://www.npmjs.com/package/webm-duration-fix-buffer?activeTab=readme). It links to this repo, but the code base is slightly different. The differences I've found are: 1. `webm-duration-fix-buffer` does not have...