You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The video quality is blurry (pixelated), but it plays normally in VLC. How can I solve this issue?
vue code:
this.webRtcServer = new WebRtcStreamer('video', location.protocol + '//127.0.0.1:8000')
var options = "rtptransport=tcp&timeout=60&width=1920&height=1080&width=320&height=240&bitrate=1200";
this.webRtcServer.connect('rtsp://rtspstream:[email protected]/movie', null, options, null)
The text was updated successfully, but these errors were encountered:
The options seems strange "rtptransport=tcp&timeout=60&width=1920&height=1080&width=320&height=240&bitrate=1200"
There is twice width & height, probably last are used... and you set bitrate to a low value, I guess you can try to remove bitrate option.
The video quality is blurry (pixelated), but it plays normally in VLC. How can I solve this issue?
vue code:
this.webRtcServer = new WebRtcStreamer('video', location.protocol + '//127.0.0.1:8000')
var options = "rtptransport=tcp&timeout=60&width=1920&height=1080&width=320&height=240&bitrate=1200";
this.webRtcServer.connect('rtsp://rtspstream:[email protected]/movie', null, options, null)
The text was updated successfully, but these errors were encountered: