diff options
author | Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> | 2007-12-18 23:46:05 +0000 |
---|---|---|
committer | Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> | 2007-12-18 23:46:05 +0000 |
commit | 04f743cfa85b5a5b881ccc9a7ac133c6f53d34af (patch) | |
tree | f2685727e17a524ffaa32dd5dcf8645277864c2c /pages/vlc.ecpp | |
parent | 9bba540569fadfebe9f78da7b4e5e551cf98e1b5 (diff) | |
download | vdr-plugin-live-04f743cfa85b5a5b881ccc9a7ac133c6f53d34af.tar.gz vdr-plugin-live-04f743cfa85b5a5b881ccc9a7ac133c6f53d34af.tar.bz2 |
- IMDB link for recordings too. Fixes Bug #420
- Window size of streaming window is now adapted to new size of
embedded vlc video frame.
Diffstat (limited to 'pages/vlc.ecpp')
-rw-r--r-- | pages/vlc.ecpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/pages/vlc.ecpp b/pages/vlc.ecpp index 51c4338..b8cea6f 100644 --- a/pages/vlc.ecpp +++ b/pages/vlc.ecpp @@ -41,10 +41,10 @@ using namespace vdrlive; <html> <head> <title>VDR-Live - <$ pageTitle $></title> + <& pageelems.stylesheets &> <%cpp> if (!asyncReq) { </%cpp> - <& pageelems.stylesheets &> <& pageelems.ajax_js &> <%cpp> } @@ -63,10 +63,12 @@ using namespace vdrlive; <%cpp> if ( Channel != 0 ) { int streamdevPort = LiveSetup().GetStreamdevPort(); - string videourl = string("http://") + request.getServerIp() + ":" + lexical_cast<string,int>(streamdevPort) + "/" + *Channel->GetChannelID().ToString(); + // string videourl = string("http://") + "192.168.96.30" + ":" + lexical_cast<string,int>(streamdevPort) + "/TS/" + *Channel->GetChannelID().ToString(); + string videourl = string("http://") + request.getServerIp() + ":" + lexical_cast<string,int>(streamdevPort) + "/TS/" + *Channel->GetChannelID().ToString(); </%cpp> <embed type="application/x-vlc-plugin" name="video1" autoplay="yes" loop="yes" width="720" height="576" target="<$ videourl $>" /> <& vlc.channel_selection &> + <!-- <p><$ videourl $></p> --> <%cpp> } </%cpp> |