RTSPtoHLS icon indicating copy to clipboard operation
RTSPtoHLS copied to clipboard

More stream

Open pallasattila opened this issue 2 years ago • 1 comments

I'd like add more stream in the config file, but get error.

my conf:

{ "server": { "http_port": ":8083" }, "streams": { "stream1": { "url": "rtsp://stream1" } "stream2": { "url": "rtsp://stream2" } } }

Error message: invalid character '"' after object key:value pair

what's the problem with that?

pallasattila avatar Nov 16 '22 22:11 pallasattila

Base on your code you are missing a , after the first item called stream1 { "server": { "http_port": ":8083" }, "streams": { "stream1": { "url": "rtsp://stream1" }, "stream2": { "url": "rtsp://stream2" } } }

karlkiesinger avatar Jan 05 '23 15:01 karlkiesinger