mirror of
https://github.com/ossrs/srs.git
synced 2025-03-09 15:49:59 +00:00
fix bug of core
This commit is contained in:
parent
6af0794bab
commit
2695e4d0c6
2 changed files with 134 additions and 133 deletions
|
@ -76,7 +76,7 @@ vhost dev {
|
||||||
hls_path ./objs/nginx/html;
|
hls_path ./objs/nginx/html;
|
||||||
hls_fragment 5;
|
hls_fragment 5;
|
||||||
hls_window 30;
|
hls_window 30;
|
||||||
forward 127.0.0.1:19350?vhost=dev;
|
forward 127.0.0.1:19350;
|
||||||
transcode {
|
transcode {
|
||||||
enabled on;
|
enabled on;
|
||||||
ffmpeg ./objs/ffmpeg/bin/ffmpeg;
|
ffmpeg ./objs/ffmpeg/bin/ffmpeg;
|
||||||
|
@ -318,7 +318,7 @@ vhost all.transcode.vhost.com {
|
||||||
achannels 2;
|
achannels 2;
|
||||||
aparams {
|
aparams {
|
||||||
}
|
}
|
||||||
output rtmp://[vhost]:[port]/[app]/[stream]_ffhd;
|
output rtmp://127.0.0.1:[port]/[app]?vhost=[vhost]/[stream]_[engine];
|
||||||
}
|
}
|
||||||
engine ffsd {
|
engine ffsd {
|
||||||
enabled on;
|
enabled on;
|
||||||
|
@ -338,7 +338,7 @@ vhost all.transcode.vhost.com {
|
||||||
achannels 2;
|
achannels 2;
|
||||||
aparams {
|
aparams {
|
||||||
}
|
}
|
||||||
output rtmp://[vhost]:[port]/[app]/[stream]_ffsd;
|
output rtmp://127.0.0.1:[port]/[app]?vhost=[vhost]/[stream]_[engine];
|
||||||
}
|
}
|
||||||
engine fffast {
|
engine fffast {
|
||||||
enabled on;
|
enabled on;
|
||||||
|
@ -358,7 +358,7 @@ vhost all.transcode.vhost.com {
|
||||||
achannels 2;
|
achannels 2;
|
||||||
aparams {
|
aparams {
|
||||||
}
|
}
|
||||||
output rtmp://[vhost]:[port]/[app]/[stream]_fffast;
|
output rtmp://127.0.0.1:[port]/[app]?vhost=[vhost]/[stream]_[engine];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -385,7 +385,7 @@ vhost ffempty.transcode.vhost.com {
|
||||||
achannels 2;
|
achannels 2;
|
||||||
aparams {
|
aparams {
|
||||||
}
|
}
|
||||||
output rtmp://[vhost]:[port]/[app]/[stream]_empty;
|
output rtmp://127.0.0.1:[port]/[app]?vhost=[vhost]/[stream]_[engine];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -396,7 +396,7 @@ vhost app.transcode.vhost.com {
|
||||||
transcode live {
|
transcode live {
|
||||||
enabled on;
|
enabled on;
|
||||||
ffmpeg ./objs/ffmpeg/bin/ffmpeg;
|
ffmpeg ./objs/ffmpeg/bin/ffmpeg;
|
||||||
engine fd{
|
engine {
|
||||||
enabled off;
|
enabled off;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -408,13 +408,13 @@ vhost stream.transcode.vhost.com {
|
||||||
transcode live/livestream {
|
transcode live/livestream {
|
||||||
enabled on;
|
enabled on;
|
||||||
ffmpeg ./objs/ffmpeg/bin/ffmpeg;
|
ffmpeg ./objs/ffmpeg/bin/ffmpeg;
|
||||||
engine fd{
|
engine {
|
||||||
enabled off;
|
enabled off;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
# the vhost which forward publish streams.
|
# the vhost which forward publish streams.
|
||||||
vhost forward.vhost.com {
|
vhost same.vhost.forward.vhost.com {
|
||||||
# forward all publish stream to the specified server.
|
# forward all publish stream to the specified server.
|
||||||
# this used to split/forward the current stream for cluster active-standby,
|
# this used to split/forward the current stream for cluster active-standby,
|
||||||
# active-active for cdn to build high available fault tolerance system.
|
# active-active for cdn to build high available fault tolerance system.
|
||||||
|
@ -425,7 +425,7 @@ vhost forward.vhost.com {
|
||||||
forward 127.0.0.1:1936 127.0.0.1:1937;
|
forward 127.0.0.1:1936 127.0.0.1:1937;
|
||||||
}
|
}
|
||||||
# the vhost which forward publish streams to other vhosts.
|
# the vhost which forward publish streams to other vhosts.
|
||||||
vhost forward1.vhost.com {
|
vhost change.vhost.forward.vhost.com {
|
||||||
forward 127.0.0.1:1936?vhost=forward2.vhost.com 127.0.0.1:1937?vhost=forward3.vhost.com;
|
forward 127.0.0.1:1936?vhost=forward2.vhost.com 127.0.0.1:1937?vhost=forward3.vhost.com;
|
||||||
}
|
}
|
||||||
# the vhost disabled.
|
# the vhost disabled.
|
||||||
|
|
1
trunk/src/core/srs_core.cpp
Normal file → Executable file
1
trunk/src/core/srs_core.cpp
Normal file → Executable file
|
@ -92,6 +92,7 @@ void srs_vhost_resolve(std::string& vhost, std::string& app)
|
||||||
{
|
{
|
||||||
app = srs_replace(app, "...", "?");
|
app = srs_replace(app, "...", "?");
|
||||||
|
|
||||||
|
size_t pos = 0;
|
||||||
if ((pos = app.find("?")) == std::string::npos) {
|
if ((pos = app.find("?")) == std::string::npos) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue