We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
通过阅读源码,原本以为可以在实现ServerObserver接口的OnNewRTMPPubSession 方法,然后实现流的读取和push,但是发现并没有暴露io读取或者获取流的方法,所以没有希望能提供相应的方法。这个场景主要是用于多平台推流,比如:本地启动一个lalserver用于rtmp serer端,用obs推流到lalserver,然后lalserver同步到抖音、斗鱼、视频号等其他平台,因为目前obs只能支持一个流推送,所以希望lalserver启动的时候也能同步推流到其他平台的rtmp地址。
ServerObserver
OnNewRTMPPubSession
The text was updated successfully, but these errors were encountered:
lal提供了基于IO之上的,包含协议处理的更高层面的封装。(也即net.Conn之上的各种协议的Server、Session) 你的需求可抽象描述为 1pub对多push。(pub/push含义: https://pengrl.com/lal/#/Session)
你可以考虑:
一. 自己基于lal的基础库实现1pub对多push,最基本的实现大概几十行代码,步骤为:
我后续可能会在app/demo中增加一个示例
二. 直接修改lalserver logic中拼接的逻辑
lalserver目前已支持1pub多push,但是push地址的规则只能指定push的TCP地址(通过配置文件)。push的流名称、参数等信息使用的是pub的流名称。你的需求,各个push的流名称都不相同,和pub的也不相同,所以现阶段没法直接使用lalserver。
你可以直接修改lalserver logic中push地址的拼接逻辑。
我后续可能会:
Sorry, something went wrong.
这个issue超时移入 #37 中管理了,有问题可随时打开,感谢。
No branches or pull requests
通过阅读源码,原本以为可以在实现
ServerObserver
接口的OnNewRTMPPubSession
方法,然后实现流的读取和push,但是发现并没有暴露io读取或者获取流的方法,所以没有希望能提供相应的方法。这个场景主要是用于多平台推流,比如:本地启动一个lalserver用于rtmp serer端,用obs推流到lalserver,然后lalserver同步到抖音、斗鱼、视频号等其他平台,因为目前obs只能支持一个流推送,所以希望lalserver启动的时候也能同步推流到其他平台的rtmp地址。The text was updated successfully, but these errors were encountered: