trackedsupport

Results 22 comments of trackedsupport

Did anyone figure out this issue?

The `RecordRTC(mediaStream.clone(), ` fixed my issue but it does feel like a dirty hack. Does anyone know why that can make it work or what distorts it? Also if we...

I ended up making my own solution.

I used https://dexie.org/. Something like this should work. ``` var db = new Dexie("Recordings"); db.version(1).stores({ blobs: "++id" }); recorder = new MediaRecorder(media_stream); recorder.ondataavailable = function(e) { db.blobs.put({ blob_data: e.data })...

> Actually I was still including the MultiStreamMixer.js from your website, I removed this references and now RecordRTC is using the patched( from your commit) internal MultiStreamMixer and it does...

If I just use this so I can update a stream duration a recording (only using a video and audio stream), it uses so much memory that my computer starts...

But even when I did that it still had memory issues. It just grows more slowly. After about 5 minutes it was using 5GB of memory and still rising. Eventually,...

I can take a look to see if I can figure it out. Do you know if this method with the caprureStream has any degradation in audio or video quality?

Have you seen this before? https://github.com/muaz-khan/MultiStreamsMixer Not sure how the implementation is different.

oh dang, I thought the stream mixer would allow me to switch streams on the mixer while keeping the same stream with the recorder. All this stuff is new to...