Cant play SRT url link in VLC
gasguti opened this issue · 2 comments
Describe the bug
Im using SRT with OBS, the problem is I cant play the SRT URL in VLC, but the other links HTTP-FLV stream, HLS stream, webrtc works fine.
The url is srt://64.176.10.27:10080?streamid=#!::r=live/ncmjed?secret=20628c23090e49ec96d2175081c13447,m=publish
Version
[v5.14.19]
thank you
This is not a bug, you need to input streamid
manually in vlc'
's preference settings.
make sure you installed the latest version of VLC first. My version is 3.0.20.
go to, settings -> show all -> stream output -> access output -> SRT, there is an input with label SRT Stream ID
, you need to input it.
In your case, the url srt://64.176.10.27:10080?streamid=#!::r=live/ncmjed?secret=20628c23090e49ec96d2175081c13447,m=publish
is the publish URL, the stream id you need to input is:
#!::r=live/ncmjed,m=request
. Or in Oryx, it remind you to add latency=20
, which means the streamid is #!::r=live/ncmjed,latency=20,m=request
, it ok without it.
Then in Network URL input, you just need to input the IP and port with scheme, in your case is srt://64.176.10.27:10080
.
TRANS_BY_GPT4