diff options
Diffstat (limited to 'abs')
-rw-r--r-- | abs/core-testing/local-website/htdocs/index.html | 13 | ||||
-rwxr-xr-x | abs/core-testing/local-website/htdocs/mediaserv.php | 4 |
2 files changed, 14 insertions, 3 deletions
diff --git a/abs/core-testing/local-website/htdocs/index.html b/abs/core-testing/local-website/htdocs/index.html index c77629d..4cd5736 100644 --- a/abs/core-testing/local-website/htdocs/index.html +++ b/abs/core-testing/local-website/htdocs/index.html @@ -90,9 +90,16 @@ FUPPES - Free UPnP Entertainment Service. A UPnP to be used inplace of the UPnP server that comes with MythTV. If the UPnP that comes with MythTV doesn't work for you, you can -try FUPPES. - - </p><p><a href="http://192.168.1.253/rrd/index.html"><b>RRDTool</b></a>: <br> +try FUPPES.</p><p><a style="font-weight: bold;" href="http://192.168.1.253/mediaserv.php"><span style="text-decoration: underline;">Mediaserv</span></a><br> + Mediaserv - A on-demand transcoding server for +videos. Mediaserv is designed to transcode video in a format +playable on the Nokia Internet Tablets. However it works well at +transcoding and streaming to any device. As longs as the +device will playback AVIs (think streaming to any browser!). By +default, we have it set to link to +TV recordings (pretty) and your video directory. Additionally if +you want it to stream contents from a network share, it will! ln +-s /path/to/share /myth/mediaserv/media/ </p><p><a href="http://192.168.1.253/rrd/index.html"><b>RRDTool</b></a>: <br> Hardware status graphs. </p> diff --git a/abs/core-testing/local-website/htdocs/mediaserv.php b/abs/core-testing/local-website/htdocs/mediaserv.php new file mode 100755 index 0000000..832dec5 --- /dev/null +++ b/abs/core-testing/local-website/htdocs/mediaserv.php @@ -0,0 +1,4 @@ +<?php +$HTTP_HOST = getenv('HTTP_HOST'); +header("Location: http://$HTTP_HOST:8090/"); +?> |