pabloFuente
5826032020
openvidu-browser: restrict updated values of VB to background image URL
2022-04-21 12:36:25 +02:00
pabloFuente
a30f4dcd85
openvidu-browser: chroma virtual background
2022-04-11 23:35:54 +02:00
pabloFuente
8457592c0b
openvidu-browser: modify isPro with isAtLeastPro
2022-04-06 20:02:22 +02:00
pabloFuente
41f53b9895
Support Virtual Background image
2022-04-06 19:54:41 +02:00
pabloFuente
e9cdb7b131
openvidu-browser: input options for Virtual Background
2022-04-06 13:39:54 +02:00
pabloFuente
841db74c75
openvidu-browser: MVC Virtual Background
2022-04-06 13:10:18 +02:00
Juan Navarro
4d004e4a9e
Review all href usages of target="_blank"
...
Do not force the user's browser to open new tabs when navigating within
the documentation pages. We discussed about this and agreed that doing
so is user hostile and goes away from how HTTP links have been working
for 30 years (i.e. leave users decide if THEY want a new tab or not, by
how they open the links).
Used these regexes:
From: target="blank"
To: target="_blank"
From: (\]\((?!http)[^)]+\))\{:target="_blank"\}
To: $1
From: (\]\(https?://docs.openvidu.io[^)]+\))\{:target="_blank"\}
To: $1
From: href="((?!http)\S+)" target="_blank"
To: href="$1"
From: href="(https?://docs.openvidu.io\S+)" target="_blank"
To: href="$1"
2022-02-28 13:51:44 +01:00
cruizba
7cc5e0c7d0
Merge branch 'master' of https://github.com/OpenVidu/openvidu into feature/custom-ice-servers
2022-02-16 18:12:03 +01:00
Juan Navarro
97656aa9d6
openvidu-browser: Use the RTCIceCandidate constructor on new candidates
...
The ice candidate event provides an "RTCIceCandidateInit" object, which
should be passed to the RTCIceCandidate() constructor, to build a proper
instance of RTCIceCandidate.
2022-02-15 16:32:53 +01:00
Juan Navarro
e426d223af
openvidu-browser: minor changes
2022-02-15 16:32:53 +01:00
Juan Navarro
2a5174a7b5
openvidu-browser: Catch errors on WebRTC calls
2022-02-15 16:32:53 +01:00
Juan Navarro
85f0e3ecd5
openvidu-browser: Use lowercase RID for simulcast layers
...
Firefox converts everything to lowercase and then the RIDs wouldn't
match in the internal mediasoup lookup! So better use all lowercase for
these identifiers.
2022-02-15 16:32:53 +01:00
Juan Navarro
b5e645f13d
openvidu-browser: Use Track.contentHint to configure WebRTC Sender
2022-02-15 16:32:53 +01:00
Juan Navarro
f10649b40c
openvidu-browser: Reduce 2 nesting levels in WebRtcPeer.createOffer
2022-02-15 16:32:53 +01:00
cruizba
40ed2c5efc
openvidu-browser: Add cutomIceServers from 'joinRoom' rpc message
2022-02-11 22:38:51 +01:00
csantosm
55246abc44
openvidu-browser: Enabled warning logs in production mode
2022-02-02 12:31:27 +01:00
Juan Navarro
a11210a7ee
openvidu-browser: adaptive simulcast config depending on source video
...
Do not blindly enable simulcast; instead, analyze the properties of the
source track in order to decide upon a good configuration:
* Take into account Google Chrome decision table which dictates how many
simulcast layers will be sent at most:
https://source.chromium.org/chromium/chromium/src/+/main:third_party/webrtc/media/engine/simulcast.cc;l=90-114;drc=d3251968d1b3dbe7e1353a3f15970b47173103e9
* Limit bitrate and resolution on webcam videos, or framerate on
screenshare videos.
2022-01-28 14:03:26 +01:00
pabloFuente
4fe0a4fda2
openvidu-browser: add TypeOfVideo
2022-01-27 14:42:01 +01:00
pabloFuente
3aae9a0ab1
openvidu-browser: revert wrong imports
2022-01-26 17:59:15 +01:00
pabloFuente
0010ac1157
openvidu-browser: install inherits and events packages
2022-01-26 17:38:23 +01:00
pabloFuente
ad8e8938d4
openvidu-browser: ensure Promise return on every resolve and reject
2022-01-26 12:18:05 +01:00
pabloFuente
1965a6b44f
Update doc API with new Typedoc camelcase syntax in links
2022-01-14 13:31:26 +01:00
pabloFuente
c30091ee06
openvidu-browser: new event documentation
2022-01-13 13:54:34 +01:00
pabloFuente
9f20cc2485
openvidu-browser: update Copyright date
2022-01-13 11:18:47 +01:00
pabloFuente
695c13769c
openvidu-browser: update TS version. Fix "signal:X" event typings
2022-01-12 01:48:40 +01:00
pabloFuente
82bd984bbe
openvidu-browser: add event maps to achieve typings for all Events
2022-01-10 12:46:39 +01:00
Juan Navarro
8e5f5d4cf4
openvidu-server, browser: Add Simulcast Publisher config ( #680 )
...
Simulcast is a per-Publisher configuration that allows to enable
Simulcast senders on the client's PeerConnection of each sender.
Simulcast is a WebRTC feature that sends multiple simultaneous streams
with different video qualities, in order to let the media server decide
which quality is best for which Subscriber on the receiving side.
Enabled by default.
2022-01-05 15:12:51 +01:00
pabloFuente
e6b4f23fcf
openvidu-browser: reconnection support for OpenVidu Enterprise
2021-12-23 15:28:23 +01:00
pabloFuente
18c7e5d524
openvidu-browser: close WebSocket with code and reason
2021-12-23 11:18:42 +01:00
pabloFuente
c8597b450e
openvidu-browser: remove unused method
2021-12-23 11:13:09 +01:00
Juan Navarro
aba3311076
openvidu-browser: minor comment to match same in android & kurento
2021-11-05 15:52:47 +01:00
pabloFuente
4e6e37fe39
openvidu-browser: improved RecordingEvent docs
2021-10-15 10:56:45 +02:00
gtunon
cf2cc34525
coturnPort as a number
2021-10-07 07:28:34 +02:00
gtunon
57faf14b21
Coturn port conf
2021-10-01 09:09:04 +02:00
pabloFuente
2e5f605225
/latest to /stable
2021-09-29 11:44:18 +02:00
pabloFuente
8eae2e0eab
openvidu-browser: OpenVidu.life logic
2021-09-10 14:41:30 +02:00
csantosm
8ce647c35b
openvidu-browser: Handled promise rejection on getCommonStats
2021-09-01 11:36:20 +02:00
csantosm
3d46a2c473
openvidu-browser: Replaced error to warning log
2021-08-03 16:02:34 +02:00
pabloFuente
6ac6adbeea
openvidu-browser: support other browsers in iOS
2021-07-13 11:49:05 +02:00
pabloFuente
0d739982a8
openvidu-browser: provide mediaServer as a WebRtcPeerConfiguration property
2021-07-08 12:39:08 +02:00
pabloFuente
e1b6fb6179
openvidu-browser: fix subscription process when transcievers API not available
2021-07-07 12:54:23 +02:00
Juan Navarro
e66c5d1070
openvidu-browser: simulcast default 3 layers and 4:2:1 scaling
...
Leaves maxBitrate undefined so the browser chooses which are the best
values.
2021-07-02 15:06:00 +02:00
Juan Navarro
cf613aedfc
openvidu-browser: simulcast on Firefox
2021-06-30 19:24:23 +02:00
pabloFuente
00d64ded9b
openvidu-browser: onForciblyReconnectSubscriber
2021-06-30 15:33:05 +02:00
pabloFuente
ffcb56cc0d
openvidu-browser: simulcast configuration
2021-06-28 11:37:00 +02:00
cruizba
322ac2e843
openvidu-browser: Better naming for openvidu browser logs 'debug_app' option
2021-06-24 14:27:47 +02:00
cruizba
ea56c09199
openvidu-browser: Remove unnecesary console.log in OpenViduLogger.ts
2021-06-23 22:03:57 +02:00
cruizba
42c833faf4
openvidu-browser: Add option 'debugApp' to send logs from app and from openvidu-browser
2021-06-23 21:37:26 +02:00
pabloFuente
1b22fd5c3a
openvidu-browser: typed Session event handlers
2021-06-23 13:02:05 +02:00
Carlos Santos
66b1ce790d
openvidu-browser: Fixed bug when addTransceiver not available ( #634 )
...
After generateOffer() refactoring, the deprecated legacy method wasn't adding the meadstream tracks on peerConnection object as it used to do.
2021-06-22 13:31:25 +02:00