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
2014-04-06 21:05:18 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
5e6c490ba0535157c783e2faf4f1ea0d0f5bf143
5e6c490b
1 parent
e80abac4
add ingest compile feature
隐藏空白字符变更
内嵌
并排对比
正在显示
2 个修改的文件
包含
21 行增加
和
2 行删除
trunk/auto/depends.sh
trunk/configure
trunk/auto/depends.sh
查看文件 @
5e6c490
...
...
@@ -516,6 +516,12 @@ else
echo
"#undef SRS_TRANSCODE"
>>
$SRS_AUTO_HEADERS_H
fi
if
[
$SRS_INGEST
=
YES
]
;
then
echo
"#define SRS_INGEST"
>>
$SRS_AUTO_HEADERS_H
else
echo
"#undef SRS_INGEST"
>>
$SRS_AUTO_HEADERS_H
fi
#####################################################################################
# build research code
#####################################################################################
...
...
trunk/configure
查看文件 @
5e6c490
...
...
@@ -86,6 +86,7 @@ SrsNginxSummaryColor="\${GREEN}{disabled} "; if [ $SRS_NGINX = YES ]; then SrsNg
SrsSslSummaryColor
=
"
\$
{YELLOW}{disabled} "
;
if
[
$SRS_SSL
=
YES
]
;
then
SrsSslSummaryColor
=
"
\$
{GREEN}"
;
fi
SrsFfmpegSummaryColor
=
"
\$
{YELLOW}{disabled} "
;
if
[
$SRS_FFMPEG
=
YES
]
;
then
SrsFfmpegSummaryColor
=
"
\$
{GREEN}"
;
fi
SrsTranscodeSummaryColor
=
"
\$
{YELLOW}{disabled} "
;
if
[
$SRS_TRANSCODE
=
YES
]
;
then
SrsTranscodeSummaryColor
=
"
\$
{GREEN}"
;
fi
SrsIngestSummaryColor
=
"
\$
{YELLOW}{disabled} "
;
if
[
$SRS_INGEST
=
YES
]
;
then
SrsIngestSummaryColor
=
"
\$
{GREEN}"
;
fi
SrsHttpCallbackSummaryColor
=
"
\$
{YELLOW}{disabled} "
;
if
[
$SRS_HTTP_CALLBACK
=
YES
]
;
then
SrsHttpCallbackSummaryColor
=
"
\$
{GREEN}"
;
fi
SrsHttpServerSummaryColor
=
"
\$
{YELLOW}{disabled} "
;
if
[
$SRS_HTTP_SERVER
=
YES
]
;
then
SrsHttpServerSummaryColor
=
"
\$
{GREEN}"
;
fi
SrsHttpApiSummaryColor
=
"
\$
{YELLOW}{disabled} "
;
if
[
$SRS_HTTP_API
=
YES
]
;
then
SrsHttpApiSummaryColor
=
"
\$
{GREEN}"
;
fi
...
...
@@ -156,6 +157,8 @@ echo -e " | ${SrsFfmpegSummaryColor}ffmpeg @see: https://github.com/winl
echo -e " | ${SrsFfmpegSummaryColor}ffmpeg: transcode, mux, ingest tool\${BLACK}"
echo -e " | ${SrsTranscodeSummaryColor}transcode @see: https://github.com/winlinvip/simple-rtmp-server/wiki/FFMPEG\${BLACK}"
echo -e " | ${SrsTranscodeSummaryColor}transcode: support transcoding RTMP stream\${BLACK}"
echo -e " | ${SrsIngestSummaryColor}ingest @see: https://github.com/winlinvip/simple-rtmp-server/wiki/Ingest\${BLACK}"
echo -e " | ${SrsIngestSummaryColor}ingest: support ingest file/stream/device then push to SRS by RTMP stream\${BLACK}"
echo -e " | ${SrsHttpCallbackSummaryColor}http-callback @see: https://github.com/winlinvip/simple-rtmp-server/wiki/HTTPCallback\${BLACK}"
echo -e " | ${SrsHttpCallbackSummaryColor}http-callback: support http callback for authentication and event injection\${BLACK}"
echo -e " | ${SrsHttpServerSummaryColor}http-server @see: https://github.com/winlinvip/simple-rtmp-server/wiki/HTTPServer\${BLACK}"
...
...
@@ -517,9 +520,19 @@ else
echo
-e
"
${
YELLOW
}
warning: without rtmp complex handshake support, donot support h264/aac to adobe flash player
${
BLACK
}
"
fi
if
[
$SRS_FFMPEG
=
YES
]
;
then
echo
-e
"
${
GREEN
}
live stream transcoding over
FFMPEG is enabled
${
BLACK
}
"
echo
-e
"
${
GREEN
}
transcode/mux/ingest tool
FFMPEG is enabled
${
BLACK
}
"
else
echo
-e
"
${
YELLOW
}
warning: without live stream transcoding over FFMPEG support
${
BLACK
}
"
echo
-e
"
${
YELLOW
}
warning: without transcode/mux/ingest tool FFMPEG support
${
BLACK
}
"
fi
if
[
$SRS_TRANSCODE
=
YES
]
;
then
echo
-e
"
${
GREEN
}
transcoding RTMP stream is enabled
${
BLACK
}
"
else
echo
-e
"
${
YELLOW
}
warning: without transcoding RTMP stream support
${
BLACK
}
"
fi
if
[
$SRS_INGEST
=
YES
]
;
then
echo
-e
"
${
GREEN
}
ingest file/stream/device is enabled
${
BLACK
}
"
else
echo
-e
"
${
YELLOW
}
warning: without ingest file/stream/device support
${
BLACK
}
"
fi
if
[
$SRS_HTTP_CALLBACK
=
YES
]
;
then
echo
-e
"
${
GREEN
}
http hooks callback over CherryPy is enabled
${
BLACK
}
"
...
...
请
注册
或
登录
后发表评论