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-05-24 09:15:37 +0800
Browse Files
Options
Browse Files
Download
Plain Diff
Commit
58b336451da7b26bcaef39273061f433a52144d3
58b33645
2 parents
2f66c8dd
94efe3f7
Merge branch '2.0release' into develop
隐藏空白字符变更
内嵌
并排对比
正在显示
4 个修改的文件
包含
48 行增加
和
0 行删除
README.md
trunk/conf/http.flv.live.edge1.conf
trunk/conf/http.flv.live.edge2.conf
trunk/src/protocol/srs_http_stack.cpp
README.md
查看文件 @
58b3364
...
...
@@ -117,6 +117,7 @@ cd simple-rtmp-server/trunk
<strong>
See also:
</strong>
*
Usage: How to delivery RTMP?(
[
CN
][
v1_CN_SampleRTMP
]
,
[
EN
][
v1_EN_SampleRTMP
]
)
*
Usage: How to delivery HTTP FLV Live Streaming?(
[
CN
][
v2_CN_SampleHttpFlv
]
,
[
EN
][
v2_EN_SampleHttpFlv
]
)
*
Usage: How to delivery HTTP FLV Live Streaming Cluster?(
[
CN
][
v2_CN_SampleHttpFlvCluster
]
,
[
EN
][
v2_EN_SampleHttpFlvCluster
]
)
*
Usage: How to delivery HLS?(
[
CN
][
v1_CN_SampleHLS
]
,
[
EN
][
v1_EN_SampleHLS
]
)
*
Usage: How to delivery HLS for other codec?(
[
CN
][
v1_CN_SampleTranscode2HLS
]
,
[
EN
][
v1_EN_SampleTranscode2HLS
]
)
*
Usage: How to transode RTMP stream by SRS?(
[
CN
][
v1_CN_SampleFFMPEG
]
,
[
EN
][
v1_EN_SampleFFMPEG
]
)
...
...
@@ -936,6 +937,8 @@ Winlin
[
v2_EN_Streamer2
]:
https://github.com/simple-rtmp-server/srs/wiki/v2_EN_Streamer#push-http-flv-to-srs
[
v2_CN_SampleHttpFlv
]:
https://github.com/simple-rtmp-server/srs/wiki/v2_CN_SampleHttpFlv
[
v2_EN_SampleHttpFlv
]:
https://github.com/simple-rtmp-server/srs/wiki/v2_EN_SampleHttpFlv
[
v2_CN_SampleHttpFlvCluster
]:
https://github.com/simple-rtmp-server/srs/wiki/v2_CN_SampleHttpFlvCluster
[
v2_EN_SampleHttpFlvCluster
]:
https://github.com/simple-rtmp-server/srs/wiki/v2_EN_SampleHttpFlvCluster
[
bug #213
]:
https://github.com/simple-rtmp-server/srs/issues/213
[
bug #194
]:
https://github.com/simple-rtmp-server/srs/issues/194
...
...
trunk/conf/http.flv.live.edge1.conf
0 → 100644
查看文件 @
58b3364
# the config for srs to remux rtmp to flv live stream.
# @see https://github.com/simple-rtmp-server/srs/wiki/v2_CN_DeliveryHttpStream
# @see full.conf for detail config.
listen
19351
;
max_connections
1000
;
pid
objs
/
srs
.
flv
.
19351
.
pid
;
srs_log_file
objs
/
srs
.
flv
.
19351
.
log
;
http_server
{
enabled
on
;
listen
8081
;
dir
./
objs
/
nginx
/
html
;
}
vhost
__
defaultVhost__
{
mode
remote
;
origin
127
.
0
.
0
.
1
;
http_remux
{
enabled
on
;
mount
[
vhost
]/[
app
]/[
stream
].
flv
;
hstrs
on
;
}
}
...
...
trunk/conf/http.flv.live.edge2.conf
0 → 100644
查看文件 @
58b3364
# the config for srs to remux rtmp to flv live stream.
# @see https://github.com/simple-rtmp-server/srs/wiki/v2_CN_DeliveryHttpStream
# @see full.conf for detail config.
listen
19352
;
max_connections
1000
;
pid
objs
/
srs
.
flv
.
19352
.
pid
;
srs_log_file
objs
/
srs
.
flv
.
19352
.
log
;
http_server
{
enabled
on
;
listen
8082
;
dir
./
objs
/
nginx
/
html
;
}
vhost
__
defaultVhost__
{
mode
remote
;
origin
127
.
0
.
0
.
1
;
http_remux
{
enabled
on
;
mount
[
vhost
]/[
app
]/[
stream
].
flv
;
hstrs
on
;
}
}
...
...
trunk/src/protocol/srs_http_stack.cpp
查看文件 @
58b3364
...
...
@@ -25,6 +25,7 @@
#include <stdlib.h>
#include <sstream>
#include <algorithm>
using
namespace
std
;
#include <srs_kernel_error.hpp>
...
...
请
注册
或
登录
后发表评论