Anton Georgiev
377dc27a8d
Merge branch 'v2.2.x-release' of github.com:bigbluebutton/bigbluebutton into 09-16-merge
2020-09-17 14:37:28 +00:00
Anton Georgiev
8cc8474655
Merge branch 'v2.2.x-release' of github.com:bigbluebutton/bigbluebutton into 08-26-merge
2020-08-27 19:09:07 +00:00
Anton Georgiev
3003897bfe
Merge pull request #10336 from prlanzarin/upstream-2.2-vpeg-pagination
...
video-provider: add missing PropType, remove render socketOpen check
2020-08-27 09:17:04 -04:00
prlanzarin
395de41f60
video-provider: add missing proptype
...
Also trim down prop assignment in render
2020-08-27 02:20:09 +00:00
prlanzarin
191654814a
video-provider: remove socket open state condition for rendering video-list
...
That check doesnt make sense anymore. Removing it makes the video list load faster and webcam sharing seem more responsive
2020-08-27 02:19:55 +00:00
Anton Georgiev
b8959be312
Merge pull request #10304 from pedrobmarin/individual-video-record-control
...
Add individual video record control
2020-08-24 16:58:16 -04:00
prlanzarin
e7323ee6a5
video-provider: fix dynamic profile accounting when using pagination
2020-08-24 18:30:24 +00:00
Pedro Beschorner Marin
95bc7cd59e
Add individual video record control
...
This adds bbb_record_video userdata that, when is set to false, signals
bbb-webrtc-sfu to avoid generating the stream recording assets for a
particular user.
By default, bbb_record_video is true.
2020-08-21 19:10:25 -03:00
prlanzarin
a98c476239
video-provider: remove page change lock in favor of a debounced approach
2020-08-20 15:43:02 +00:00
prlanzarin
28e826118a
video-provider: first version of video pagination
2020-08-18 17:00:47 +00:00
Anton Georgiev
5be5aed1d9
Merge branch 'v2.2.x-release' of github.com:bigbluebutton/bigbluebutton into merge-2020-08-12
2020-08-12 17:12:58 +00:00
prlanzarin
642de5076a
video-provider: first, simplified version of dynamic camera profile control
2020-08-05 16:55:41 +00:00
prlanzarin
dac3259c48
Merge remote-tracking branch 'pedrobmarin/bbb-multiple-webcams' into upstream-2.2-vpeg-base
2020-08-05 14:20:58 +00:00
Vitor Mateus
e2db60e662
WIP Resizable works fine
2020-07-20 16:11:09 -03:00
Anton Georgiev
7535e6fa59
Revert "Create layout context and add a layout manager"
2020-07-15 12:44:59 -04:00
prlanzarin
0f8b27d2d8
video-provider: make camera timeouts configurable
...
Also add missing settings.yml val for wsConnectionTimeout
2020-07-09 17:53:24 +00:00
prlanzarin
72a67bdd63
video-provider: make reconn websocket connectionTimeout configurable
...
Keep the default value (current) in settings.yml
2020-07-09 17:50:04 +00:00
Vitor Mateus De Almeida
880963e0e7
Merge remote-tracking branch 'upstream/develop' into layout
2020-07-06 13:36:38 -03:00
Anton Georgiev
c9e996de21
Merge branch 'v2.2.x-release' of github.com:bigbluebutton/bigbluebutton into merge-2.2-into-develop
2020-05-25 17:32:24 +00:00
prlanzarin
2cba85e866
html5: refactor STUN/TURN fetch, add fallback STUN, fix deadlock in audio join
...
Refactored STUN/TURN fetch to be done only once, when successful, per session and cache it in mem to avoid too many reqs. Current way is a bit dumb, this should increase reliability a bit more. The caching is configurable so folks who want to use very short lived TURN credentials can disable it
Add a fallback STUN config option to be used when the default STUN/TURN fetch fails
Clean the safari/no candidate generation pre flight check from 3rd party STUNs
Fix deadlock in audio join when STUN/TURN fetch failed
2020-05-21 04:35:17 +00:00
Vitor Mateus
00259ab371
WIP Resizable works fine
2020-04-23 11:07:44 -03:00
prlanzarin
bf69926576
Fix race condition in video-provider that may cause peers to fail
...
The peer object was being fetched only once in the ICE candidate callback, and it would fetch a placeholder empty object (sometimes) which would be kept in the callback closure till the end of the peer lifecycle. With that, the didSDPAnswered state variable which released the outbound ICE queue wouldnt be correctly read and the queue would never be flushed
2020-01-31 19:49:12 +00:00
prlanzarin
10b4a60a57
Fix race condition in video-provider that may cause peers to fail
...
The peer object was being fetched only once in the ICE candidate callback, and it would fetch a placeholder empty object (sometimes) which would be kept in the callback closure till the end of the peer lifecycle. With that, the didSDPAnswered state variable which released the outbound ICE queue wouldnt be correctly read and the queue would never be flushed
2020-01-31 19:32:57 +00:00
Pedro Beschorner Marin
801ed30a8e
Missing after rebase
2019-12-10 13:02:18 +00:00
Pedro Beschorner Marin
5c71e2d0bb
Included new getStats monitor for audio and video
2019-12-10 09:07:06 -03:00
Pedro Beschorner Marin
a434f61052
Reverting file mode changes
2019-12-10 09:05:04 -03:00
Pedro Beschorner Marin
f5d7be7f00
Making the interface functional for the multiple webcams. This must change after thinking on a design
2019-12-10 09:05:03 -03:00
Pedro Beschorner Marin
315fa755f0
Removed unused video visibility monitor
2019-12-10 09:02:17 -03:00
Pedro Beschorner Marin
3b591a086b
Unified video providers
2019-12-10 09:02:16 -03:00
Pedro Beschorner Marin
debd8f714a
Removed unused session vars logic
2019-12-10 08:21:21 -03:00
prlanzarin
19bf430760
Add userId and userName to the SFU start calls where they were missing
2019-11-28 18:46:23 +00:00
prlanzarin
52d69156ca
Fix viewer camera reconnection timers
...
Also try to reconnect when ICE fails, a server-side error comes through or the WebRTC stack throws a tantrum, not only when the first connection fails.
2019-11-28 18:03:14 +00:00
prlanzarin
d3fa2f6508
Add an outbound ice queue to video-provider peers
...
Only send candidates after the SDP exchange was locked due stop-start glare
2019-11-28 18:01:32 +00:00
prlanzarin
b52214f0b5
Make some imports use absolute paths
...
Some more linting as well
2019-11-14 19:07:35 +00:00
prlanzarin
215f79f383
Account for mDNS candidates on gUM fallback for recvonly peers
...
Also added some client logging for those cases
Moved video-provider gUM fallback detection to be used only on recvonly streams
2019-11-14 16:35:56 +00:00
Chad Pilkey
3dd4761889
Merge pull request #8157 from capilkey/viewer-webcam-lock-unshare
...
Viewer webcam lock unshare
2019-09-27 18:20:26 -04:00
Tainan Felipe
b0f2e16f86
Add propTypes and redo variable types
2019-09-27 15:01:11 -03:00
Chad Pilkey
6c0358ae90
bitrate only webcam profiles and error handling
2019-09-26 18:28:37 +00:00
Tainan Felipe
966debb341
Fix viewer webcam not unsharing when lock setting is enable
2019-09-16 11:15:18 -03:00
Vitor Mateus
ffea873845
Fix Screenshare alignment and remove improper drag cursor #7869 #7785
2019-08-27 16:38:00 -03:00
Chad Pilkey
6e76dd584b
improve user fetch and sort, and webcam fetch
2019-08-09 15:39:55 -07:00
Vitor Mateus
e8f15b97b6
Fix fullscreen edge cases
2019-07-26 13:48:51 -03:00
Vitor Mateus
5b21c500dd
Merge remote-tracking branch 'upstream/master' into issue-7022-2
2019-07-23 19:37:15 -03:00
Vitor Mateus
db1825a15c
Code cleanups
2019-07-23 19:24:31 -03:00
Vitor Mateus
120764ee33
Adjustments to fullscreen toggle #7022 #7067
2019-07-23 16:56:39 -03:00
Anton Georgiev
e84d25a435
use correct property in log for video-provider
2019-07-23 15:12:54 +00:00
prlanzarin
ca474e95bd
Refactor video-provider component logs
2019-07-18 20:44:21 +00:00
Anton Georgiev
901987282a
Merge pull request #7756 from vitormateusalmeida/webcams-draggable-refactor
...
Webcam draggable refactoring
2019-07-16 09:53:39 -04:00
Vitor Mateus
68ec6411aa
Webcam draggable refactoring
2019-07-09 20:11:48 -03:00
Anton Georgiev
b71bd48490
remove redundant audio log
2019-07-02 20:11:48 +00:00