I make live streaming video using webrtc.
You can see control bar in it because of video tag.
I want to remove video control tag in page. If you know about this, please help em.
Thanks to watching...
I make live streaming video using webrtc.
You can see control bar in it because of video tag.
I want to remove video control tag in page. If you know about this, please help em.
Thanks to watching...
For removing the controls, add controls=0
at the end of your url
<iframe width="840" id="dice-frame" height="478" src="15.164.215.4:5080/WebRTCAppEE/…?controls=0" frameborder="1" allowfullscreen=""></iframe>
Another approach (if you want to hide everything on hover) is to add pointer-events:none
on hovering the iframe
hi just check your video code if there is any
controls
word like that
<video src="../videos/test.mp4" autoplay controls></video>
then remove it to be like that
<video src="../videos/test.mp4" autoplay ></video>