-
Notifications
You must be signed in to change notification settings - Fork 472
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- [feat] lalserver增加中继转推(relay push)功能,可将接收到的推流(pub)转推(push)到其他rtmp类型的服务器,支持1对n的转推 - [feat] package rtmp: 新增函数amf0::ReadArray,用于解析amf array数据 - [refactor] `rtmp/client_push_session`增加当前会话连接状态 - [fix] demo/analyseflv: 修复解析metadata的bug - [perf] httpflv协议关闭时,不做httpflv的GOP缓存 - [refactor] logic中的配置变更为全局变量 - [refactor] lal/demo移动到lal/app/demo - [refactor] 日志整理
- Loading branch information
1 parent
843952a
commit b3024c8
Showing
37 changed files
with
604 additions
and
158 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
{ | ||
"rtmp": { | ||
"enable": true, | ||
"addr": ":19351", | ||
"gop_num": 2 | ||
}, | ||
"httpflv": { | ||
"enable": false, | ||
"sub_listen_addr": ":8080", | ||
"gop_num": 2 | ||
}, | ||
"hls": { | ||
"enable": false, | ||
"sub_listen_addr": ":8081", | ||
"out_path": "/tmp/lal/hls/", | ||
"fragment_duration_ms": 3000, | ||
"fragment_num": 6 | ||
}, | ||
"relay_push": { | ||
"enable": true, | ||
"addr_list":[ | ||
"127.0.0.1:19350" | ||
] | ||
}, | ||
"pprof": { | ||
"enable": false, | ||
"addr": ":10001" | ||
}, | ||
"log": { | ||
"level": 1, | ||
"filename": "./logs/edge.log", | ||
"is_to_stdout": true, | ||
"is_rotate_daily": true, | ||
"short_file_flag": true, | ||
"assert_behavior": 1 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
github.com/q191201771/naza v0.13.0 h1:tHgsMlMu9dHGmL26cGpFJDeP1qdFwbXVJHPg6IlAuvo= | ||
github.com/q191201771/naza v0.13.0/go.mod h1:SE14GBGO9mAn6JZl3NlfWGtNOT7xQjxOG7f3YOdBThM= | ||
github.com/q191201771/naza v0.13.1 h1:eA2n87AfADKKFNtRyulKbuD942POferOHZwmAfwBw7I= | ||
github.com/q191201771/naza v0.13.1/go.mod h1:SE14GBGO9mAn6JZl3NlfWGtNOT7xQjxOG7f3YOdBThM= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.