diff options
author | TheTroll <trolldev@gmail.com> | 2010-03-17 23:48:16 +0100 |
---|---|---|
committer | TheTroll <trolldev@gmail.com> | 2010-03-17 23:48:16 +0100 |
commit | 459abaa2386fd1935abf8b763aee046222b13a01 (patch) | |
tree | a1d44001169eeed40c107a21d6308f370ce3ade8 /js | |
parent | 228e192f64c073afe8e3cd1523d0a975dcf26557 (diff) | |
download | istreamdev-459abaa2386fd1935abf8b763aee046222b13a01.tar.gz istreamdev-459abaa2386fd1935abf8b763aee046222b13a01.tar.bz2 |
Fixed video streaming
Diffstat (limited to 'js')
-rw-r--r-- | js/istreamdev.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/istreamdev.js b/js/istreamdev.js index 8c4a906..1b2a160 100644 --- a/js/istreamdev.js +++ b/js/istreamdev.js @@ -339,7 +339,7 @@ function gen_streamvid(filename,path) { $("#streamvid").find('span[class="epgtime_now"]').html( 'Duration: ' + program.duration );
desc='<b>format: </b>' + program.format + '<br><b>video: </b>' + program.video + '<br><b>audio: </b>' + program.audio + '<br><b>resolution: </b>' + program.resolution;
$("#streamvid").find('span[class="desc_now"]').html( desc );
- $("#streamvid").find('span[rel="url"]').html( path + filename );
+ $("#streamvid").find('span[rel="url"]').html( path + "/" + filename );
$("#streamvid").find('span[rel="type"]').html('vid');
json_complete('#streamvid','cube');
});
|