StefansArya

Results 48 comments of StefansArya

Hmm, I'm not sure chrome can recording with `ogg` format. But, if it's available maybe this can work ```js // Event listener io.on('connection', function(socket){ var decoder = null; /* Presenter...

Yeah, maybe initializing the [polyfill](https://github.com/kbumsik/opus-media-recorder#html-script-tag) before you starting the recording could work. The polyfill seems can solve many problem, but I haven't try it :sweat_smile:

@ashkmn I just updated [the example](https://github.com/ScarletsFiction/SFMediaStream/tree/master/example/browser-to-server-speaker), but sadly the [opus decoder](https://github.com/discordjs/opus) dependency on NodeJS was not able to decode the stream. And currently the example is default to **write to...

Instead of using default browser's media recorder, I just using @tinamore is suggestion and now it's working with `audio/wav` mimeType.

@katarpilar Hi, thanks for notify me. It seems the example wasn't work when switch into "Stream to speaker" after the page was loaded. I have fixed it, could you try...

@katarpilar you're free to open new issue as long it isn't a duplicate with other open issue. But it's still related with this issue so it's OK to continue our...

Hi, > 0. I cannot find the nodejs server part in source code. There's some example to work with Node.js in the `/example` folder, I haven't make it as a...

Hi sorry for being away because I have some other project to be done. > (you should however change presenterID: to socketID : it is confusing) Well, both presenter and...

Hi @ahwelgemoed, Does the the browser give any error message from the DevTools's console? It should work on http and localhost, because on the [group-call example](https://github.com/ScarletsFiction/SFMediaStream/tree/v1/example/group-call) I setup it up...

Hi, looks like it was initialized before any user interaction in the web page. Some of mobile browser may need user interaction before being able to start/listening the audio. But...