Follow along with the video below to see how to install our site as a web app on your home screen.
							 
						
Beleška: this_feature_currently_requires_accessing_site_using_safari
ARD 
ZDF
ZDF Neo
SF 1 
SF 2 
SFinfo 
ORF 1 
ORF 2 
3 sat 
Arte 
Arte français
KiKa 
ProSieben 
RTL 1 
RTL 2 
RTL 9
Super RTL 
Sat1 
VOX 
KabelEins 
DasVierte 
SIXX 
DMAX 
N-TV 
Nick/Comedy Central 
Nick/Viva 
Sport 1 
StarTV 
Tele Züri 
Eurosport 
France 2 
France 3 
France 5 
TSR 1 
TSR 2 
TV5 monde 
TF 1 
M6http://www.fiddler2.com/Fiddler2/version.aspimport System;
import System.Windows.Forms;
import Fiddler;
// GLOBALIZATION NOTE:
// Be sure to save this file with UTF-8 Encoding if using any non-ASCII characters
// in strings, etc.
//
// JScript Reference
// [URL="http://www.fiddler2.com/redir/?id=msdnjsnet"]Language Reference[/URL]
//
// FiddlerScript Reference
// [URL="http://www.fiddler2.com/redir/?id=fiddlerscriptcookbook"]Fiddler Web Debugger - Script Samples[/URL]
//
// FiddlerScript Editor: 
// [URL="http://www.fiddler2.com/redir/?id=fiddlerscripteditor"]Fiddler Web Debugger - FiddlerScript Editor[/URL]
class Handlers
{
 // The following snippet demonstrates a custom-bound column for the web sessions list.  
 // See [URL="http://www.fiddler2.com/fiddler/help/configurecolumns.asp"]Fiddler Web Debugger - UI Column Configuration[/URL] for more info
 //public static BindUIColumn("Method", 60)
 //function FillMethodColumn(oS: Session){
 // if ((oS.oRequest != null) && (oS.oRequest.headers != null))
 // return oS.oRequest.headers.HTTPMethod; else return String.Empty;
 //}
 public static RulesOption("Hide 304s")
 var m_Hide304s: boolean = false;
 // Cause Fiddler to override the Accept-Language header with one of the defined values
 public static RulesOption("Request &Japanese Content")
 var m_Japanese: boolean = false; 
 // Cause Fiddler to override the User-Agent header with one of the defined values
 RulesString("&User-Agents", true) 
 RulesStringValue(0,"Netscape &3", "Mozilla/3.0 (Win95; I)")
 RulesStringValue(1,"WinMobile7", "Mozilla/4.0 (compatible; MSIE 7.0; Windows Phone OS 7.0; Trident/3.1; IEMobile/7.0) Microsoft;FuturePhone")
 RulesStringValue(2,"&Safari5 (Win7)", "Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/533.16 (KHTML, like Gecko) Version/5.0 Safari/533.16")
 RulesStringValue(3,"IPAD", "Mozilla/5.0 (iPad; U; CPU iPhone OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B314 Safari/531.21.10") 
 RulesStringValue(4,"IE &6 (XPSP2)", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)")
 RulesStringValue(5,"IE &7 (Vista)", "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1)")
 RulesStringValue(6,"IE 8 (Win2k3 x64)", "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; WOW64; Trident/4.0)")
 RulesStringValue(7,"IE &8 (Win7)", "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0)")
 RulesStringValue(8,"IE 8 (IE7 CompatMode)", "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0)")
 RulesStringValue(9,"IE 9 (Win7)", "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)")
 RulesStringValue(10,"&Opera", "Opera/9.80 (Windows NT 6.1; U; en) Presto/2.5.28/2.5.23 Version/10.60")
 RulesStringValue(11,"&Firefox 2", "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.10) Gecko/20071115 Firefox/2.0.0.10")
 RulesStringValue(12,"&Firefox 3.6", "Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.7) Gecko/20100625 Firefox/3.6.7")
 RulesStringValue(13,"&Firefox 4Beta", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:2.0b5) Gecko/20100101 Firefox/4.0b5")
 RulesStringValue(14,"&Firefox (Mac)", "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en-US; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3")
 RulesStringValue(15,"Chrome", "Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4")
 RulesStringValue(16,"GoogleBot Crawler", "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)")
 RulesStringValue(17,"&Custom...", "%CUSTOM%")
 public static var sUA: String = null;
 
