David Jsa
David Jsa
+1. This can be resolved by replacing [these lines](https://github.com/bnoguchi/everyauth/blob/master/lib/modules/oauth2.js#L106-121) in oauth2.js: ``` javascript if ('function' === typeof param) { // e.g., for facebook module, param could be // function ()...
I issued a pull request (#380) sorry I'm a bit new so I don't know if there's a way to connect it to this thread!
I had trouble getting this patch to work; verifyAssertion in verifyAttributes (line 37) is failing with "cannot call method verifyAssertion of undefined" I think the relyingParty is not transferring over...
Although now that I think of it, if it could detect hostname automatically that would probably be ideal.
Unfortunately AFAIK Heroku only allows one port, meaning this project will only support one camera and nothing else. You could try running two heroku apps, one for the browser and...
This might be due to the encoding requirements of JSMPEG. I think I've seen something similar when the video isn't encoded correctly. See here: https://github.com/phoboslab/jsmpeg#encoding-videoaudio-for-jsmpeg Are you using the default...
Currently with the project as is, you'd need to open 9 separate ports with 9 separate servers for 9 separate streams. This isn't optimal and is getting pretty heavily requested,...
Currently there isn't one; it'd have to come straight from ffmpeg and we'd have to parse the output. I don't have bandwidth to figure it out but if there's a...
@kingyazh I might add an option to do something like: ```{ ffmpegOptionsOverride: [ whatever you want ] } ``` and just drop it straight in. Thoughts?
Looks like [JSMPEG added audio support](https://github.com/phoboslab/jsmpeg#encoding-videoaudio-for-jsmpeg) a while ago, so this should actually be pretty easy to accomplish. I think we just need to update the ffmpeg params to make...