我尝试使用liquidsoap和gstream将我的频道重定向到另一个频道。我想这样做是因为回退,如果第一个源没有使用,我会使用另一个源。我得到了:
set("frame.video.width", 1920)
set("frame.video.height", 1080)
#set("frame.video.samplerate", 30)
set("gstreamer.add_borders", false)
set("clock.allow_streaming_errors",false)
s = single("rtmp://link_to_rtmp_stream/test")
s = fallback([s, blank()])
output.gstreamer.audio_video(
video_pipeline=
"videoconvert ! x264enc bitrate=4000 ! video/x-h264,profile=baseline ! queue ! mux.",
audio_pipeline=
"audioconvert ! voaacenc bitrate=128000 ! queue ! mux.",
pipeline=
"flvmux name=mux ! rtmpsink location=\"rtmp://wherewewhantstream.com live=1\"",
s)我有一个问题..识别第一个流..脚本不想识别它,因为它认为它就是文件。如何识别rtmp流并解码?
发布于 2016-06-10 06:53:35
试试这个:
set("frame.video.width", 1920)
set("frame.video.height", 1080)
#set("frame.video.samplerate", 30)
set("gstreamer.add_borders", false)
set("clock.allow_streaming_errors",false)
def gstreamer.rtmp(~id="",uri) =
pipeline = "rtmpsrc location=#{uri} ! tee name=t"
audio_pipeline = "t. ! queue"
video_pipeline = "t. ! queue"
input.gstreamer.audio_video(id=id, pipeline=pipeline, audio_pipeline=audio_pipeline, video_pipeline=video_pipeline)
end
s = gstreamer.rtmp("rtmp://link_to_rtmp_stream/test")
s = fallback([s, blank()])
output.gstreamer.audio_video(
video_pipeline=
"videoconvert ! x264enc bitrate=4000 ! video/x-h264,profile=baseline ! queue ! mux.",
audio_pipeline=
"audioconvert ! voaacenc bitrate=128000 ! queue ! mux.",
pipeline=
"flvmux name=mux ! rtmpsink location=\"rtmp://wherewewhantstream.com live=1\"",
s)https://stackoverflow.com/questions/36211811
复制相似问题