 // Cause Fiddler to delay HTTP traffic to simulate typical 56k modem conditions
 public static RulesOption("Simulate &Modem speeds", "Per&formance")
 var m_SimulateModem: boolean = false;
 
 // Removes HTTP-caching related headers and specifies "no-cache" on requests and responses
 public static RulesOption("&Disable Caching", "Per&formance")
 var m_DisableCaching: boolean = false;
 // Show the duration between the start of Request.Send and Response.Completed in Milliseconds
 public static RulesOption("&Show Time-to-Last-Byte", "Per&formance")
 var m_ShowTTLB: boolean = false;
 // Show the time of response completion
 public static RulesOption("Show Response &Timestamp", "Per&formance")
 var m_ShowTimestamp: boolean = false;
 
 // Force a manual reload of the script file.  Resets all
 // RulesOption variables to their defaults.
 public static ToolsAction("Reset Script")
 function DoManualReload(){ 
  FiddlerObject.ReloadScript();
 }
 public static ContextAction("Decode Selected Sessions")
 function DoRemoveEncoding(oSessions: Session[]){
  for (var x = 0; x < oSessions.Length; x++){
   oSessions[x].utilDecodeRequest();
   oSessions[x].utilDecodeResponse();
  }
 }
 static function OnBoot(){
//  MessageBox.Show("Fiddler has finished booting");
//  System.Diagnostics.Process.Start("iexplore.exe");
//  FiddlerObject.UI.ActivateRequestInspector("HEADERS");
//  FiddlerObject.UI.ActivateResponseInspector("HEADERS");
 }
 
 static function OnShutdown(){
//  MessageBox.Show("Fiddler has shutdown");
 }
 
 static function OnAttach(){
//  MessageBox.Show("Fiddler is now the system proxy");
//  System.Diagnostics.Process.Start("proxycfg.exe", "-u"); // Notify WinHTTP of proxy change
 }
 static function OnDetach(){
//  MessageBox.Show("Fiddler is no longer the system proxy");
//  System.Diagnostics.Process.Start("proxycfg.exe", "-u"); // Notify WinHTTP of proxy change
 }
 static function OnBeforeRequest(oSession: Session)
    {
                oSession.oRequest["X-Forwarded-For"] = "194.230.72.68";
  // Sample Rule: Color ASPX requests in RED
//  if (oSession.uriContains(".aspx")) { oSession["ui-color"] = "red"; } 
  // Sample Rule: Flag POSTs to fiddler2.com in italics
//  if (oSession.HostnameIs("[URL="http://www.fiddler2.com"]www.fiddler2.com[/URL]") && oSession.HTTPMethodIs("POST")) { oSession["ui-italic"] = "yup"; } 
  // Sample Rule: Break requests for URLs containing "/sandbox/"
//  if (oSession.uriContains("/sandbox/")){
//   oSession.oFlags["x-breakrequest"] = "yup"; // Existence of the x-breakrequest flag creates a breakpoint; the "yup" value is unimportant.
//  }
  if ((null != gs_ReplaceToken) && (oSession.url.indexOf(gs_ReplaceToken)>-1)){   // Case sensitive
   oSession.url = oSession.url.Replace(gs_ReplaceToken, gs_ReplaceTokenWith); 
  }
  if ((null != gs_OverridenHost) && (oSession.host.toLowerCase() == gs_OverridenHost)){    
   oSession["x-overridehost"] = gs_OverrideHostWith; 
  }
  if ((null!=bpRequestURI) && oSession.uriContains(bpRequestURI)){
   oSession["x-breakrequest"]="uri";
  }  
 
  if ((null!=bpMethod) && (oSession.HTTPMethodIs(bpMethod))){
   oSession["x-breakrequest"]="method";
  } 
 
  if ((null!=uiBoldURI) && oSession.uriContains(uiBoldURI)){
   oSession["ui-bold"]="QuickExec";
  }  
 
  if (m_SimulateModem){
   // Delay sends by 300ms per KB uploaded.
   oSession["request-trickle-delay"] = "300"; 
   // Delay receives by 150ms per KB downloaded.
   oSession["response-trickle-delay"] = "150"; 
  }
  if (m_DisableCaching){
   oSession.oRequest.headers.Remove("If-None-Match");
   oSession.oRequest.headers.Remove("If-Modified-Since");
   oSession.oRequest["Pragma"] = "no-cache";
  }
  // User-Agent Overrides
  if (null != sUA){
   oSession.oRequest["User-Agent"] = sUA; 
  } 
 
  if (m_Japanese){
   oSession.oRequest["Accept-Language"] = "ja";
  }
 }
 
