Unknown protocol "rtmp" in URI "rtmp://mysite.com/live/test"! #2504
ngivoni
started this conversation in
User Support
Replies: 1 comment 1 reply
-
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am attempting to create a playlist with the an RTMP input and have it output as an RTMP (pass through RTMP):
Playlist:
rtmp://mysite.com/live/test
LiquidSoap script:
source = playlist("playlist.pls")
enc = %ffmpeg(
format="flv",
%audio.copy,
%video.copy)
url = "rtmp://127.0.0.1:1935/live/test"
output.url(url=url, enc, source,fallible=true)
When I do so I'm receiving the following error:
Unknown protocol "rtmp" in URI "rtmp://mysite.com/live/test"!
Is LiquidSoap missing some library?
Beta Was this translation helpful? Give feedback.
All reactions