-
-
Notifications
You must be signed in to change notification settings - Fork 317
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enable voice for chrome when recording both audio/video #4
Comments
hi @durimrexhaj, can you please explain in detail why and what isn't working on what version/operating system? |
hiw @thijstriemstra I'm using windows and chrome Version 43.0.2357.130. Recorder doesn't get the voice. When i play video i can't here voice in chrome. |
@durimrexhaj I haven't tested it on windows chrome, so I'll give it a try and see what's going on. |
hi @thijstriemstra I have tested RecordRTC script and it worked well for me and i saw the videojs-record uses RecordRTC but I don't know why is not working with this plugin. Thanks a lot |
@durimrexhaj, what example did you use? Or what code are you using? |
I noticed the same issue on Here's the The
|
I've also tested the examples and noticed the same on windows, linux and osx Chrome browsers. As noted in the README:
This is a limitation of Chrome because it hasn't implemented MediaRecorder yet, and Firefox has. What RecordRTC.js does is record, stop stream, make audio data blob available, then make video data blob available. In Firefox it makes a single audio/video blob available after recording. Now, I noticed that this line https://github.com/collab-project/videojs-record/blob/master/src/js/videojs.record.js#L441 causes only video-data to be made available, the audio blob is ignored. In a perfect world Chrome would stich the audio and video together in a webm blob, just like Firefox can. So now, I guess it would be possible to trigger 2 'finishRecord' events, one for audio and one for video, but this would only be necessary in Chrome. And then there is also the issue of being able to playback of audio and video at the same time in Chrome. Any suggestions? |
…ideo in the Chrome browser (#4)
I've commited a fix for Chrome that makes both audio and video blobs available when the But during playback it will still only display the video stream and ignore the audio stream (because they're separate objects). I guess syncing the playback of the audio using WebAudio should be possible in that case. |
I decided to add an extra Closing this ticket, please open a new one if there's still an issue. |
This is great, thank you 👍 |
What is the format audio and videos are recorded with AUDIO_VIDEO flag? Is that Webm or WAV?? |
Try it, document it and open a pull request please. |
In chrome voice doesnt work. How can i fix it
The text was updated successfully, but these errors were encountered: