I guess I have a pretty simple page, but do not get it working completely.
Mainly there are two categories:
The code which contains the video links for newer episodes is:
The code which contains the video links for older episodes is:
I don't get a regex, which works for both, older and new format. I also have the problem that new episode are split into 3 parts. Is it possible to generate a "hidden" playlist?
Do I need to code a siteutil for this?
Mainly there are two categories:
- Aktuelle Folgen (Latest): http://fernsehkritik.tv/tv-magazin/
- Alle Folgen (All): http://fernsehkritik.tv/tv-magazin/komplett/
Code:
http://fernsehkritik.tv/folge-{0}/Start/
The code which contains the video links for newer episodes is:
Code:
document.getElementById('flashh').innerHTML = "Folge 113 vom 27. April 2013 <span id=\"flashtoggle\" style=\"font-size:11px;\"><a href=\"../\">stoppen...<"+"/a><"+"/span>";
var base = 'http://fernsehkritik.tv/js/directme.php?file=';
var ep = 113;
var onStartJump = false;
playlist = [ { url: base + '113.flv' },
{ url: base + '113-2.flv' },
{ url: base + '113-3.flv' }];
Code:
var base = 'http://fernsehkritik.tv/js/directme.php?file=';
var ep = 51;
var onStartJump = false;
playlist = [{ url: base + ep + '.flv' }];
I don't get a regex, which works for both, older and new format. I also have the problem that new episode are split into 3 parts. Is it possible to generate a "hidden" playlist?
Do I need to code a siteutil for this?
Last edited: