Questions tagged [mediastreamtrack]
21 questions
0
votes
0 answers
react native IOS can not access microphone when lockscreen + app killed
I am building Calling app, includes:
1.PushKit VOIP to show incomming call
2.React-native-callkeep to handle answer/end call
3. React-native-webrtc to make the call
The problem is:
1.With app state active/background. The call working normally
2.Only…

famfamfam
- 396
- 3
- 8
- 31
0
votes
1 answer
Extra property of CanvasCaptureMediaStreamTrack
I have a canvas that I want to have it's stream and send it to another user by webrtc. I can get the stream of it and show that in video tag.
var canvas = document.createElement("CANVAS");
var stream = canvas.captureStream(25);
var track =…

Ali Esmailpor
- 1,209
- 3
- 11
- 22
0
votes
0 answers
Can I capture and edit audio stream locally before it hits another app?
Good afternoon! In this implementation I'm using electron and javascript with webRTC.
To elaborate a bit on the question, I understand what I'm doing up to the point of obtaining a stream from the StreamHandler and calling…

angryduck
- 1
- 1
0
votes
1 answer
proper teardown of a WebRTC RTCPeerConnection
I tried to do a simple WebRTC p2p video chat browser app. I setup a signal server and have two peers doing all the SDP and ICE handshakes. Some of my code snippet:
pc = new RTCPeerConnection(config);
pc.onicecandidate = (event) => {
…

Joe Lin
- 450
- 7
- 20
0
votes
0 answers
How to remove camera icon from the browser address bar even after closing the video streams
I have tried using this code to remove icon of camera and microphone that appeared in browser even after closing the stream
var videoTrack = this.localStream.getVideoTracks()[0]
if(videoTrack){
this.localStream.removeTrack(videoTrack)
…

Mahesh Joshi
- 608
- 8
- 9
0
votes
2 answers
HTML5 video and MediaStreamTrack stream via WebRTC resolution change issue
I'm using HTML5 video tag to display incoming live video stream via WebRTC protocol. Basically when remote MediaStreamTrack is received by a client it is assigned to HTMLMediaElement.srcObject. The live stream appears in video and all is fine up to…

Jernej Jerin
- 3,179
- 9
- 37
- 53