metartc / ffmpeg-webrtc

ffmpeg-webrtc for whip and whep protocol
Apache License 2.0
58 stars 13 forks source link

静态编译后需要修改端口才能推流 #8

Open addriumruss opened 1 year ago

addriumruss commented 1 year ago

发现SDP查询端口需要修改才能正确推流: 文件YangZlmConnection.c, 搜索yang_zlm_query调用行,修改端口'80'为zlm服务器实际http端口; 文件yang_sdp_querySrs.c, 搜索yang_sdp_querySrs调用行,修改端口代码'session->context.streamConfig->remotePort'替换为实际srs的httpapi端口;

最后文件webrtc_muxer.c中,第152行: int32_t mediaServer=Yang_Server_Srs; 默认采用srs服务器,修改为 int32_t mediaServer=Yang_Server_Zlm; 即采用zlm服务器。

仅供参考。