gpt4 book ai didi

重定向 RTMP 请求

转载 作者:行者123 更新时间:2023-12-02 03:57:14 25 4
gpt4 key购买 nike

是否可以发出对 rtmp 请求的重定向 - 类似于 http 302 重定向?
我不可能修复内容中存在的所有 rtmp url,因此我想放置某种基本重定向器来将请求发送到我的新服务器。

谢谢!

最佳答案

我还没有完全理解你的意思,但我想我可以帮助你一点,并继续通过评论进行澄清。例如,我不知道你是否有不同的入口点或只是分配1->N。

Your proposal, if I didn't misunderstand, is that you have an RTMP traffic as input of a basic redirector, and wants to send the same content to a list of RTMP addresses placed for example in a text file. Your question is how to implement this basic redirector, isn't it?

在这种情况下,您可以使用 FFmpeg 应用程序来完成此操作,就像流媒体系统将数据发送到多个发布点(CDN 进行分发)

文件:rtmp_output_list.txt

rtmp://001.entrypoint.your_cloud.com/live/your_name?user=your_user&pass=your_pass
rtmp://002.entrypoint.your_cloud.com/live/your_name?user=your_user&pass=your_pass
rtmp://003.entrypoint.your_cloud.com/live/another_name?user=another_user&pass=another_pass
...

调用 ffmpeg 的 Bash 脚本:basic_redirector.sh

#!/bin/bash for RTMP_OUTPUT in `cat rtmp_output_list.txt` 
RTMP_INPUT="rtmp://192.168.0.101/test"
METADATA="-metadata width=XXX -metadata height=XXX ... [rest of metadata]"
do
ffmpeg -i $RTMP_INPUT -async 1 -vcodec copy -acodec copy $METADATA -f megts -f flv $RTMP_OUTPUT
done

如果我没有理解正确,请评论,我会帮助你。祝你好运。

关于重定向 RTMP 请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41066583/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com