Toggle navigation
Toggle navigation
此项目
正在载入...
Sign in
胡斌
/
srs
转到一个项目
Toggle navigation
项目
群组
代码片段
帮助
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
winlin
2015-01-22 18:39:53 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
a647043a069a74ff8f30103458054bfb49bf953c
a647043a
1 parent
0702ad19
update readme and wiki url for http ts stream
显示空白字符变更
内嵌
并排对比
正在显示
6 个修改的文件
包含
34 行增加
和
14 行删除
README.md
trunk/conf/full.conf
trunk/conf/http.aac.live.conf
trunk/conf/http.flv.live.conf
trunk/conf/http.mp3.live.conf
trunk/conf/http.ts.live.conf
README.md
查看文件 @
a647043
...
...
@@ -36,8 +36,8 @@ HLS(
[
EN
](
https://github.com/winlinvip/simple-rtmp-server/wiki/v1_EN_DeliveryHLS
)
),
HTTP(
[
CN
](
https://github.com/winlinvip/simple-rtmp-server/wiki/v2_CN_DeliveryHttpFlvStream
)
,
[
EN
](
https://github.com/winlinvip/simple-rtmp-server/wiki/v2_CN_DeliveryHttpFlvStream
)
[
CN
](
https://github.com/winlinvip/simple-rtmp-server/wiki/v2_CN_DeliveryHttpStream
)
,
[
EN
](
https://github.com/winlinvip/simple-rtmp-server/wiki/v2_CN_DeliveryHttpStream
)
),
high-performance(10k+ clients)(
[
CN
](
https://github.com/winlinvip/simple-rtmp-server/wiki/v1_CN_Performance
)
,
...
...
@@ -481,8 +481,8 @@ Supported operating systems and hardware:
[
274
](
https://github.com/winlinvip/simple-rtmp-server/issues/274
)
.
1.
Support rtmp remux to http flv/mp3/aac live stream, read
[
#293
](
https://github.com/winlinvip/simple-rtmp-server/issues/293
)(
[CN](https://github.com/winlinvip/simple-rtmp-server/wiki/v2_CN_DeliveryHttpFlvStream
)
,
[
EN
](
https://github.com/winlinvip/simple-rtmp-server/wiki/v2_CN_DeliveryHttpFlvStream
)
[CN](https://github.com/winlinvip/simple-rtmp-server/wiki/v2_CN_DeliveryHttpStream
)
,
[
EN
](
https://github.com/winlinvip/simple-rtmp-server/wiki/v2_CN_DeliveryHttpStream
)
).
1.
[
no-plan
]
Support <500ms latency, FRSC(Fast RTMP-compatible Stream Channel tech).
1.
[
no-plan
]
Support RTMP 302 redirect
[
#92
](
https://github.com/winlinvip/simple-rtmp-server/issues/92
)
.
...
...
trunk/conf/full.conf
查看文件 @
a647043
...
...
@@ -379,26 +379,27 @@ vhost http.static.srs.com {
# vhost for http flv/aac/mp3 live stream for each vhost.
vhost
http
.
remux
.
srs
.
com
{
# http flv/mp3/aac stream vhost specified config
# http flv/mp3/aac
/ts
stream vhost specified config
http_remux
{
# whether enable the http
flv
live streaming service for vhost.
# whether enable the http live streaming service for vhost.
# default: off
enabled
on
;
# the fast cache for audio stream(mp3/aac),
# to cache more audio and send to client in a time to make android(weixin) happy.
# @remark the flv stream ignore it
# @remark the flv
/ts
stream ignore it
# @remark 0 to disable fast cache for http audio stream.
# default: 0
fast_cache
30
;
# the stream mout for rtmp to remux to
flv
live streaming.
# the stream mout for rtmp to remux to live streaming.
# typical mount to [vhost]/[app]/[stream].flv
# the variables:
# [vhost] current vhost for http flv live stream.
# [app] current app for http flv live stream.
# [stream] current stream for http flv live stream.
# [vhost] current vhost for http live stream.
# [app] current app for http live stream.
# [stream] current stream for http live stream.
# @remark the [vhost] is optional, used to mount at specified vhost.
# the extension:
# .flv mount http live flv stream, use default gop cache.
# .ts mount http live ts stream, use default gop cache.
# .mp3 mount http live mp3 stream, ignore video and audio mp3 codec required.
# .aac mount http live aac stream, ignore video and audio aac codec required.
# for example:
...
...
@@ -411,6 +412,8 @@ vhost http.remux.srs.com {
# access by http://ossrs.net:8080/live/livestream.mp3
# mount to [vhost]/[app]/[stream].aac
# access by http://ossrs.net:8080/live/livestream.aac
# mount to [vhost]/[app]/[stream].ts
# access by http://ossrs.net:8080/live/livestream.ts
# @remark the port of http is specified by http_server section.
# default: [vhost]/[app]/[stream].flv
mount
[
vhost
]/[
app
]/[
stream
].
flv
;
...
...
trunk/conf/http.aac.live.conf
查看文件 @
a647043
# the config for srs to remux rtmp to aac live stream.
# @see https://github.com/winlinvip/simple-rtmp-server/wiki/v2_CN_DeliveryHttp
Flv
Stream
# @see https://github.com/winlinvip/simple-rtmp-server/wiki/v2_CN_DeliveryHttpStream
# @see full.conf for detail config.
listen
1935
;
...
...
trunk/conf/http.flv.live.conf
查看文件 @
a647043
# the config for srs to remux rtmp to flv live stream.
# @see https://github.com/winlinvip/simple-rtmp-server/wiki/v2_CN_DeliveryHttp
Flv
Stream
# @see https://github.com/winlinvip/simple-rtmp-server/wiki/v2_CN_DeliveryHttpStream
# @see full.conf for detail config.
listen
1935
;
...
...
trunk/conf/http.mp3.live.conf
查看文件 @
a647043
# the config for srs to remux rtmp to mp3 live stream.
# @see https://github.com/winlinvip/simple-rtmp-server/wiki/v2_CN_DeliveryHttp
Flv
Stream
# @see https://github.com/winlinvip/simple-rtmp-server/wiki/v2_CN_DeliveryHttpStream
# @see full.conf for detail config.
listen
1935
;
...
...
trunk/conf/http.ts.live.conf
0 → 100644
查看文件 @
a647043
# the config for srs to remux rtmp to ts live stream.
# @see https://github.com/winlinvip/simple-rtmp-server/wiki/v2_CN_DeliveryHttpStream
# @see full.conf for detail config.
listen
1935
;
max_connections
1000
;
http_server
{
enabled
on
;
listen
8080
;
dir
./
objs
/
nginx
/
html
;
}
vhost
__
defaultVhost__
{
http_remux
{
enabled
on
;
mount
[
vhost
]/[
app
]/[
stream
].
ts
;
}
}
...
...
请
注册
或
登录
后发表评论