Error installing and using in our App
See original GitHub issueHi,
When I try the gif format, I get an error:
- After cature.save(), I get below error:
Uncaught Error: Width and height must be set prior to rendering
When trying webWriter, I get the below errors/issues
-
After capture.start(), I use a setTimeout for 3 seconds before capture.stop() and capture.save(). The setTimeout never gets fired because of the internal clearTimeout in capture.start()
-
Even when I try to stop recording using a button onClick, I get following error when I capture.save()
WebMWriter.js:230 Uncaught TypeError: Cannot read property 'dataOffset' of undefined
at fileOffsetToSegmentRelative (WebMWriter.js:230)
at writeCues (WebMWriter.js:500)
at Object.complete (WebMWriter.js:642)
at CCWebMEncoder.webpackJsonp.2150.CCWebMEncoder.save (CCapture.js:2
This is caused by the below lines
function fileOffsetToSegmentRelative(fileOffset) {
return fileOffset - ebmlSegment.dataOffset;
}
PS: I am using webm-writer NPM package
import WebMWriter from "webm-writer";
Issue Analytics
- State:
- Created 5 years ago
- Reactions:5
- Comments:11
Top Results From Across the Web
How to Fix App Not Installed Error on Android Phone - YouTube
How to Fix the App Not Installed Error on Android Phones. Android App not installed error is one of the Android problems.
Read more >How to Fix Android App Not Installed Error
Go to Settings > Apps > Reset App Preferences/Reset Application Permissions. After this, third-party software can be installed on your device.
Read more >Fix problems downloading apps from the Play Store
Try the steps below if: Your downloads and app updates get stuck and won't finish. You can't download or install apps or games...
Read more >Unable to Install Apps or Software on Windows? Here's What ...
1. Reboot Your Computer · 2. Check App Installer Settings in Windows · 3. Free Up Disk Space on Your PC · 4....
Read more >Resolve app installation errors in Google Play Store
Open the Settings menu on your device. · Go to Apps or Application Manager. · Scroll to All apps and then scroll down...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Actually, I just decided to write a canvas recorder of my own using MediaSource/MediaRecorder. Found some open source code and made some slight modifications.
This is my CanvasRecorder.js file: https://pastebin.com/raw/U7kwaV5S
…which produced this kind of thing in conjunction with some canvas drawing stuff: https://presentio.us/view/18b3ba
Unfortunately MediaSource/MediaRecorder support for the iPad is non-existent, so I’m back to the drawing board looking at ffmpegserver.js
https://developer.mozilla.org/en-US/docs/Web/API/MediaRecorder#Browser_compatibility https://developer.mozilla.org/en-US/docs/Web/API/MediaSource#Browser_compatibility
I had the same problem. After two hours a realized that i never used
capture.start()
… yey me!