All Questions
Tagged with webrtc html5-video
177
questions
2
votes
0
answers
32
views
webrtc gives black screen only if you refresh the browser
I have a webrtc app used in this way:
Client(browser) initialize a call to a android webrtc app.
The android app gives video stream to the browser(one way trip).
Everything works just fine, except ...
0
votes
0
answers
27
views
How to achieve vertical WebRTC streaming on a mobile device
I need a WebRTC streaming in portrait mode.
I've tested with this simple code. In desktop it works, but in mobile device it does not.
I’ve seen other solutions where the video component is rotated 90 ...
0
votes
0
answers
170
views
Autolay video for WebRTC application on iPhone
I'm working on a Webrtc application, and with the iOS mobile browser's limitation, I can't autoplay video with audio without user interaction. When a user clicks "Joins the session" I can ...
2
votes
0
answers
475
views
mediaDevices.getUserMedia returns video rotated to landscape on some devices
I'm using getUserMedia to get a video stream, on some devices it returns video in portrait mode (as i want it to be) but on some video is in landscape.
for example on iPhone XR and Redmi Note 12 video ...
0
votes
1
answer
441
views
Is there a way to capture audio and video from an HTML video tag in Safari?
In chrome and firefox, we can user HTMLMediaElement.captureMediaStream() to capture a stream. But HTMLMediaElement.captureMediaStream() is not supported by Safari.
Source of the video tag is hls data ...
1
vote
1
answer
288
views
HTMLVideoElement fires "resize" on stream resolution change. Is it documented somehow?
At least in WebKit browsers, when the resolution of a video stream changes, the corresponding video element triggers a resize event. Is there any documentation available on this? Or any references or ...
2
votes
0
answers
203
views
Multiple Video Streams over RTCPeerConnection
I am using rtsotowebrtc from DeepEch to stream my IP cameras over WebRTC. My client code is as follows:
var webrtc_con = new RTCPeerConnection({
iceServers: [{
urls: [&...
4
votes
0
answers
809
views
Are older versions of gstreamer's webrtcbin incompatible with updated browsers?
I have been following examples here to use Flask as a signalling server. I can run this successfully if I have the server and both clients running on the same computer (due to getUserMedia requiring ...
3
votes
2
answers
699
views
Why Safari produces giant videos compared to Chrome, when using the MediaDevices.getUserMedia() API?
I was setting up a little experiment to measure the size of the videos captured by the MediaDevices.getUserMedia() API.
When I was running my code in Safari it produces 5-10 times larger videos than ...
0
votes
1
answer
351
views
WebRTC connection does not resume after mobile browser is backgrounded
I have a web application running on Safari on an iPad displaying a live WebRTC video stream. When the user switches away from Safari for a few seconds, and then switches back, the <video> ...
1
vote
0
answers
966
views
How To Take RTSP Stream and push that stream to an HTML5 client?
To keep it simple I'm trying to copy the functionality of this project to use in my own: https://github.com/deepch/RTSPtoWebRTC
Using Go. this program takes an RTSP stream and redirects the raw stream ...
2
votes
1
answer
2k
views
Unable to fully establish ICE connection between two Python aiortc scripts
I'm working on putting together a prototype which streams video from one Python script to another using WebRTC via aiortc.
I'm riffing on the webcam example from the Python aiortc repository (using ...
1
vote
1
answer
664
views
WebRTC & Chrome Vs Safari - How to make it work?
I'm creating a simple web-based video recorder. I got everything working on Chrome and then to my horror, started getting mimeType not supported error on Safari. After debugging, it looks like the ...
0
votes
1
answer
148
views
Requesting Suggestions: Record Video Via Browser - SDKs / APIs etc
I'm developing an application with Laravel backend. On the front-end, I'm required to ada a facility that lets user record their videos (30-40 seconds max), and save them directly to the server (...
2
votes
3
answers
1k
views
How do you initialize a WebRTC call using the transceiver API but only enable audio&video later after signaling completed?
I am trying to first connect two WebRTC peers. Once the connection is established I want to give the users on both sides the option to enable/disable video and audio. This should happen without ...