 //
 // If a given session has response streaming enabled, then the OnBeforeResponse function 
 // is actually called AFTER the response was returned to the client.
 //
 // In contrast, this OnPeekAtResponseHeaders method is called before the response headers are 
 // sent to the client (and before the body is read from the server).  Hence this is an opportune time 
 // to disable streaming (oSession.bBufferResponse = true) if there is something in the response headers 
 // which suggests that tampering with the response body is necessary.
 // 
 // Note: oSession.responseBodyBytes is not available within this function!
 //
 static function OnPeekAtResponseHeaders(oSession: Session) {
  //FiddlerApplication.Log.LogFormat("Session {0}: Response header peek shows status is {1}", oSession.id, oSession.responseCode);
  if (m_DisableCaching) {
   oSession.oResponse.headers.Remove("Expires");
   oSession.oResponse["Cache-Control"] = "no-cache";
  }
 }
 static function OnBeforeResponse(oSession: Session)
    { 
  if (m_ShowTimestamp){
   oSession["ui-customcolumn"] = DateTime.Now.ToString("H:mm:ss.ffff") + " " + oSession["ui-customcolumn"]; 
  }
  if (m_ShowTTLB){
   oSession["ui-customcolumn"] = oSession.oResponse.iTTLB + "ms " + oSession["ui-customcolumn"]; 
  }
  if (m_Hide304s && oSession.responseCode == 304){
   oSession["ui-hide"] = "true";
  }
 
  if ((bpStatus>0) && (oSession.responseCode == bpStatus)){
   oSession["x-breakresponse"]="status";
  }
 
  if ((null!=bpResponseURI) && oSession.uriContains(bpResponseURI)){
   oSession["x-breakresponse"]="uri";
  }  
 }
 
 static function Main()
 {
    var today: Date = new Date();
  FiddlerObject.StatusText = " CustomRules.js was loaded at: " + today;
  // Uncomment to add a "Server" column containing the response "Server" header, if present
  // FiddlerObject.UI.lvSessions.AddBoundColumn("Server", 50, "@response.server");
 }
 // These static variables are used for simple breakpointing & other QuickExec rules 
 static var bpRequestURI:String = null;
 static var bpResponseURI:String = null;
 static var bpStatus:int = -1;
 static var bpMethod: String = null;
 static var uiBoldURI: String = null;
 static var gs_ReplaceToken: String = null;
 static var gs_ReplaceTokenWith: String = null;
 static var gs_OverridenHost: String = null;
 static var gs_OverrideHostWith: String = null;
 
