1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-03-09 15:49:59 +00:00

override the default nginx page. jump to players page.

This commit is contained in:
winlin 2013-12-21 14:12:37 +08:00
parent 66ea34c514
commit 7a21427b10
9 changed files with 25 additions and 7 deletions

View file

@ -259,6 +259,13 @@ if [ $SRS_HLS = YES ]; then
ln -sf `pwd`/research/players ${SRS_OBJS}/nginx/html/players && ln -sf `pwd`/research/players ${SRS_OBJS}/nginx/html/players &&
rm -f ${SRS_OBJS}/nginx/crossdomain.xml && rm -f ${SRS_OBJS}/nginx/crossdomain.xml &&
ln -sf `pwd`/research/players/crossdomain.xml ${SRS_OBJS}/nginx/html/crossdomain.xml ln -sf `pwd`/research/players/crossdomain.xml ${SRS_OBJS}/nginx/html/crossdomain.xml
# override the default index.
cat <<END > ${SRS_OBJS}/nginx/html/index.html
<script type="text/javascript">
window.location.href = "players/index.html";
</script>
END
fi fi
if [ $SRS_HLS = YES ]; then if [ $SRS_HLS = YES ]; then

View file

@ -15,7 +15,9 @@
</style> </style>
<script type="text/javascript"> <script type="text/javascript">
$(function(){ $(function(){
srs_init(null); update_nav();
window.location.href = "srs_player.html";
}); });
</script> </script>
</head> </head>

View file

@ -1,3 +1,6 @@
//////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////
/** /**
* padding the output. * padding the output.
* padding(3, 5, '0') is 00003 * padding(3, 5, '0') is 00003
@ -112,6 +115,10 @@ function srs_init(rtmp_url, hls_url, modal_player) {
////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////////
/** /**
* the SrsPlayer object. * the SrsPlayer object.
* @param container the html container id.
* @param stream_url the url of stream, rtmp or http.
* @param width a float value specifies the width of player.
* @param height a float value specifies the height of player.
*/ */
function SrsPlayer(container, stream_url, width, height) { function SrsPlayer(container, stream_url, width, height) {
if (!SrsPlayer.__id) { if (!SrsPlayer.__id) {
@ -275,3 +282,8 @@ function __srs_on_player_timer(id, time, buffer_length) {
player.on_player_timer(time, buffer_length); player.on_player_timer(time, buffer_length);
} }
//////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////

View file

@ -15,7 +15,7 @@
</style> </style>
<script type="text/javascript"> <script type="text/javascript">
$(function(){ $(function(){
srs_init(null); update_nav();
}); });
</script> </script>
</head> </head>

View file

@ -85,9 +85,6 @@ package
if (!flashvars.hasOwnProperty("id")) { if (!flashvars.hasOwnProperty("id")) {
throw new Error("must specifies the id"); throw new Error("must specifies the id");
} }
if (!flashvars.hasOwnProperty("on_player_ready")) {
throw new Error("must specifies the on_player_ready");
}
this.js_id = flashvars.id; this.js_id = flashvars.id;
this.js_on_player_ready = flashvars.on_player_ready; this.js_on_player_ready = flashvars.on_player_ready;

View file

@ -15,7 +15,7 @@
</style> </style>
<script type="text/javascript"> <script type="text/javascript">
$(function(){ $(function(){
srs_init(null); update_nav();
}); });
</script> </script>
</head> </head>

View file

@ -15,7 +15,7 @@
</style> </style>
<script type="text/javascript"> <script type="text/javascript">
$(function(){ $(function(){
srs_init(null); update_nav();
$("#main_frame").attr("src", "http://www.videolan.org/vlc/"); $("#main_frame").attr("src", "http://www.videolan.org/vlc/");
}); });
</script> </script>