VOD Testset

This commit is contained in:
MaZderMind 2015-03-02 08:28:32 +01:00
parent 7768a71a78
commit 1bb716a823
2 changed files with 30 additions and 1 deletions

View file

@ -70,7 +70,7 @@ $GLOBALS['CONFIG']['OVERVIEW'] = array(
* Wird beides aktiviert, hat der externe Link Vorrang!
* Wird beides auskommentiert, wird der Link nicht angezeigt
*/
'RELIVE_JSON' => 'http://vod.c3voc.de/relive/index.json',
'RELIVE_JSON' => 'http://localhost/streaming-website/test-vod.json',
);

29
test-vod.json Normal file
View file

@ -0,0 +1,29 @@
[
{
"status": "live",
"release_url": "",
"title": "Title",
"id": 123,
"thumbnail": "123.png",
"duration": 3600,
"room": "Saal 1"
},
{
"status": "released",
"release_url": "http://media.ccc.de/",
"title": "Title",
"id": 123,
"thumbnail": "123.png",
"duration": 3600,
"room": "Saal 1"
},
{
"status": "recorded",
"release_url": "",
"title": "Title",
"id": 123,
"thumbnail": "123.png",
"duration": 3600,
"room": "Saal 1"
}
]