 // The OnExecAction function is called by either the QuickExec box in the Fiddler window,
 // or by the ExecAction.exe command line utility.
 static function OnExecAction(sParams: String[]){
 FiddlerObject.StatusText = "ExecAction: " + sParams[0];
 
 var sAction = sParams[0].toLowerCase();
 switch (sAction){
 case "bold":
  if (sParams.Length<2) {uiBoldURI=null; FiddlerObject.StatusText="Bolding cleared"; return;}
  uiBoldURI = sParams[1]; FiddlerObject.StatusText="Bolding requests for " + uiBoldURI;
  break;
 case "bp":
      FiddlerObject.alert("bpu = breakpoint request for uri\nbpm = breakpoint request method\nbps=breakpoint response status\nbpafter = breakpoint response for URI");
  break;
 case "bps":
  if (sParams.Length<2) {bpStatus=-1; FiddlerObject.StatusText="Response Status breakpoint cleared"; return;}
  bpStatus = parseInt(sParams[1]); FiddlerObject.StatusText="Response status breakpoint for " + sParams[1];
  break;
 case "bpv":
 case "bpm":
  if (sParams.Length<2) {bpMethod=null; FiddlerObject.StatusText="Request Method breakpoint cleared"; return;}
  bpMethod = sParams[1].toUpperCase(); FiddlerObject.StatusText="Request Method breakpoint for " + bpMethod;
  break;
 case "bpu":
  if (sParams.Length<2) {bpRequestURI=null; FiddlerObject.StatusText="RequestURI breakpoint cleared"; return;}
  bpRequestURI = sParams[1]; 
  FiddlerObject.StatusText="RequestURI breakpoint for "+sParams[1];
 break;
 case "bpafter":
  if (sParams.Length<2) {bpResponseURI=null; FiddlerObject.StatusText="ResponseURI breakpoint cleared"; return;}
  bpResponseURI = sParams[1]; 
  FiddlerObject.StatusText="ResponseURI breakpoint for "+sParams[1];
 break;
 case "overridehost":
  if (sParams.Length<3) {gs_OverridenHost=null; FiddlerObject.StatusText="Host Override cleared"; return;}
  gs_OverridenHost = sParams[1].toLowerCase();
  gs_OverrideHostWith = sParams[2];
  FiddlerObject.StatusText="Connecting to [" + gs_OverrideHostWith + "] for requests to [" + gs_OverridenHost + "]";
  break;
 case "urlreplace":
  if (sParams.Length<3) {gs_ReplaceToken=null; FiddlerObject.StatusText="URL Replacement cleared"; return;}
  gs_ReplaceToken = sParams[1];
  gs_ReplaceTokenWith = sParams[2].Replace(" ", "%20");  // Simple helper
  FiddlerObject.StatusText="Replacing [" + gs_ReplaceToken + "] in URIs with [" + gs_ReplaceTokenWith + "]";
  break;
 case "select":
  if (sParams.Length<2) { FiddlerObject.StatusText="Please specify Content-Type to select."; return;}
  FiddlerObject.UI.actSelectSessionsWithResponseHeaderValue("Content-Type", sParams[1]);
  FiddlerObject.StatusText="Selected sessions returning Content-Type: " + sParams[1] + ".";
  if (FiddlerObject.UI.lvSessions.SelectedItems.Count > 0){
   FiddlerObject.UI.lvSessions.Focus();
  }
  break;
 case "allbut":
 case "keeponly":
  if (sParams.Length<2) { FiddlerObject.StatusText="Please specify Content-Type to retain during wipe."; return;}
  FiddlerObject.UI.actSelectSessionsWithResponseHeaderValue("Content-Type", sParams[1]);
  FiddlerObject.UI.actRemoveUnselectedSessions();
  FiddlerObject.UI.lvSessions.SelectedItems.Clear();
  FiddlerObject.StatusText="Removed all but Content-Type: " + sParams[1];
  break;
 case "stop":
      FiddlerObject.UI.actDetachProxy();
      break;
     case "start":
      FiddlerObject.UI.actAttachProxy();
      break;
     case "cls":
     case "clear":
      FiddlerObject.UI.actRemoveAllSessions();
      break;
 case "g":
 case "go":
  FiddlerObject.UI.actResumeAllSessions();
  break;
     case "help":
  Utilities.LaunchHyperlink("[URL="http://www.fiddler2.com/redir/?id=quickexec"]Fiddler Web Debugger - QuickExec Reference[/URL]");
      break;
     case "hide":
      FiddlerObject.UI.actMinimizeToTray();
      break;
 case "log":
  FiddlerApplication.Log.LogString((sParams.Length<2) ? FiddlerApplication.Log.LogString("User couldn't think of anything to say...") : sParams[1]);
  break;     
     case "nuke":
  FiddlerObject.UI.actClearWinINETCache();
  FiddlerObject.UI.actClearWinINETCookies(); 
 break;
     case "show":
      FiddlerObject.UI.actRestoreWindow();
      break;
 case "tail":
  if (sParams.Length<2) { FiddlerObject.StatusText="Please specify # of sessions to trim the session list to."; return;}
  FiddlerObject.UI.TrimSessionList(int.Parse(sParams[1]));
  break;
     case "quit":
      FiddlerObject.UI.actExit();
      break;
     case "dump":
      FiddlerObject.UI.actSelectAll();
      FiddlerObject.UI.actSaveSessionsToZip(CONFIG.GetPath("Captures") + "dump.saz");
      FiddlerObject.UI.actRemoveAllSessions();
      FiddlerObject.StatusText = "Dumped all sessions to " + CONFIG.GetPath("Captures") + "dump.saz";
      break;
 
     default:
      if (sAction.StartsWith("http") || sAction.StartsWith("www")){
       System.Diagnostics.Process.Start(sAction);
      }
      else
      FiddlerObject.StatusText = "Requested ExecAction: " + sAction + " not found. Type HELP to learn more.";
     }
 }
}ORF 1 
[URL]http://www.freeetv.com/script/mediaplayer/player.swf?streamer=http://gartenhof.live1-f.akamaihd.net/orf1_1_800@43059&file=http://gartenhof.live1-f.akamaihd.net/orf1_1_800@43059&type=video&autostart=true[/URL]
ORF 2 
[URL]http://www.freeetv.com/script/mediaplayer/player.swf?streamer=http://gartenhoflive3-f.akamaihd.net/orf2_1_800@45502&file=http://gartenhoflive3-f.akamaihd.net/orf2_1_800@45502&type=video&autostart=true[/URL]
Sport1 de 
[URL]http://www.freeetv.com/script/mediaplayer/player.swf?streamer=http://gartenhoflive5-f.akamaihd.net/sport1_1_800@45517&file=http://gartenhoflive5-f.akamaihd.net/sport1_1_800@45517&type=video&autostart=true[/URL]
Eurosport 
[URL]http://www.freeetv.com/script/mediaplayer/player.swf?streamer=http://gartenhoflive5-f.akamaihd.net/eurosport_1_800@45515&file=http://gartenhoflive5-f.akamaihd.net/eurosport_1_800@45515&type=video&autostart=true[/URL]
RTL 
[URL]http://www.freeetv.com/script/mediaplayer/player.swf?streamer=http://gartenhof.live1-f.akamaihd.net/rtl_1_800@43050&file=http://gartenhof.live1-f.akamaihd.net/rtl_1_800@43050&type=video&autostart=true[/URL]
RTL 2 
[URL]http://www.freeetv.com/script/mediaplayer/player.swf?streamer=http://gartenhof.live1-f.akamaihd.net/rtl2_1_800@43053&file=http://gartenhof.live1-f.akamaihd.net/rtl2_1_800@43053&type=video&autostart=true[/URL]
NICK/COMEDY CENTRAL 
[URL]http://www.freeetv.com/script/mediaplayer/player.swf?streamer=http://gartenhoflive5-f.akamaihd.net/nick_cc_1_800@45519&file=http://gartenhoflive5-f.akamaihd.net/nick_cc_1_800@45519.flv&type=video&autostart=true[/URL]
Kabel1 
[URL]http://www.freeetv.com/script/mediaplayer/player.swf?streamer=http://gartenhof.live1-f.akamaihd.net/kabel1_1_800@43055&file=http://gartenhof.live1-f.akamaihd.net/kabel1_1_800@43055&type=video&autostart=true[/URL]
Pro7 
[URL]http://www.freeetv.com/script/mediaplayer/player.swf?streamer=http://gartenhof.live1-f.akamaihd.net/pro7_1_800@43051&file=http://gartenhof.live1-f.akamaihd.net/pro7_1_800@43051&type=video&autostart=true[/URL]
SF 1 
[URL]http://www.freeetv.com/script/mediaplayer/player.swf?streamer=http://gartenhof.live1-f.akamaihd.net/sf1_1_800@43046&file=http://gartenhof.live1-f.akamaihd.net/sf1_1_800@43046&type=video&autostart=true[/URL]
SF 2 
[URL]http://www.freeetv.com/script/mediaplayer/player.swf?streamer=http://gartenhof.live1-f.akamaihd.net/sf2_1_800@43048&file=http://gartenhof.live1-f.akamaihd.net/sf2_1_800@43048&type=video&autostart=true[/URL]
SF INFO 
[URL]http://www.freeetv.com/script/mediaplayer/player.swf?streamer=http://gartenhoflive4-f.akamaihd.net/sfinfo_1_800@45505&file=http://gartenhoflive4-f.akamaihd.net/sfinfo_1_800@45505&type=video&autostart=true[/URL]
ARD - Das Erste 
[URL]http://www.freeetv.com/script/mediaplayer/player.swf?streamer=http://gartenhoflive2-f.akamaihd.net/ard_1_800@45494&file=http://gartenhoflive2-f.akamaihd.net/ard_1_800@45494&type=video&autostart=true[/URL]
ZDF 
[URL]http://www.freeetv.com/script/mediaplayer/player.swf?streamer=http://gartenhoflive4-f.akamaihd.net/zdf_1_800@45509&file=http://gartenhoflive4-f.akamaihd.net/zdf_1_800@45509&type=video&autostart=true[/URL]
ZDF NEO 
[URL]http://www.freeetv.com/script/mediaplayer/player.swf?streamer=http://gartenhoflive2-f.akamaihd.net/zdfneo_1_800@44504&file=http://gartenhoflive2-f.akamaihd.net/zdfneo_1_800@44504&type=video&autostart=true[/URL]
TELE ZURI 
[URL]http://www.freeetv.com/script/mediaplayer/player.swf?streamer=http://gartenhoflive2-f.akamaihd.net/telezueri_1_800@44503&file=http://gartenhoflive2-f.akamaihd.net/telezueri_1_800@44503&type=video&autostart=true[/URL]
ARTE 
[URL]http://www.freeetv.com/script/mediaplayer/player.swf?streamer=http://gartenhoflive3-f.akamaihd.net/arte_1_800@45495&file=http://gartenhoflive3-f.akamaihd.net/arte_1_800@45495&type=video&autostart=true[/URL]
Sat1 
[URL]http://www.freeetv.com/script/mediaplayer/player.swf?streamer=http://gartenhoflive2-f.akamaihd.net/sat1_1_800@44490&file=http://gartenhoflive2-f.akamaihd.net/sat1_1_800@44490&type=video&autostart=true[/URL]
3 SAT 
[URL]http://www.freeetv.com/script/mediaplayer/player.swf?streamer=http://gartenhoflive2-f.akamaihd.net/3sat_1_800@45493&file=http://gartenhoflive2-f.akamaihd.net/3sat_1_800@45493&type=video&autostart=true[/URL]
VOX 
[URL]http://www.freeetv.com/script/mediaplayer/player.swf?streamer=http://gartenhof.live1-f.akamaihd.net/vox_1_800@43052&file=http://gartenhof.live1-f.akamaihd.net/vox_1_800@43052&type=video&autostart=true[/URL]
Super RTL 
[URL]http://www.freeetv.com/script/mediaplayer/player.swf?streamer=http://gartenhoflive2-f.akamaihd.net/superrtl_1_800@44489&file=http://gartenhoflive2-f.akamaihd.net/superrtl_1_800@44489&type=video&autostart=true[/URL]
NICK/VIVA 
[URL]http://www.freeetv.com/script/mediaplayer/player.swf?streamer=http://gartenhoflive4-f.akamaihd.net/viva_1_800@45507&file=http://gartenhoflive4-f.akamaihd.net/viva_1_800@45507&type=video&autostart=true[/URL]
STAR TV 
[URL]http://www.freeetv.com/script/mediaplayer/player.swf?streamer=http://gartenhoflive6-f.akamaihd.net/startv_1_800@45526&file=http://gartenhoflive6-f.akamaihd.net/startv_1_800@45526&type=video&autostart=true[/URL]
KIKA 
[URL]http://www.freeetv.com/script/mediaplayer/player.swf?streamer=http://gartenhoflive3-f.akamaihd.net/kika_1_800@45500&file=http://gartenhoflive3-f.akamaihd.net/kika_1_800@45500&type=video&autostart=true(http://www.freeetv.com/script/mediap...htcolor=66FF66[/URL]) 
SIXX 
[URL]http://www.freeetv.com/script/mediaplayer/player.swf?streamer=http://gartenhoflive5-f.akamaihd.net/sixx_1_800@45516&file=http://gartenhoflive5-f.akamaihd.net/sixx_1_800@45516&type=video&autostart=true[/URL]
DMAX 
[URL]http://www.freeetv.com/script/mediaplayer/player.swf?streamer=http://gartenhoflive3-f.akamaihd.net/dmax_1_800@45498&file=http://gartenhoflive3-f.akamaihd.net/dmax_1_800@45498&type=video&autostart=true[/URL]
n-tv 
[URL]http://www.freeetv.com/script/mediaplayer/player.swf?streamer=http://gartenhoflive6-f.akamaihd.net/ntv_1_800@45520&file=http://gartenhoflive6-f.akamaihd.net/ntv_1_800@45520&type=video&autostart=true[/URL]
Das Vierte 
[URL]http://www.freeetv.com/script/mediaplayer/player.swf?streamer=http://gartenhoflive4-f.akamaihd.net/dasvierte_1_800@45510&file=http://gartenhoflive4-f.akamaihd.net/dasvierte_1_800@45510&type=video&autostart=true[/URL]
TSR 1 
[URL]http://www.freeetv.com/script/mediaplayer/player.swf?streamer=http://gartenhoflive6-f.akamaihd.net/tsr1_1_800@45522&file=http://gartenhoflive6-f.akamaihd.net/tsr1_1_800@45522&type=video&autostart=true[/URL]
TSR 2 
[URL]http://www.freeetv.com/script/mediaplayer/player.swf?streamer=http://gartenhoflive6-f.akamaihd.net/tsr2_1_800@45523&file=http://gartenhoflive6-f.akamaihd.net/tsr2_1_800@45523&type=video&autostart=true[/URL]
TV5 Monde 
[URL]http://www.freeetv.com/script/mediaplayer/player.swf?streamer=http://gartenhoflive5-f.akamaihd.net/tv5monde_1_800@45511&file=http://gartenhoflive5-f.akamaihd.net/tv5monde_1_800@45511&type=video&autostart=true[/URL]
FRANCE 2 
[URL]http://www.freeetv.com/script/mediaplayer/player.swf?streamer=http://gartenhoflive3-f.akamaihd.net/france2_1_800@45496&file=http://gartenhoflive3-f.akamaihd.net/france2_1_800@45496&type=video&autostart=true[/URL]
FRANCE 3 
[URL]http://www.freeetv.com/script/mediaplayer/player.swf?streamer=http://gartenhoflive3-f.akamaihd.net/france3_1_800@45499&file=http://gartenhoflive3-f.akamaihd.net/france3_1_800@45499&type=video&autostart=true[/URL]
FRANCE 5 
[URL]http://www.freeetv.com/script/mediaplayer/player.swf?streamer=http://gartenhoflive3-f.akamaihd.net/france5_1_800@45501&file=http://gartenhoflive3-f.akamaihd.net/france5_1_800@45501&type=video&autostart=true[/URL]
RTL 9 
[URL]http://www.freeetv.com/script/mediaplayer/player.swf?streamer=http://gartenhoflive4-f.akamaihd.net/rtl9_1_800@45503&file=http://gartenhoflive4-f.akamaihd.net/rtl9_1_800@45503&type=video&autostart=true[/URL]
TF 1 
[URL]http://www.freeetv.com/script/mediaplayer/player.swf?streamer=http://gartenhoflive4-f.akamaihd.net/tf1_1_800@45504&file=http://gartenhoflive4-f.akamaihd.net/tf1_1_800@45504&type=video&autostart=true[/URL]
M6 
[URL]http://www.freeetv.com/script/mediaplayer/player.swf?streamer=http://gartenhoflive4-f.akamaihd.net/m6_1_800@45506&file=http://gartenhoflive4-f.akamaihd.net/m6_1_800@45506&type=video&autostart=true[/URL]
RSI LA 1 
[URL]http://www.freeetv.com/script/mediaplayer/player.swf?streamer=http://gartenhoflive5-f.akamaihd.net/rsila1_1_800@45513&file=http://gartenhoflive5-f.akamaihd.net/rsila1_1_800@45513&type=video&autostart=true[/URL]
RSI LA 2 
[URL]http://www.freeetv.com/script/mediaplayer/player.swf?streamer=http://gartenhoflive5-f.akamaihd.net/rsila2_1_800@45514&file=http://gartenhoflive5-f.akamaihd.net/rsila2_1_800@45514&type=video&autostart=true[/URL]
Rai1 
[URL]http://www.freeetv.com/script/mediaplayer/player.swf?streamer=http://gartenhoflive2-f.akamaihd.net/rai1_1_800@44470&file=http://gartenhoflive2-f.akamaihd.net/rai1_1_800@44470&type=video&autostart=true[/URL]
VIVA 
[URL]http://www.freeetv.com/script/mediaplayer/player.swf?streamer=http://gartenhoflive6-f.akamaihd.net/viva_1_800@46087&file=http://gartenhoflive6-f.akamaihd.net/viva_1_800@46087&type=video&autostart=true&stretching=exactfit&backcolor=700211&frontcolor=FFFFFF&lightcolor=66FF66[/URL] [URL="http://www.megaupload.com/?d=JAUUFFP3"][COLOR=#810081]http://www.megaupload.com/?d=JAUUFFP3[/COLOR][/URL]Alex a i za sve vas ovako mozete isto da gledate Njemacke Austrijanske Svicarske Francuske Italijanske Engleske programe
Link za skidanje sa Mozilla Firefox portable sa ubacenim Proxiem i svim kanalima od WILMAA TV.
Radi odlicno bez seckanja. Otvorite mozillu portable videcete WILMAA TV TAB
Kod:[URL="http://www.megaupload.com/?d=JAUUFFP3"][COLOR=#810081]http://www.megaupload.com/?d=JAUUFFP3[/COLOR][/URL]
Pozdrav
Alex a i za sve vas ovako mozete isto da gledate Njemacke Austrijanske Svicarske Francuske Italijanske Engleske programe
Link za skidanje sa Mozilla Firefox portable sa ubacenim Proxiem i svim kanalima od WILMAA TV.
Radi odlicno bez seckanja. Otvorite mozillu portable videcete WILMAA TV TAB
Kod:[URL="http://www.megaupload.com/?d=JAUUFFP3"][COLOR=#810081]http://www.megaupload.com/?d=JAUUFFP3[/COLOR][/URL]
Pozdrav
#"Video stream not found"
Na koji nacin se ovo gleda?
#
uradi to stosam ja gore napisao i radiceti sve
Downloaduj ovo:"Video stream not found"
Na koji nacin se ovo gleda?
 [URL]http://www.megaupload.com/?d=JAUUFFP3[/URL]