Posted on Leave a comment

当 URL 包含“definst”时,使用 FFMPEG 流式传输可能不起作用

某些 RTMP 流 URL 可能专为使用 FMLE(Flash 媒体实时编码器)进行流式传输而设计,可能需要进行调整才能与 FFMPEG 一起使用
这是 vMix 中的默认流式传输方法。
例如以下流信息:
 
网址: rtmp://example.com/example/_definst_/doPublish=ABCDEFG
 
应改为以下:
 
网址: rtmp://example.com/example?doPublish=ABCDEFG
 
另一种类型的 URL 可能如下所示:
 
网址: rtmp://example.com/origin/_definst_/stream/stream?username=abc&password=def
 
将其更改为:
 
网址: rtmp://example.com/origin/stream/stream?username=abc&password=def
 
(删除 URL 的 _definst_ 部分)
发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注