Index: /trunk/setup/rulessetup.nsi =================================================================== --- /trunk/setup/rulessetup.nsi (revision 79) +++ /trunk/setup/rulessetup.nsi (revision 84) @@ -1,5 +1,5 @@ SetCompressor zlib -!define VERSION "0.95" +!define VERSION "0.96" Name "rulesPlayer ${VERSION}" OutFile "rulessetup.exe" @@ -39,6 +39,7 @@ Var mplayer_version Var fatalerrors - -UninstallText "Uninstaller will remove any file in the rulesPlayer directory (really)!" "Uninstalling from:" +Var tvtool + +UninstallText "Uninstaller will remove the rulesPlayer directory (really)! Also if you registered some files with rulesPlayer you may wish to unregister them prior to uninstalling." "Uninstalling from:" Function .onInit @@ -150,5 +151,5 @@ Abort done: - SectionSetText 4 $mplayer_section + SectionSetText 5 $mplayer_section FunctionEnd @@ -170,4 +171,9 @@ File ".\rulesPlayer\config.kfg" SetOverwrite on +SectionEnd + +Section "Install TV tool" + StrCpy $tvtool "1" + File /r ".\rulesPlayer\tv" SectionEnd @@ -244,4 +250,8 @@ CreateShortCut "$SMPROGRAMS\rulesPlayer\faq.lnk" "$INSTDIR\faq.txt" "" "$INSTDIR\faq.txt" 0 done: + StrCmp $tvtool "1" eq2 done2 + eq2: + CreateShortCut "$SMPROGRAMS\rulesPlayer\tv tool.lnk" "$INSTDIR\tv" "" "$INSTDIR\tv" 0 + done2: SectionEnd Index: /trunk/src/player/contextmenu.kfg =================================================================== --- /trunk/src/player/contextmenu.kfg (revision 79) +++ /trunk/src/player/contextmenu.kfg (revision 84) @@ -2,4 +2,6 @@ menuitem $#30 @open menuitem $#105 @openurl + menu_playdvd $#5015 + menu_recent $#5118 menuitem $#31 @close menuseparator @@ -22,4 +24,8 @@ menuend menuseparator + menu_dvd $#8 + menu_subtrack $#106 + menu_audiotrack $#107 + menuseparator menuitem $#5119 @info menuitem $#5120 @about Index: /trunk/src/player/expmenu/EXPMENU.C =================================================================== --- /trunk/src/player/expmenu/EXPMENU.C (revision 84) +++ /trunk/src/player/expmenu/EXPMENU.C (revision 84) @@ -0,0 +1,301 @@ +//*************************************************************************** +// +// ExpMenu.c +// +//*************************************************************************** + +//http://www.microsoft.com/msj/0497/wicked/wicked0497.aspx + +#include +#include +#include + +UINT GetItemCount (LPITEMIDLIST); +LPITEMIDLIST GetNextItem (LPITEMIDLIST); +LPITEMIDLIST DuplicateItem (LPMALLOC, LPITEMIDLIST); + + +BOOL WINAPI DllMain( + HINSTANCE hinstDLL, + DWORD fdwReason, + LPVOID lpvReserved +) +{ + return TRUE; +} + + + +///////////////////////////////////////////////////////////////////////////// +// Context menu functions + +//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +// +// FUNCTION: DoExplorerMenu +// +// DESCRIPTION: Given a path name to a file or folder object, displays +// the shell's context menu for that object and executes +// the menu command (if any) selected by the user. +// +// INPUT: hwnd = Handle of the window in which the menu will be +// displayed. +// +// pszPath = Pointer to an ANSI or Unicode string +// specifying the path to the object. +// +// point = x and y coordinates of the point where the +// menu's upper left corner should be located, in +// client coordinates relative to hwnd. +// +// RETURNS: TRUE if successful, FALSE if not. +// +//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +__declspec( dllexport ) BOOL DoExplorerMenu (HWND hwnd, LPCTSTR pszPath, POINT point) +{ + LPMALLOC pMalloc; + LPSHELLFOLDER psfFolder, psfNextFolder; + LPITEMIDLIST pidlMain, pidlItem, pidlNextItem, *ppidl; + LPCONTEXTMENU pContextMenu; + CMINVOKECOMMANDINFO ici; + ULONG ulCount, ulAttr; + TCHAR tchPath[MAX_PATH]; + WCHAR wchPath[MAX_PATH]; + UINT nCount, nCmd; + BOOL bResult; + HMENU hMenu; + + // + // Make sure the file name is fully qualified and in Unicode format. + // + GetFullPathName (pszPath, sizeof (tchPath) / sizeof (TCHAR), tchPath, + NULL); + + if (IsTextUnicode (tchPath, lstrlen (tchPath), NULL)) + lstrcpy ((char *) wchPath, tchPath); + else + MultiByteToWideChar (CP_ACP, 0, pszPath, -1, wchPath, + sizeof (wchPath) / sizeof (WCHAR)); + + // + // Get pointers to the shell's IMalloc interface and the desktop's + // IShellFolder interface. + // + bResult = FALSE; + + if (!SUCCEEDED (SHGetMalloc (&pMalloc))) + return bResult; + + if (!SUCCEEDED (SHGetDesktopFolder (&psfFolder))) { + pMalloc->lpVtbl->Release (pMalloc); + return bResult; + } + + // + // Convert the path name into a pointer to an item ID list (pidl). + // + if (SUCCEEDED (psfFolder->lpVtbl->ParseDisplayName (psfFolder, hwnd, + NULL, wchPath, &ulCount, &pidlMain, &ulAttr)) && (pidlMain != NULL)) { + + if (nCount = GetItemCount (pidlMain)) { // nCount must be > 0 + // + // Initialize psfFolder with a pointer to the IShellFolder + // interface of the folder that contains the item whose context + // menu we're after, and initialize pidlItem with a pointer to + // the item's item ID. If nCount > 1, this requires us to walk + // the list of item IDs stored in pidlMain and bind to each + // subfolder referenced in the list. + // + pidlItem = pidlMain; + + while (--nCount) { + // + // Create a 1-item item ID list for the next item in pidlMain. + // + pidlNextItem = DuplicateItem (pMalloc, pidlItem); + if (pidlNextItem == NULL) { + pMalloc->lpVtbl->Free (pMalloc, pidlMain); + psfFolder->lpVtbl->Release (psfFolder); + pMalloc->lpVtbl->Release (pMalloc); + return bResult; + } + + // + // Bind to the folder specified in the new item ID list. + // + if (!SUCCEEDED (psfFolder->lpVtbl->BindToObject (psfFolder, + pidlNextItem, NULL, &IID_IShellFolder, &psfNextFolder))) { + pMalloc->lpVtbl->Free (pMalloc, pidlNextItem); + pMalloc->lpVtbl->Free (pMalloc, pidlMain); + psfFolder->lpVtbl->Release (psfFolder); + pMalloc->lpVtbl->Release (pMalloc); + return bResult; + } + + // + // Release the IShellFolder pointer to the parent folder + // and set psfFolder equal to the IShellFolder pointer for + // the current folder. + // + psfFolder->lpVtbl->Release (psfFolder); + psfFolder = psfNextFolder; + + // + // Release the storage for the 1-item item ID list we created + // just a moment ago and initialize pidlItem so that it points + // to the next item in pidlMain. + // + pMalloc->lpVtbl->Free (pMalloc, pidlNextItem); + pidlItem = GetNextItem (pidlItem); + } + + // + // Get a pointer to the item's IContextMenu interface and call + // IContextMenu::QueryContextMenu to initialize a context menu. + // + ppidl = &pidlItem; + if (SUCCEEDED (psfFolder->lpVtbl->GetUIObjectOf (psfFolder, + hwnd, 1, ppidl, &IID_IContextMenu, NULL, &pContextMenu))) { + + + hMenu = CreatePopupMenu (); + if (SUCCEEDED (pContextMenu->lpVtbl->QueryContextMenu ( + pContextMenu, hMenu, 0, 1, 0x7FFF, CMF_EXPLORE))) { + + ClientToScreen (hwnd, &point); + + // + // Display the context menu. + // + nCmd = TrackPopupMenu (hMenu, TPM_LEFTALIGN | + TPM_LEFTBUTTON | TPM_RIGHTBUTTON | TPM_RETURNCMD, + point.x, point.y, 0, hwnd, NULL); + + // + // If a command was selected from the menu, execute it. + // + if (nCmd) { + ici.cbSize = sizeof (CMINVOKECOMMANDINFO); + ici.fMask = 0; + ici.hwnd = hwnd; + ici.lpVerb = MAKEINTRESOURCE (nCmd - 1); + ici.lpParameters = NULL; + ici.lpDirectory = NULL; + ici.nShow = SW_SHOWNORMAL; + ici.dwHotKey = 0; + ici.hIcon = NULL; + + if (SUCCEEDED ( + pContextMenu->lpVtbl->InvokeCommand ( + pContextMenu, &ici))) + bResult = TRUE; + } + } + DestroyMenu (hMenu); + pContextMenu->lpVtbl->Release (pContextMenu); + } + } + pMalloc->lpVtbl->Free (pMalloc, pidlMain); + } + + // + // Clean up and return. + // + psfFolder->lpVtbl->Release (psfFolder); + pMalloc->lpVtbl->Release (pMalloc); + + return bResult; +} + +//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +// +// FUNCTION: GetItemCount +// +// DESCRIPTION: Computes the number of item IDs in an item ID list. +// +// INPUT: pidl = Pointer to an item ID list. +// +// RETURNS: Number of item IDs in the list. +// +//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +UINT GetItemCount (LPITEMIDLIST pidl) +{ + USHORT nLen; + UINT nCount; + + nCount = 0; + while ((nLen = pidl->mkid.cb) != 0) { + pidl = GetNextItem (pidl); + nCount++; + } + return nCount; +} + +//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +// +// FUNCTION: GetNextItem +// +// DESCRIPTION: Finds the next item in an item ID list. +// +// INPUT: pidl = Pointer to an item ID list. +// +// RETURNS: Pointer to the next item. +// +//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +LPITEMIDLIST GetNextItem (LPITEMIDLIST pidl) +{ + USHORT nLen; + + if ((nLen = pidl->mkid.cb) == 0) + return NULL; + + return (LPITEMIDLIST) (((LPBYTE) pidl) + nLen); +} + +//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +// +// FUNCTION: DuplicateItem +// +// DESCRIPTION: Makes a copy of the next item in an item ID list. +// +// INPUT: pMalloc = Pointer to an IMalloc interface. +// pidl = Pointer to an item ID list. +// +// RETURNS: Pointer to an ITEMIDLIST containing the copied item ID. +// +// NOTES: It is the caller's responsibility to free the memory +// allocated by this function when the item ID is no longer +// needed. Example: +// +// pidlItem = DuplicateItem (pMalloc, pidl); +// . +// . +// . +// pMalloc->lpVtbl->Free (pMalloc, pidlItem); +// +// Failure to free the ITEMIDLIST will result in memory +// leaks. +// +//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +LPITEMIDLIST DuplicateItem (LPMALLOC pMalloc, LPITEMIDLIST pidl) +{ + USHORT nLen; + LPITEMIDLIST pidlNew; + + nLen = pidl->mkid.cb; + if (nLen == 0) + return NULL; + + pidlNew = (LPITEMIDLIST) pMalloc->lpVtbl->Alloc (pMalloc, + nLen + sizeof (USHORT)); + if (pidlNew == NULL) + return NULL; + + CopyMemory (pidlNew, pidl, nLen); + *((USHORT*) (((LPBYTE) pidlNew) + nLen)) = 0; + + return pidlNew; +} Index: /trunk/src/player/expmenu/EXPMENU.vcproj =================================================================== --- /trunk/src/player/expmenu/EXPMENU.vcproj (revision 84) +++ /trunk/src/player/expmenu/EXPMENU.vcproj (revision 84) @@ -0,0 +1,220 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Index: /trunk/src/player/expmenu/EXPMENU.sln =================================================================== --- /trunk/src/player/expmenu/EXPMENU.sln (revision 84) +++ /trunk/src/player/expmenu/EXPMENU.sln (revision 84) @@ -0,0 +1,20 @@ + +Microsoft Visual Studio Solution File, Format Version 9.00 +# Visual C++ Express 2005 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "EXPMENU", "EXPMENU.vcproj", "{13A5F052-6242-4B2F-820B-3FD9359DF5DC}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Win32 = Debug|Win32 + Release|Win32 = Release|Win32 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {13A5F052-6242-4B2F-820B-3FD9359DF5DC}.Debug|Win32.ActiveCfg = Debug|Win32 + {13A5F052-6242-4B2F-820B-3FD9359DF5DC}.Debug|Win32.Build.0 = Debug|Win32 + {13A5F052-6242-4B2F-820B-3FD9359DF5DC}.Release|Win32.ActiveCfg = Release|Win32 + {13A5F052-6242-4B2F-820B-3FD9359DF5DC}.Release|Win32.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal Index: /trunk/src/player/playlist.d =================================================================== --- /trunk/src/player/playlist.d (revision 78) +++ /trunk/src/player/playlist.d (revision 84) @@ -74,6 +74,8 @@ } - void add(char[][] f,int i=-1,int dump=0) - { + void add(char[][] f,char[][] titles=null,int i=-1,int dump=0) + { + int ll=files.length; + if(f.length) files.length=files.length+f.length; foreach(int ii,char[] a;f) { @@ -84,19 +86,22 @@ else { - if(getDrive(a).length>2) t=a.dup; + if(ii2) t=a; else t=getBaseName(a); } item=new TableItem(playlist, DWT.NONE); - item.setText(paramMake(cast(int)(files.length)+1,t)); + item.setText(paramMake(cast(int)(ll)+1,t)); ff.isdvd=0; ff.fullpath=a.dup; ff.name=t.dup; - ff.index=files.length; + ff.index=ll; ff.dump=dump; - files~=ff; + files[ll++]=ff; } if(autoplay && files.length && current==-1) {play(0);} - onsize(1); - } + if(!loadingplaylist) onsize(1); + } + + int loadingplaylist=0; void hl(int i) @@ -222,6 +227,9 @@ else file=f[0]; } + loadingplaylist=1; theapp.config.exec(file); - if(autoplay && theapp.player.status!=theapp.player.PLAY && theapp.player.status!=theapp.player.PAUSE) playcurrent(); + loadingplaylist=0; + onsize(1); + //if(autoplay && theapp.player.status!=theapp.player.PLAY && theapp.player.status!=theapp.player.PAUSE) playcurrent(); } @@ -240,6 +248,6 @@ foreach(a;files) { - if(!a.isdvd) str=("pladd \""~replace(replace(a.fullpath,"\"","\\\""),"$","$$")~"\"\n"); - else str=("pladddvd \""~replace(replace(a.fullpath,"\"","\\\""),"$","$$")~'"'~" "~.toString(a.title)~" "~.toString(a.chapter)~" "~.toString(a.angle)~"\n"); + if(!a.isdvd) str=("pladd2 \""~replace(replace(replace(replace(replace(a.name,"\\","\\\\"),"\t","\\t"),"\n","\\n"),"\"","\\\""),"$","$$")~"\" \""~replace(replace(replace(replace(replace(a.fullpath,"\\","\\\\"),"\t","\\t"),"\n","\\n"),"\"","\\\""),"$","$$")~"\"\n"); + else str=("pladddvd \""~replace(replace(replace(replace(replace(a.fullpath,"\\","\\\\"),"\t","\\t"),"\n","\\n"),"\"","\\\""),"$","$$")~'"'~" "~.toString(a.title)~" "~.toString(a.chapter)~" "~.toString(a.angle)~"\n"); f.writeExact(str.ptr,str.length); } @@ -311,5 +319,5 @@ filess~=*c; } - if(filess.length) add(filess,current+1); + if(filess.length) add(filess,null,current+1); } @@ -497,5 +505,5 @@ if(!a.length) return; table.remove(a); - for(int c=0;c=0;c--) TArray!(plfile).deleteItems(theapp.playlist.files,a[c],1); for(int c=0;c=0) initial=theapp.playlist.files[theapp.playlist.current].name; + input.setText(initial); + input.setSelection(0,initial.length); + input.setLayoutData(gridData1); + input.handleEvent (this,DWT.Modify, delegate(Event e){(cast(plsearch)e.cData).update();}); + /*input.handleEvent (this,DWT.KeyDown, delegate (Event e) { + auto s=(cast(plsearch)e.cData); + auto i=s.list.getSelectionIndex(); + if(i==0 || i+1>=s.list.getItemCount()) return; + if(e.keyCode==DWT.ARROW_UP) s.list.setSelection(i-1,i-1); + else if(e.keyCode==DWT.ARROW_DOWN) s.list.setSelection(i+1,i+1); + })*/; + list = new List(sShell, DWT.BORDER|DWT.V_SCROLL|DWT.SINGLE); + /*list.handleEvent (this,DWT.MouseDoubleClick, delegate (Event e){ + auto s=(cast(plsearch)e.cData); + auto i=s.list.getItem(new Point(e.x,e.y)); + s.list.setSelection(i,i); + });*/ + list.setLayoutData(gridData11); + cancel = new Button(sShell, DWT.NONE); + cancel.setText(theapp.getString(72)); + cancel.setLayoutData(gridData4); + cancel.handleEvent (this,DWT.Selection, &oncancel); + ok = new Button(sShell, DWT.NONE); + ok.setText(theapp.getString(73)); + ok.setLayoutData(gridData3); + ok.handleEvent (this,DWT.Selection, &onok); + Rectangle bounds = display.getPrimaryMonitor().getBounds (); + Rectangle rect = sShell.getBounds (); + int x = bounds.x + (bounds.width - rect.width) / 2; + int y = bounds.y + (bounds.height - rect.height) / 2; + sShell.setLocation (x, y); + sShell.setDefaultButton(cancel); + sShell.open(); + if(initial.length) update(); + while(!sShell.isDisposed()) if(!display.readAndDispatch()) display.sleep(); + return index; + } + + void update() + { + list.removeAll(); + indices=null; + int ok=0; + char[][] a=parseCommandLine(input.getText()); + int last=0; + for(int c=0;c=0) + { + ok=1; + indices[last++]=theapp.playlist.files[c].index; + list.add(theapp.playlist.files[c].name); + break; + } + } + } + if(ok) list.setSelection(0,0); + } + + void onok(Event e) + { + sShell.close(); + } + + void oncancel(Event e) + { + index=list.getSelectionIndex(); + if(index>=0) index=indices[index]; + sShell.close(); + } +} Index: /trunk/src/player/console.d =================================================================== --- /trunk/src/player/console.d (revision 79) +++ /trunk/src/player/console.d (revision 84) @@ -1,12 +1,14 @@ -private import dwt.all; -private import app; -private import config; -private import player; -private import std.string; -private import std.ctype; -private import std.path; -private import std.file; -private import common; -private import ak.core; +import dwt.all; +import app; +import config; +import player; +import std.string; +import std.ctype; +import std.path; +import std.file; +import common; +import playlist; +import ak.core; +import std.c.windows.windows; class Console : Composite @@ -26,8 +28,9 @@ Menu[] menus; MenuItem[] menuitems; + int[] sharedmenuitems; Menu lastmenu; char[][] autocomplete; char[] autocompleteprefix; - static char[][] cmdlist=["about","alias","aliaslist","bind","bindlist","dec","decf","echo","exec","eval","errors","exit","clear","clearhistory","close","freemem","getinput","help","inc","incf","info","menubegin","menuend","menuitem","menuseparator","mpcmd","open","openaudio","openurl","pladd","pladddvd","pladdurl","playorpause","plclear","plload","plnext","plprev","plsave","plsort","recentadd","recentdel","recentclear","registerext","reset","resetall","say","set","sethelp","setimage","setstring","speed_inc","speed_dec","stop","toggle","unalias","unaliasall","unbind","unbindall","updateui","unregisterext","unset","unsetall","varlist","write","yell","zoom"]; + static char[][] cmdlist=["about","alias","aliaslist","bind","bindlist","dec","decf","echo","exec","eval","errors","exit","clear","clearhistory","close","freemem","getinput","help","inc","incf","info","menu_audiotrack","menu_dvd","menu_language","menu_playdvd","menu_recent","menu_subtrack","menu_system","menubegin","menuend","menuitem","menuseparator","mpcmd","open","openaudio","openurl","pladd","pladd2","pladddvd","pladdurl","pladdurl2","playorpause","plclear","plload","plnext","plprev","plsave","plsearch","plsort","recentadd","recentdel","recentclear","registerext","reset","resetall","say","set","sethelp","setimage","setstring","speed_inc","speed_dec","stop","toggle","unalias","unaliasall","unbind","unbindall","updateui","unregisterext","unset","unsetall","varlist","write","yell","zoom"]; void append(char[] line,int internal=1) @@ -45,7 +48,4 @@ if(!line.length) return; if(line.length>=2 && line[0..2]=="//") return; - int ls=0; - if(line[0]=='@') {showline=0;ls++;} - if(line.length-ls<=0) return; if(trackhistory) { @@ -53,5 +53,5 @@ currentline=pastlines.length; } - char[][] acmd=parseCommandLine(line[ls..line.length]); + char[][] acmd=parseCommandLine(line); char[][][] ar; int last=0; @@ -62,8 +62,11 @@ } if(last"~std.string.join(cmd," ")); @@ -259,10 +262,10 @@ else if(p0hash==hash!("about")) { - static char[] text=appname~" "~appversion~"\nbobef license: use without restrictions at your own risk\nhome: http://rulesplayer.lessequal.com\n\ncontributors (alphabetical):\n\tBen Laufer\n\tStefan Teodorescu\n\tTod\n\t...and everybody who's name is missing here\t\n\nsoftware used:\n\tMPlayer - www.mplayer.hq\n\tMPUI - mpui.sourceforge.net\n\tRegan Heath - pipestream library\n\tDWT - www.dsource.org/projects/dwt\n\tD - www.digitalmars.com/d\n\tCrystal icons - www.everaldo.com\n\tXN resource editor - www.wilsonc.demon.co.uk\n\ticon sushi - www.towofu.net/soft\n\takide - www.lessequal.com/software/akide\n\tEclipse Visual Editor - www.eclipse.org/vep"; + static char[] text=appname~" "~appversion~"\nbobef license: use without restrictions at your own risk\nhome: http://rulesplayer.lessequal.com\n\ncontributors (alphabetical):\n\tBen Laufer\n\tcracksloth\n\tStefan Teodorescu\n\tTod\n\t...and everybody who's name is missing here\t\n\nsoftware used:\n\tMPlayer - www.mplayer.hq\n\tMPUI - mpui.sourceforge.net\n\tpipestream library - Regan Heath\n\tDWT - www.dsource.org/projects/dwt\n\tD - www.digitalmars.com/d\n\tCrystal icons - www.everaldo.com\n\tXN resource editor - www.wilsonc.demon.co.uk\n\ticon sushi - www.towofu.net/soft\n\takide - www.lessequal.com/software/akide\n\tEclipse Visual Editor - www.eclipse.org/vep"; msgBox(text,"About rulesPlayer",DWT.ICON_INFORMATION); } else if(p0hash==hash!("info")) { - if(!(theapp.player.proc && theapp.player.proc.isRunning())) return; + if(!(theapp.player.proc && theapp.player.proc.isRunning())) {append(theapp.getString(110));return;} char[][] text; text~=theapp.getString(91)~": "~theapp.player.info.filename; @@ -294,4 +297,27 @@ else theapp.playlist.add(params[1..params.length]); } + else if(p0hash==hash!("pladd2")) + { + char[][] titles; + char[][] files; + if(params.length<2) + { + auto i=new inputrequest; + indialog=1; + char[] title=i.create(theapp.getString(113),0); + indialog=0; + if(title.length) titles~=title; + } + else titles~=params[1]; + if(params.length<3) + { + indialog=1; + files=dxFileDialog.open(theapp.getString(99),DWT.OPEN,theapp.filtera,theapp.filterb); + indialog=0; + } + else files~=params[2]; + if(!files.length || !titles.length) {append(theapp.getString(13,paramMake(params[0])));return;} + else theapp.playlist.add(files,titles); + } else if(p0hash==hash!("pladddvd")) { @@ -308,7 +334,42 @@ files~=i.create(theapp.getString(22)); indialog=0; - if(files.length && files[0].length) theapp.playlist.add(files,-1,i.dmp); + if(files.length && files[0].length) theapp.playlist.add(files,null,-1,i.dmp); } else theapp.playlist.add(params[1..params.length]); + } + else if(p0hash==hash!("pladdurl2")) + { + char[][] titles; + char[][] files; + int dmp=0; + if(params.length<2) + { + auto i=new inputrequest; + indialog=1; + char[] title=i.create(theapp.getString(113),0); + indialog=0; + if(title.length) titles~=title; + } + else titles~=params[1]; + if(params.length<3) + { + auto i=new inputrequest; + indialog=1; + char[] file=i.create(theapp.getString(22)); + indialog=0; + if(file.length) files~=file; + dmp=i.dmp; + } + else files~=params[2]; + if(!files.length || !titles.length) {append(theapp.getString(13,paramMake(params[0])));return;} + else theapp.playlist.add(files,titles,-1,dmp); + } + else if(p0hash==hash!("plsearch")) + { + auto i=new plsearch; + indialog=1; + int r=i.create(params.length>1?params[1]:null); + indialog=0; + if(r>=0) theapp.playlist.play(r); } else if(p0hash==hash!("errors")) errors(params.length<2 || atoi(params[1])); @@ -367,11 +428,46 @@ if(theapp.iscomp) { - menus[0].handleEvent (this,DWT.Dispose, delegate (Event e) {theapp.showcursor(0);}); + menus[0].handleEvent (this,DWT.Hide, delegate (Event e) {theapp.showcursor(0);}); theapp.showcursor(1); } + menus[0].handleEvent (this,DWT.Hide, delegate (Event e) {foreach(i;theapp.console.sharedmenuitems) theapp.console.menuitems[i].setMenu(null); theapp.console.sharedmenuitems=null;}); menus[0].setLocation(display.getCursorLocation()); menus[0].setVisible(true); menustarted=0; } + } + else if(p0hash==hash!("menu_dvd") || p0hash==hash!("menu_recent") || p0hash==hash!("menu_playdvd") || p0hash==hash!("menu_audiotrack") || p0hash==hash!("menu_subtrack") || p0hash==hash!("menu_language")) + { + if(!menustarted || !lastmenu) {append(theapp.getString(16));return;} + else if(params.length<2) {append(theapp.getString(13,paramMake(params[0])));return;} + int i=menuitems.length; + int i2=0; + if(p0hash==hash!("menu_dvd")) i2=2; + else if(p0hash==hash!("menu_recent")) i2=3; + else if(p0hash==hash!("menu_playdvd")) i2=5; + else if(p0hash==hash!("menu_audiotrack")) i2=1; + else if(p0hash==hash!("menu_subtrack")) i2=0; + else /*if(p0hash==hash!("menu_language"))*/ i2=4; + menuitems~=new MenuItem (lastmenu, DWT.CASCADE); + menuitems[i].setText (params[1]); + if(i2 in theapp.menus) + { + menuitems[i].setMenu(theapp.menus[i2]); + if(theapp.menus[i2].getItems().length==0) menuitems[i].setEnabled(0); + } + sharedmenuitems~=i; + } + else if(p0hash==hash!("menu_system")) + { + if(!theapp.player.info.filename.length) {append(theapp.getString(108));return;} + if(DoExplorerMenu) + { + auto p=display.map(null,theapp.shell,display.getCursorLocation()); + POINT p2; + p2.x=p.x; + p2.y=p.y; + DoExplorerMenu(theapp.shell.handle,toStringz(theapp.player.info.filename),p2); + } + else append(theapp.getString(109)); } else if(p0hash==hash!("speed_inc")) theapp.player.speed_inc(); @@ -390,5 +486,5 @@ else if(p0hash==hash!("clear")) history.setText(null); else if(p0hash==hash!("clearhistory")) {pastlines=null;currentline=0;} - else if(p0hash==hash!("exit")) theapp.shell.close(); + else if(p0hash==hash!("exit")) {theapp.closetray=0;theapp.shell.close();} else if(p0hash==hash!("zoom")) { @@ -470,6 +566,6 @@ { auto alcmd=parseCommandLine(*al); - params[0]=parseParam(params,alcmd[0]); - foreach(int i,char[] p;alcmd) alcmd[i]=parseParam(params,p).dup; + params[0]=parseParam(alcmd[0],params); + foreach(int i,char[] p;alcmd) alcmd[i]=parseParam(p,params).dup; char[][] str; str~=alcmd[0]; Index: /trunk/src/player/config.d =================================================================== --- /trunk/src/player/config.d (revision 79) +++ /trunk/src/player/config.d (revision 84) @@ -56,10 +56,12 @@ { File f=new File(path,FileMode.In); + auto fs=new AsciiStream(f); char[] line; for(;;) { - line=f.readLine(); + line=fs.readLine(); if(line) { + line=toUTF(line); if(line.length && line[$-1]=='\\' && (line.length>=2 && line[$-2]!='\\')) { @@ -67,7 +69,8 @@ while(1) { - char[] tl=f.readLine(); + char[] tl=fs.readLine(); if(tl) { + tl=toUTF(tl); line.length=line.length-1; line~=tl; @@ -95,5 +98,5 @@ { auto var=name in variables; - if(var) return parseParam(cmd,*var); + if(var) return parseParam(*var,cmd); else return null; } @@ -139,6 +142,7 @@ else if(namehash==hash!("w_mhidetime")) {theapp.mousehidetime=atoi(value);} else if(namehash==hash!("god")) {theapp.god=cast(int)(atoi(value)!=0);} - else if(namehash==hash!("w_fullscreen")) {theapp.fullscreen(cast(int)(atoi(value)!=0));} - else if(namehash==hash!("w_compact")) {theapp.compact(cast(int)(atoi(value)!=0));} + else if(namehash==hash!("w_fullscreen")) {theapp.fullscreen(cast(int)(atoi(value)!=0),0);} + else if(namehash==hash!("w_compact")) {theapp.compact(cast(int)(atoi(value)!=0),0);} + else if(namehash==hash!("w_titlebar")){theapp.settitlebar(cast(int)(atoi(value)!=0),0);} else if(namehash==hash!("w_startfull")) {theapp.startfull=(cast(int)(atoi(value)!=0));updatedg=&theapp.updateStartfull;} else if(namehash==hash!("v_aspectratio")) {theapp.setaspect(cast(float)(atof(value)));} @@ -164,8 +168,11 @@ else if(namehash==hash!("mp_priority")){if(theapp.player.running()) needrestart=1; else updatedg=&theapp.updatePriority;} else if(namehash==hash!("v_pp")){if(theapp.player.running()) needrestart=1; else updatedg=&theapp.updatePP;} - //else if(namehash==hash!("mp_vo")){if(theapp.player.running()) needrestart=1; else updatedg=&theapp.updateVO;} + else if(namehash==hash!("mp_vo")){if(theapp.player.running()) needrestart=1; else updatedg=&theapp.updateVO;} else if(namehash==hash!("mp_ao")){if(theapp.player.running()) needrestart=1; else updatedg=&theapp.updateAO;} else if(namehash==hash!("sub_codepage")){if(theapp.player.running()) needrestart=1; else updatedg=&theapp.updateCodepage;} else if(namehash==hash!("recentfiles")){int i=atoi(value); if(i<0) {i=0;} theapp.recentfiles=i; theapp.allrecentfiles.length=i; updatedg=&theapp.updateRecent;} + else if(namehash==hash!("w_minimizetotray")) {theapp.mintray=cast(int)(atoi(value)!=0); updatedg=&theapp.updateMintray;} + else if(namehash==hash!("w_closetotray")) {theapp.closetray=cast(int)(atoi(value)!=0); updatedg=&theapp.updateClosetray;} + else if(namehash==hash!("w_resideintray")) {theapp.residetray=cast(int)(atoi(value)!=0); updatedg=&theapp.updateResidetray;} } variables[name]=value; @@ -179,5 +186,5 @@ { auto var=name in defaults; - if(var) return parseParam(null,*var); + if(var) return parseParam(*var,null); else return null; } @@ -191,7 +198,4 @@ if(allowrestart && theapp.player.running) theapp.player.restart(); else theapp.updateUI(); - //theapp.updateUI(); - //theapp.updateStatus(); - //theapp.updateProgress(); } @@ -247,8 +251,16 @@ defaults["a_deflang"]="en"; defaults["a_track"]="0"; + defaults["w_resideintray"]="0"; + defaults["w_closetotray"]="0"; + defaults["w_minimizetotray"]="0"; defaults["w_ontop"]="0"; defaults["w_fullscreen"]="0"; defaults["w_compact"]="0"; defaults["w_language"]="English"; + defaults["w_resizetomovie"]="1"; + defaults["w_mhidetime"]="1000"; + defaults["w_startfull"]="0"; + defaults["w_centeronresize"]="0"; + defaults["w_titlebar"]="1"; defaults["sub_deflang"]="en,eng"; defaults["sub_shown"]="1"; @@ -263,8 +275,4 @@ defaults["dvd_title"]="0"; defaults["dvd_angle"]="0"; - defaults["w_resizetomovie"]="1"; - defaults["w_mhidetime"]="1000"; - defaults["w_startfull"]="0"; - defaults["w_centeronresize"]="0"; defaults["fileicon"]="1"; defaults["sensitivity"]="10"; Index: /trunk/src/player/tv/channels.dat =================================================================== --- /trunk/src/player/tv/channels.dat (revision 84) +++ /trunk/src/player/tv/channels.dat (revision 84) @@ -0,0 +1,1380 @@ +Albania|A1|100|News|Economic and business news|http://wwitv.com/tt/b2745.ram|http://www.a1tv.al/ +Albania|Top Channel|100|News|News TV channel|http://wwitv.com/tt/7771.asx|http://www.top-channel.tv +Albania|Vizion Plus|85|News|Local TV from Tirane with recorded news|http://wwitv.com/tt/b3189.asx|http://www.vizionplus.tv/ +Algeria|ENTV|77|Sports|News and sports|http://wwitv.com/tt/8010.asx|http://www.entv.dz/ +Andorra|ATV|273|General|General TV station|http://wwitv.com/tt/6778.asx|http://www.rtvasa.ad/ +Argentina|Canal 10|100|Local|Local TV from the province of Tucuman|http://wwitv.com/tt/b3153.asx|http://www.tucuman.tv/ +Argentina|Canal 11|350|Unknown|Located in San Miguel City, Buenos|http://wwitv.com/tt/b1589.asx|http://www.telered.com.ar/ +Argentina|Canal 11 Paraná|100|Local|Local TV from Paraná|http://wwitv.com/tt/b2649.asx|http://www.eloncedigital.com.ar/hoy/ +Argentina|Canal 12 TV12|138|Unknown|TV station from Posadas, Misiones. LT 85 TV Canal|http://wwitv.com/tt/8408.m3u|http://www.tv12misiones.com.ar/ +Argentina|Canal 13|140|News|Recorded news TV from Buenos Aires|http://wwitv.com/tt/b1635.asx|http://www.canaltrece.com.ar/ +Argentina|Canal 26|150|News|News station|http://wwitv.com/tt/7904.asx|http://www.26noticias.com.ar/ +Argentina|Canal 4|100|Local|Local TV from Esquel (Chubut)|http://wwitv.com/tt/b1625.asx|http://www.canal4tv.net/ +Argentina|Canal 5|100|Local|Local TV from the province of Tucuman|http://wwitv.com/tt/b3152.asx|http://www.tucuman.tv/ +Argentina|Canal 6|155|Unknown|TV station from Posadas, Misiones province|http://wwitv.com/tt/b1586.asx|http://www.noticiasdel6.com/ +Argentina|Canal 7|50|Unknown|Located in Santiago del Estero|http://wwitv.com/tt/7914.asx|http://www.castv.com.ar/ +Argentina|Canal 7 Argentina|100|National TV|National television from Buenos Aires|http://wwitv.com/tt/7922.asx|http://www.canal7argentina.com.ar/ +Argentina|Canal 7 Mendoza|70|Unknown|Broadcasting from Mendoza|http://wwitv.com/tt/7945.asx|http://www.canal7mendoza.com.ar/ +Argentina|Canal 9|100|Sports|News and sports|http://wwitv.com/tt/7053.asx|http://www.canal9.com.ar/ +Argentina|Canal Luz|291|Religious|Christian family broadcast|http://wwitv.com/tt/7388.asx|http://canalluz.org/ +Argentina|Canal Provincial|262|Unknown||http://wwitv.com/tt/b2021.asx|http://www.telered.com.ar/ +Argentina|Canal Santa Maria|350|Religious|Religious TV from Mercedes City, Buenos Aires|http://wwitv.com/tt/b1590.asx|http://www.telered.com.ar/ +Argentina|CBA TV|120|Unknown|Located in Cordoba|http://wwitv.com/tt/7778.asx|http://www.cbatv.com.ar/ +Argentina|CMTV|95|Music|Music TV station from Buenos Aires|http://wwitv.com/tt/7556.asx|http://www.cmtv.com.ar/ +Argentina|Senado TV|37|Unknown|Live from the Argentinian senat|http://wwitv.com/tt/7915.asx|http://www.senado.gov.ar/ +Argentina|Telecondor Satelital|80|General|General TV station from Cordova|http://wwitv.com/tt/b2443.asx|http://www.telecondorsatelital.com.ar/ +Argentina|TN24Horas|141|News|News TV|http://wwitv.com/tt/6464.asx|http://www.tn24horas.com/ +Argentina|TV Uno|100|Music|Located in Mar del Plata, County of Buenos Aires. Music,|http://wwitv.com/tt/8136.asx|http://www.tvuno.com.ar/ +Argentina|Zona 31|120|Local|Local TV from the Prov. de Bs. As. cubriendo|http://wwitv.com/tt/b1847.asx|http://www.zona31.com.ar/ +Armenia|Aragova TV|300|Music|Armenian music broadcasting amateur TV|http://wwitv.com/tt/b2755.asx|http://aragova.narod.ru/ +Armenia|Horizon TV|350|General|General TV station|http://wwitv.com/tt/b2754.asx|http://www.horizonarmeniantv.com/ +Armenia|VOA|100|News|Recorded news|http://wwitv.com/tt/b2756.ram|http://www.voanews.com +Aruba|Bo Canal 24|225|General|General TV station|http://wwitv.com/tt/8381.ram|http://www.bocanal24.com/ +Australia|ABC Kids|213|Children|Program for little children|http://wwitv.com/tt/b1610.ram|http://www.abc.net.au/broadbandkids/ +Australia|ACC|270|Religious|The Australian Christian TV broadcasts on TV channel 49 of|http://wwitv.com/tt/7794.asx|http://www.acctv.com.au/ +Australia|Bigpond|371|Sports|Clips of sports highlights, music, movie, game news and|http://wwitv.com/tt/b1584.asx|http://www.bigpondtv.com/ +Australia|TVSN|173|Shopping|TV shopping network|http://wwitv.com/tt/b2739.asx|http://www.tvsn.com.au/ +Austria|Beatone|500|Music|Music TV|http://wwitv.com/tt/b3268.asx|http://www.beatone.tv +Austria|Gipsy TV|190|Unknown|Gypsy TV|http://wwitv.com/tt/b2254.asx|http://www.gipsytv.com/ +Austria|Kitz TV|350|Unknown|TV from Kitzbuehl|http://wwitv.com/tt/7378.asx|http://www.kitz.net/cams.html +Austria|K-TV|355|Religious|Catholic TV station from Dornbirn|http://wwitv.com/tt/b2531.asx|http://www.k-tv.at/ +Azerbaijan|AZTV|150|General|The Azerbaijan State TV|http://wwitv.com/tt/6996.asx|http://www.aztv.az/ +Azerbaijan|GunAz TV|250|Music|Issues of North and South Azerbaijan, music, politics|http://wwitv.com/tt/b1477.asx|http://www.gunaz.tv/ +Azerbaijan|Ictimai TV|273|Public TV|Public TV|http://wwitv.com/tt/b1629.asx|http://www.itv.az/ +Bahrain|Discover Islam TV|256|Unknown|Offers programs for the purpose of informing the|http://wwitv.com/tt/6929.ram|http://www.discoverislam.net/ +Belarus|Belarus TV|100|National TV|First National TV station|http://wwitv.com/tt/8069.asx|http://www.tvr.by/eng/tv1.asp +Belgium|AVS (dinsdag)|228|News|Regional TV with recorded news|http://wwitv.com/tt/b2643.asx|http://www.avs.be +Belgium|AVS (donderdag)|228|News|Regional TV with recorded news|http://wwitv.com/tt/b2645.asx|http://www.avs.be +Belgium|AVS (maandag)|228|News|Regional TV with recorded news|http://wwitv.com/tt/b2642.asx|http://www.avs.be +Belgium|AVS (vrijdag)|228|News|Regional TV with recorded news|http://wwitv.com/tt/b2646.asx|http://www.avs.be +Belgium|AVS (woensdag)|228|News|Regional TV with recorded news|http://wwitv.com/tt/b2644.asx|http://www.avs.be +Belgium|AVS (zondag)|228|News|Regional TV with recorded news|http://wwitv.com/tt/b2647.asx|http://www.avs.be +Belgium|EBS|100|News|The European Union's TV news agency|http://wwitv.com/tt/7168.ram|http://europa.eu.int/comm/avservices/ebs/welcome_en.cfm +Belgium|RTC Tele Liege|288|News|Local TV with recorded news|http://wwitv.com/tt/b2683.asx|http://www.rtc.be +Belgium|RTV|200|News|Recorded Flemish news broadcast|http://wwitv.com/tt/7855.asx|http://www.rtv.be/website_2004/NieuwsVideo32.asp +Belgium|Senaat|220|Unknown|TV from the Belgian senate (sometimes online)|http://wwitv.com/tt/b2463.ram|http://www.senate.be +Belgium|TMF|1500|Music|The Music Factory|http://wwitv.com/tt/b2661.asx|http://www.tmf.be +Belgium|VTM Weer|300|Weather|Weatherforecast (13:00)|http://wwitv.com/tt/b1542.asx|http://www.vtm.be/ +Belgium|VTM Weer|300|Weather|Weatherforecast (19:00)|http://wwitv.com/tt/b1944.asx|http://www.vtm.be +Belize|7 News|331|News|Recorded news available on website|http://wwitv.com/tt/b1603.asx|http://www.7newsbelize.com/ +Belize|Channel 5|282|News|Recorded news available on website|http://wwitv.com/tt/b1602.asx|http://www.channel5belize.com/ +Benin|LC2|196|News|International news|http://wwitv.com/tt/8395.asx|http://www.lc2international.tv/ +Bolivia|Full Television Canal 39|100|Local|Local TV station from Santa Cruz de la|http://wwitv.com/tt/b2015.asx|http://www.fulltelevision.tv +Bolivia|Gigavision|100|National TV|National network|http://wwitv.com/tt/b2741.asx|http://www.cotas.net/ +Bolivia|Megavision Canal 18|159|Unknown|From Santa Cruz de la Sierra|http://wwitv.com/tt/7664.asx|http://www.cotas.net/ +Bolivia|Redadvenir|100|Religious|Christian TV station|http://wwitv.com/tt/7878.asx|http://redadvenir.org/espsite/index.php +Bolivia|Unitel TV|100|News|Live and recorded news available on website|http://wwitv.com/tt/b1637.asx|http://www.unitel.tv/ +Bosnia&herz.|BHTV|35|News|Recorded news broadcast from the Public Broadcast Service of|http://wwitv.com/tt/7148.ram|http://www.pbsbih.ba/ +Bosnia&herz.|NTV Hayat|51|News|Recorded news|http://wwitv.com/tt/6757.ram|http://www.ntvhayat.com/home/video/showcase.php +Bosnia&herz.|VOA Bosnia|112|News|Voice of America with Bosnian News|http://wwitv.com/tt/6413.ram|http://www.voa.gov/ +Brazil|ALCE|141|Unknown|Assemblee of Ceará|http://wwitv.com/tt/b2775.asx|http://www.al.ce.gov.br/ +Brazil|AllTV|140|Unknown|100% live content with on-line chat; 24/7 in some|http://wwitv.com/tt/7146.asx|http://www.alltv.com.br/ +Brazil|Amaury JR|300|General|General TV station from Sao Paulo|http://wwitv.com/tt/8390.asx|http://www.amauryjr.com.br/ +Brazil|AtalaiaNet|200|Religious|Christian Evangelical channel|http://wwitv.com/tt/b1845.asx|http://www.atalaianet.com/ +Brazil|AtaliaNet|193|Religious|Christian TV station|http://wwitv.com/tt/b2768.asx|http://www.atalaianet.com/ +Brazil|Bandnews|200|News|Online News TV from Brazil|http://wwitv.com/tt/7259.asx|http://www.bandnews.com.br/ +Brazil|Bandsports|150|Sports|Sports TV|http://wwitv.com/tt/7807.asx|http://www.band.com.br/bandsports/ +Brazil|Canal 21|100|News|Movies and news station from Cascavel|http://wwitv.com/tt/7404.asx|http://www.canal21cascavel.com.br/ +Brazil|Canal TV Web|150|Web TV|Web TV|http://wwitv.com/tt/b1672.asx|http://www.canaltvweb.com.br/ +Brazil|Cancao Nova|256|Unknown|Live from Sao Paulo|http://wwitv.com/tt/5.asx|http://www.cancaonova.org.br/ +Brazil|DM TV|140|Sports|Sports TV|http://wwitv.com/tt/b1624.asx|http://www.dm.com.br/ +Brazil|Embratel 21|116|Unknown|TV from the Embratel Institute|http://wwitv.com/tt/b1634.asx|http://www.bibliotecamultimidia.org.br/ +Brazil|Faap TV|141|Education|Educational TV located in Sao Paulo|http://wwitv.com/tt/b2451.asx|http://www.tvfaap.com.br/ +Brazil|FNC TV|100|Religious|Catholic TV|http://wwitv.com/tt/b1846.asx|http://www.fundacaonazare.com.br/ +Brazil|Novo Tempo|89|Children|Variety of streams; diverse subjects, childrens|http://wwitv.com/tt/6989.asx|http://www.novotempo.org.br/ +Brazil|Ongrace|140|Religious|Religious TV station from Sao Paulo|http://wwitv.com/tt/7034.asx|http://www.ongrace.com/ +Brazil|Rede Gospel|120|Religious|Christian TV|http://wwitv.com/tt/b2396.asx|http://www.igospel.com.br/ +Brazil|Rede Super|90|Unknown|Evangelical channel from Belo Horizonte|http://wwitv.com/tt/b2239.asx|http://www.lagoinha.com +Brazil|Rede TV SUL|160|Unknown|Family channel|http://wwitv.com/tt/8369.asx|http://www.brturbo.com +Brazil|RTVE|95|Education|Educational TV from Parana|http://wwitv.com/tt/b1467.asx|http://www.pr.gov.br/rtve/ +Brazil|TV Aperipe|100|Local|Local TV from Getúlio Vagas|http://wwitv.com/tt/b2119.asx|http://www.infonet.com.br/aperipe/tvaperipe.asp +Brazil|TV Aroba|143|Unknown||http://wwitv.com/tt/7877.asx|http://www.taroba.com.br/ +Brazil|TV Brasilia|60|General|General TV station|http://wwitv.com/tt/b1638.asx|http://www.tvbrasilia.com.br/ +Brazil|TV Camara|102|Government|Government TV located in Brasilia|http://wwitv.com/tt/7608.asx|http://www.camara.gov.br/internet/tvcamara/default.asp?selecao=VIVO +Brazil|TV Capital|100|Unknown|Located in Florianopolis SC|http://wwitv.com/tt/8392.asx|http://www.tvcapital.com.br/ +Brazil|TV Cidade|125|Unknown|Television from Aracaju|http://wwitv.com/tt/6575.asx|http://www.tvcidade.com/ +Brazil|TV Climatempo|100|Weather|Weather channel|http://wwitv.com/tt/b1660.asx|http://www.climatempo.com.br/ +Brazil|TV Espiritualista|100|Religious|Spiritual program|http://wwitv.com/tt/b2180.asx|http://www.tvespiritualista.com.br/ +Brazil|TV Justicia|140|Unknown|TV dedicated to justice|http://wwitv.com/tt/7391.asx|http://www.tvjustica.gov.br/ +Brazil|TV Poços|141|Local|Local TV Station from the city Poços de Caldas|http://wwitv.com/tt/b1916.asx|http://www.tvpocos.com.br/ +Brazil|TV Primeira|100|Religious|Babtist church in Vitoria|http://wwitv.com/tt/b3269.asx|http://www.pibvitoria.org.br +Brazil|TV Rock|70|Music|Music TV station from Sao Paulo|http://wwitv.com/tt/8249.asx|http://www.tvrock.com.br/ +Brazil|TV Seculo 21|45|Education|Educational programming from Sao Paulo|http://wwitv.com/tt/7073.asx|http://www.tvseculo21.org.br/ +Brazil|TV Senado|141|Unknown|Not always online. Live TV from the Brazilian|http://wwitv.com/tt/6470.asx|http://www.senado.gov.br/tv/ +Brazil|TV Taroba|150|Unknown|TV station from Cascavel (PR)|http://wwitv.com/tt/8080.asx|http://www.taroba.com.br/aovivo/default.asp +Brazil|TV Terra|100|Web TV|Web TV from Brazil- Sao Paulo|http://wwitv.com/tt/6825.asx|http://tv.terra.com.br/ +Brazil|TVDEZ|200|Unknown|Broadcasted from London (UK)|http://wwitv.com/tt/8391.asx|http://www.tvdez.com.br/ +Brazil|TVE|80|Unknown|TV station located in Porto Alegre, RS|http://wwitv.com/tt/7175.ram|http://www.tve.com.br +Brazil|UNI TV Canal 15|220|Unknown|Located in Porto Alegre|http://wwitv.com/tt/2052.ram|http://www.pucrs.br/ +Brunei daris.|RTB|300|National TV|National TV station|http://wwitv.com/tt/7084b.asx|http://www.rtb.gov.bn/ +Bulgaria|BTK international|289|Government|Military channel|http://wwitv.com/tt/b2589.asx|http://mtc.eamci.bg/index.html +Bulgaria|BTK national|292|Government|Military channel|http://wwitv.com/tt/b2588.asx|http://mtc.eamci.bg/index.html +Bulgaria|Eurofolk|130|Web TV|Web TV dedicated to European Folklore|http://wwitv.com/tt/b1474.asx|http://www.eurofolk.com/tv/ +Bulgaria|TV Estate|185|General|Real estate and tourism TV|http://wwitv.com/tt/b2079.asx|http://www.tvestate.com/ +Bulgaria|TV Rodina|350|Music|Folk Music TV|http://wwitv.com/tt/b1595.asx|http://www.tvrodina.com/ +Burkina faso.|RTB|230|News|Recorded news|http://wwitv.com/tt/b1520.asx|http://www.tnb.bf/ +Canada|Argent|300|Unknown|Financial channel|http://wwitv.com/tt/b2508.asx|http://argent.canoe.com/ +Canada|Canal Savoir|276|Unknown|Talk-show and scientist channel in French|http://wwitv.com/tt/b2513.asx|http://www.canal.qc.ca/ +Canada|CBC Calgary|528|News|Local news from Calgary|http://wwitv.com/tt/b3208.asx|http://www.cbc.ca/calgary/ +Canada|CBC Edmonton|500|News|Recorded Edmonton evening news|http://wwitv.com/tt/7622.asx|http://www.cbc.ca/edmonton/ +Canada|CBC Igalaaq|500|News|Local news from Igalaaq|http://wwitv.com/tt/b2726.asx|http://www.cbc.ca/video/ +Canada|CBC Manitoba|500|News|Local news from Manitoba|http://wwitv.com/tt/b2724.asx|http://www.cbc.ca/manitoba/ +Canada|CBC Montreal|500|News|Local news from Montreal|http://wwitv.com/tt/b2725.asx|http://www.cbc.ca/montreal/ +Canada|CBC National|550|News|Recorded News|http://wwitv.com/tt/7905.asx|http://www.cbc.ca/national/ +Canada|CBC New Brunswick|225|News|Recorded news at six from Fredericton, New|http://wwitv.com/tt/b2384.ram|http://www.cbc.ca/nb/ +Canada|CBC News hourly|528|News|Recorded world news|http://wwitv.com/tt/b2651.asx|http://www.cbc.ca +Canada|CBC North|400|News|Recorded daily news in inuktitut language|http://wwitv.com/tt/7184.asx|http://www.cbc.ca/north/ +Canada|CBC North|400|News|English version of recorded daily news|http://wwitv.com/tt/7183.asx|http://www.cbc.ca/north/ +Canada|CBC Northbeat|500|News|Local news from Northbeat|http://wwitv.com/tt/b2727.asx|http://www.cbc.ca/video/ +Canada|CBC Nova Scotia|528|News|Recorded News from Halifax, Nova Scotia CA|http://wwitv.com/tt/6421.asx|http://www.cbc.ca/ns/ +Canada|CBC Ottawa|500|Sports|Local Ottawa news, weather and sports|http://wwitv.com/tt/7659.asx|http://www.cbc.ca/ottawa/ +Canada|CBC P.E.I.|500|News|Local news from Charlottetown|http://wwitv.com/tt/b2728.asx|http://www.cbc.ca/video/ +Canada|CBC Saskatchewan|500|News|Local news from Saskatchewan|http://wwitv.com/tt/b2729.asx|http://www.cbc.ca/sask/ +Canada|CBC Toronto|500|News|Local news from Toronto|http://wwitv.com/tt/b2730.asx|http://www.cbc.ca/toronto/ +Canada|CBC Toronto|500|News|Recorded News from Toronto|http://wwitv.com/tt/6540.asx|http://www.cbc.ca/toronto/ +Canada|CBC Vancouver|225|News|Recorded News from Vancouver|http://wwitv.com/tt/6539.asx|http://www.cbc.ca/bc/ +Canada|CityNews|56|News|Toronto's 24 newssource|http://wwitv.com/tt/6528.asx|http://www.citynews.ca/ +Canada|CPAC English|118|Unknown|Canadian Parliament Channel showing the proceedings|http://wwitv.com/tt/6783.asx|http://www.cpac.ca +Canada|CPAC French|118|Unknown|Canadian Parliament Channel showing the proceedings of|http://wwitv.com/tt/6746.asx|http://www.cpac.ca +Canada|CTV News|329|News|News station|http://wwitv.com/tt/b3830.asx|http://www.ctv.ca/news +Canada|Didar TV|100|Unknown|TV station located in Hamilton (ON) in Persian|http://wwitv.com/tt/b1701.asx|http://www.didarglobaltv.com/ +Canada|Eastlink|350|Local|Offers a wide variety of local programming|http://wwitv.com/tt/7952.ram|http://www.eastlink.ca/eltv/ELTV_WebCasting/ +Canada|LCN|300|News|News TV channel|http://wwitv.com/tt/b2509.asx|http://lcn.canoe.com/ +Canada|Miracle Channel|280|Religious|Religious TV channel|http://wwitv.com/tt/6556.asx|http://www.miraclechannel.ca/ +Canada|Northbay|500|Local|Local TV from Ontario|http://wwitv.com/tt/b1604.asx|http://www.newnorthbay.com/ +Canada|Reservoir Films|190|Movies|Movie channel|http://wwitv.com/tt/b3180.m3u|http://www.reservoirfilms.com +Canada|Shop TV Canada|200|Shopping|Shopping TV|http://wwitv.com/tt/b2572.asx|http://shoptvcanada.com/ +Canada|SHOPTV Canada|218|Unknown|Southern Ontario's only infomercial TV TV channel|http://wwitv.com/tt/6834.asx|http://www.torontostartv.com/ +Canada|The Shopping Channel|539|Shopping|Exclusive deals and auctions on thousands of|http://wwitv.com/tt/7399.asx|http://www.theshoppingchannel.com/ +Canada|The Stream|539|Religious|Religious Web TV|http://wwitv.com/tt/6554.asx|http://www.thestreamtv.com/ +Canada|Toronto TV ch. 1|500|Unknown|Independant webTV station. Chinese|http://wwitv.com/tt/b1737.asx|http://www.torontotv.org/ +Canada|Toronto TV ch. 2|500|Unknown|Independant webTV station|http://wwitv.com/tt/b1947.asx|http://www.torontotv.org/ +Canada|Toronto TV ch. 3|500|Unknown|Independant webTV station|http://wwitv.com/tt/8089.asx|http://www.torontotv.org/ +Canada|Toronto TV ch. 4|500|Unknown|Independant webTV station|http://wwitv.com/tt/b1945.asx|http://www.torontotv.org/ +Canada|Toronto TV ch. 5|500|Community|Independant webTV station. Community|http://wwitv.com/tt/b2238.asx|http://www.torontotv.org/ +Canada|TSN|464|News|Sport TV channel with on demand news|http://wwitv.com/tt/6259.asx|http://www.tsn.ca/audio_video/ +Canada|TVC9|220|Local|Local TV|http://wwitv.com/tt/8323.asx|http://www.cablevision.qc.ca/fr/cable/tvc9.asp +Chile|Canal 13|115|Religious|TV from the Catholic University|http://wwitv.com/tt/7457.asx|http://www.canal13.cl/ +Chile|Canal 13 Cable|115|Religious|Pontificia Universidad Catolica de Chile|http://wwitv.com/tt/2100.asx|http://www.canal13.cl/ +Chile|CDtv|193|News|Politics, Live Sessions, Civics shows, News, Classical|http://wwitv.com/tt/7530.asx|http://www.camara.cl +Chile|Chilevision|145|Unknown|Located in Santiago|http://wwitv.com/tt/2098.asx|http://www.chilevision.cl +Chile|Iquique Canal 10|108|General|General TV Station from Rancagua|http://wwitv.com/tt/b1933.asx|http://www.iquiquetv.cl/ +Chile|Nuevo Tiempo|121|Religious|Christian TV station|http://wwitv.com/tt/b1484.asx|http://www.nuevotiempo.cl/ +Chile|RTC|1000|Local|Local TV from Iquique|http://wwitv.com/tt/b2773.asx|http://www.municipioiquique.cl/ +Chile|Telecanal|220|Unknown|Channel 2 from Santiago de Chile|http://wwitv.com/tt/b2444.asx|http://www.telecanal.cl/ +Chile|TV Chile|273|General|General TV station|http://wwitv.com/tt/b2774.asx|http://www.tvchile.cl/ +Chile|TV Chile|225|National TV|National TV station|http://wwitv.com/tt/7098.ram|http://www.tvn.cl/ +Chile|TV mas canal 22|102|General|General TV station|http://wwitv.com/tt/b3218.asx|http://www.mas22.cl/ +Chile|UCVTV|45|Unknown|UCV TV, Live from Valparaiso|http://wwitv.com/tt/7751.asx|http://www.ucvtv.cl/ +Chile|Universidad del Mar|560|Education|University channel located in|http://wwitv.com/tt/b1548.asx|http://www.antofagastaudelmar.cl/ +Chile|VTV2|321|Unknown|Sometimes online|http://wwitv.com/tt/b1606.asx|http://www.vtv2.cl/ +China|BJ IPTV|376|Movies|Movie channel|http://wwitv.com/tt/b2586.asx|http://www.bjiptv.com +China|CCQTV|327|General|General TV station from Chongqing|http://wwitv.com/tt/8003.asx|http://www.ccqtv.com/ +China|CCTV E&F|282|Unknown|CCTV E&F Esponal & France Program|http://wwitv.com/tt/8209.asx|http://fr.cctv.com/ +China|CCTV XW|200|News|News channel|http://wwitv.com/tt/8095.asx|http://english.cctv.com +China|CCTV-1|120|Unknown|CCTV-1 features TV plays, galas and|http://wwitv.com/tt/7229.asx|http://english.cctv.com +China|CCTV-2|100|Unknown||http://wwitv.com/tt/b2542.asx|http://www.cctv.com/2006tv/CCTV_2/index.shtml +China|CCTV-4|300|Unknown|Serves overseas audiences and residents in Hong Kong, Macao|http://wwitv.com/tt/2078.asx|http://www.cctv.com/ +China|CCTV-5|300|Sports|Chinese sports TV channel|http://wwitv.com/tt/7025.asx|http://www.cctv.com/sports/index.shtml +China|CCTV-9|300|Unknown|English-language TV channel|http://wwitv.com/tt/2077.asx|http://www.cctv.com +China|HLJTV|300|Unknown||http://wwitv.com/tt/b1540.asx|http://www.wcetv.com +China|LSTV 1|300|Unknown|From Southwest of China-Lishui City|http://wwitv.com/tt/7258.asx|http://www.inlishui.com/ +China|MTV China|350|Music|Music TV|http://wwitv.com/tt/b2637.asx|http://www.mtv-china.com/ +China|NJTV 1|350|News|News Channel|http://wwitv.com/tt/8070.asx|http://vod.njbg.com.cn/ +China|NJTV 18|350|Unknown||http://wwitv.com/tt/b2237.asx|http://vod.njbg.com.cn/ +China|NJTV 2|350|Unknown||http://wwitv.com/tt/8071.asx|http://www.njtv.com.cn +China|NJTV 3|350|Unknown||http://wwitv.com/tt/b1982.asx|http://www.njbg.com.cn/ +China|NJTV 4|350|Unknown||http://wwitv.com/tt/b2236.asx|http://vod.njbg.com.cn/ +China|NJTV 5|350|Unknown||http://wwitv.com/tt/b1927.asx|http://vod.njbg.com.cn/ +China|NTDTV|150|Unknown|New Tang Dynasty|http://wwitv.com/tt/7881.asx|http://www.ntdtv.com/ +China|NTDTV|141|Unknown|New Tang Dynasty Television|http://wwitv.com/tt/b2424.asx|http://ntdtv.com/ +China|RETV|225|Unknown|Located in Rugao City Jiangsu|http://wwitv.com/tt/7301.ram|http://www.retv.com.cn/ +China|SDTV|273|Unknown|Located in Shandong|http://wwitv.com/tt/7939.asx|http://www.sdtv.com.cn/online/index.htm +China|SDTV2 (NKTV)|150|Unknown||http://wwitv.com/tt/b2225.asx|http://www.sdtv.com.cn/online/index.htm +China|SDTV3 (GGTV)|200|Unknown||http://wwitv.com/tt/b2226.asx|http://www.sdtv.com.cn/online/index.htm +China|SDTV4 (ZHTV)|200|Unknown||http://wwitv.com/tt/b2227.asx|http://www.sdtv.com.cn/online/index.htm +China|SZTV|150|Unknown||http://wwitv.com/tt/b2608.asx|http://www.sztv.com.cn/ +China|XATV-2|300|Unknown|TV from Xian City|http://wwitv.com/tt/7780.asx|http://www.xatvs.com/ +Colombia|Canal 41 ABN|128|Unknown|Located in Bogota|http://wwitv.com/tt/b1547.asx|http://www.avivamiento.com +Colombia|Canal Cuatro|225|Education|University TV|http://wwitv.com/tt/b3253.ram|http://www.uaovirtual.edu.co +Colombia|CMB|100|Religious|Christian TV station|http://wwitv.com/tt/b2713.asx|http://www.cmb.org.co +Colombia|Nova Television|170|Local|Local TV from Bogota|http://wwitv.com/tt/b3230.asx|http://www.novatelevision.com/ +Colombia|Tele Medellin|100|Local|Local TV station from Medellin|http://wwitv.com/tt/b2505.asx|http://www.telemedellin.tv/ +Colombia|Teleantioquia|100|Local|Local TV station from Medellin (EAFIT|http://wwitv.com/tt/7820.asx|http://envivo.eafit.edu.co/ +Costa rica|Canal 13|300|General|General TV station|http://wwitv.com/tt/b2975.asx|http://www.sinart.go.cr/Canal13.htm +Costa rica|Canal 23|300|Religious|Christian TV|http://wwitv.com/tt/7083.asx|http://www.enlace.org/ +Costa rica|FCN TV|141|Religious|Christian family TV from Heredia|http://wwitv.com/tt/b2436.asx|http://www.fcntelevision.tv/ +Costa rica|Megahits|100|Music|Music channel from San Jose|http://wwitv.com/tt/b2437.asx|http://www.megahits.tv/ +Costa rica|Repretel 4|150|Unknown|Cartoons|http://wwitv.com/tt/b3251.asx|http://www.repretel.com/ +Cote d'ivoire|Ivorian TV|539|Unknown||http://wwitv.com/tt/b2077.asx|http://www.ivorian.net/ +Cote d'ivoire|TV2 Cinema|300|Movies|Movie channel|http://wwitv.com/tt/b2394.asx|http://www.tv2cinema.com/ +Croatia|HTV 1|250|General|General TV station|http://wwitv.com/tt/b1856.ram|http://www.hrt.hr/ +Croatia|HTV Sat|45|General|General TV station|http://wwitv.com/tt/14.ram|http://www.hrt.hr/ +Croatia|OTV|185|Local|Local TV from Zagreb|http://wwitv.com/tt/7690.asx|http://www.online.hr/live/ +Croatia|Smart TV|539|Unknown|First Croatian Internet-only TV|http://wwitv.com/tt/b3211.asx|http://www.smarttv.com.hr/ +Cuba|Cubavision|140|Unknown|From Havana. Politics, economy, science and|http://wwitv.com/tt/7516.asx|http://www.cubavision.cubaweb.cu +Cuba|TV Cubana|145|News|News station|http://wwitv.com/tt/7100.asx|http://www.cubasi.cu +Cyprus|BRT-1 TV|143|Unknown|Turkisch oriented|http://wwitv.com/tt/15.asx|http://www.brtk.net/ +Cyprus|BRT-2 TV|143|Unknown|Turkisch oriented|http://wwitv.com/tt/b3170.asx|http://www.brtk.net/ +Cyprus|RIK Sat|220|Unknown|Cyprus Broadcasting Corporation|http://wwitv.com/tt/7674.ram|http://www.cybc.com.cy +Czech rep.|24.cz|400|Unknown|TV from the Czech parliament|http://wwitv.com/tt/8122.asx|http://www.24cz-tv.cz +Czech rep.|CT24|400|News|News TV channel. Recorded streams available on|http://wwitv.com/tt/8086.asx|http://vysilani.ct24.cz/ +Czech rep.|HDTV|2000|Web TV|Experimental high bandwidth Web TV|http://wwitv.com/tt/b1710.asx|http://www.hdtv1.cz/ +Czech rep.|Meteo TV|444|Weather|Weather TV station (Worldwide forecast)|http://wwitv.com/tt/8206.asx|http://www.meteotv.cz/ +Czech rep.|OCKO TV|787|Music|Populair music|http://wwitv.com/tt/7774.asx|http://www.ocko.tv/ +Czech rep.|PG 24|1024|Unknown|PC games Internet channel|http://wwitv.com/tt/b1554.asx|http://www.pg24.cz/ +Czech rep.|RT1|391|Unknown|Interactive Information TV from Plzen region|http://wwitv.com/tt/b2377.asx|http://www.cestyplzenskehokraje.cz/new/video/ +Czech rep.|Top TV|512|Shopping|Shopping and Lifestyle TV|http://wwitv.com/tt/b1546.asx|http://www.top-tv.cz/ +Czech rep.|TV NOE|720|Religious|Christian TV station|http://wwitv.com/tt/b1996.asx|http://www.tvnoe.cz/ +Czech rep.|TVB1|800|Local|Local TV from BRNO|http://wwitv.com/tt/8016.asx|http://www.tvb1.cz/ +Denmark|Folketinget|141|Unknown|Parliament TV|http://wwitv.com/tt/b2462.asx|http://www.folketinget.dk/ +Denmark|TV 2 News|331|News|News TV station|http://wwitv.com/tt/b2715.asx|http://tv2.dk +Dom. rep.|Cana TV|100|Local|Local TV from Romana|http://wwitv.com/tt/b2703.asx|http://www.cana.tv +Dom. rep.|Canal 10 Yuna Vision|282|Unknown|TV station from Bonao, Province Monsenor|http://wwitv.com/tt/b1643.asx|http://www.yunavision.com/ +Dom. rep.|Canal 23|145|Unknown||http://wwitv.com/tt/b1644.asx|http://www.megamedios.net/canal23.htm +Dom. rep.|Canal 25|45|Unknown||http://wwitv.com/tt/6984.asx|http://canal25net.tv/ +Dom. rep.|CDN Cadena de Noticias 37|150|News|News TV|http://wwitv.com/tt/7469.asx|http://www.elcaribecdn.com/ +Dom. rep.|ColorVision|100|Unknown|Channel 9|http://wwitv.com/tt/6574.asx|http://www.colorvision.com.do/ +Dom. rep.|Megavision|150|Unknown||http://wwitv.com/tt/b2705.asx|http://www.comunicacionescam.com/ +Dom. rep.|Microvision Canal 10|141|General|General TV station|http://wwitv.com/tt/b2688.asx|http://www.microvisioncanal10.net/ +Dom. rep.|Telecentro|53|General|General TV station|http://wwitv.com/tt/b3211.asx|http://www.telecentro.com.do/ +Dom. rep.|Telepower|150|Unknown||http://wwitv.com/tt/b2706.asx|http://www.comunicacionescam.com/ +Dom. rep.|Teleradio America|45|Unknown|Canal 45|http://wwitv.com/tt/8417.asx|http://www.teleradioamerica.com/canal45/ +Dom. rep.|Teleunion|150|Unknown||http://wwitv.com/tt/b2704.asx|http://www.comunicacionescam.com/ +Dom. rep.|TRA 45|41|General|General TV station located in Santo Domingo|http://wwitv.com/tt/8377.asx|http://www.teleradioamerica.com/ +Dom. rep.|TV Plata|273|Local|Local TV from Puerto Plata|http://wwitv.com/tt/b2702.asx|http://tvplata.com/ +Dom. rep.|Vega TV|150|General|General TV station from Santo Domingo|http://wwitv.com/tt/8378.asx|http://www.vegateve.com/ +Ecuador|Cable Deportes|45|Unknown||http://wwitv.com/tt/2090.ram|http://www.ecuadormedia.com/html/tv/cabledeportes/programacion.html +Ecuador|Cable Noticias|45|News|News station|http://wwitv.com/tt/2089.ram|http://www.ecuadormedia.com/html/tv/cablenoticias/programacion.html +Ecuador|ETV Telerama|83|Local|Local TV|http://wwitv.com/tt/2084.ram|http://www.etvtelerama.com/ +Ecuador|TC Television|50|Unknown||http://wwitv.com/tt/b2265.smi|http://www.tctelevision.com/ +Ecuador|TCTV|45|Unknown||http://wwitv.com/tt/2092.ram|http://www.ecuadormedia.com/html/tv/tctv/programacion.html +Ecuador|Teleamazonas|50|Unknown||http://wwitv.com/tt/8212.ram|http://www.teleamazonas.com/ +Egypt|Aghapy|66|Religious|Christian TV|http://wwitv.com/tt/b1538.asx|http://www.aghapy.tv/aghapy/index.php?newlang=english +Egypt|Nile News|88|News|Recorded news|http://wwitv.com/tt/b3271.asx|http://www.nilenews.tv +Egypt|Nile TV|100|General|Egypt State Information Service|http://wwitv.com/tt/7001.asx|http://www.sis.gov.eg/ +Egypt|Sat 7|100|Religious|Satellite channel for the Christians of the Middle East and|http://wwitv.com/tt/8017.asx|http://www.sat7.com/ +El salvador|Agape TV|100|General|General TV station|http://wwitv.com/tt/8213.asx|http://www.agapetv8.com/ +El salvador|Canal 12|100|General|General TV station|http://wwitv.com/tt/b1905.asx|http://www.canal12.com.sv/ +El salvador|Canal 17|273|Religious|Christian TV station|http://wwitv.com/tt/b1709.asx|http://www.tabernaculo.org/ +El salvador|Canal 21|273|General|General TV station|http://wwitv.com/tt/8386.asx|http://www.canal21tv.com.sv/ +El salvador|El Camino|153|Religious|Christian channel|http://wwitv.com/tt/b1993.asx|http://www.delcamino.org.sv/ +Estonia|Life TV|245|Religious|Christian channel from Tallinn|http://wwitv.com/tt/7834.asx|http://www.lifetv.ee/ +Estonia|Riigikogu|240|Unknown|The parliament of Estonia|http://wwitv.com/tt/b2464.asx|http://www.riigikogu.ee/ +Estonia|Riigikogu|45|Unknown|Live webcasting of Parliament. Not always online - Check|http://wwitv.com/tt/7364.ram|http://www.riigikogu.ee/ +Finland|YLE news|350|Unknown|Finnish Broadcasting Company (YLE)|http://wwitv.com/tt/7306.ram|http://www.yle.fi/yle24/videosali/ +France|Art Channel|341|Satellite TV|Art Channel is much more than a satellite tv program|http://wwitv.com/tt/b1561.asx|http://www.artchannel.info/ +France|Arte|255|Unknown|German/French culture channel|http://wwitv.com/tt/b2319.ram|http://www.arte.tv/ +France|Astro Center|272|Unknown|Astrology channel|http://wwitv.com/tt/b2749.asx|http://www.astrocenter.fr/ +France|ASTV|400|Local|Local TV from Grande-Synthe|http://wwitv.com/tt/b2709.asx|http://www.telelocaleastv.fr/ +France|BFM TV|450|News|News and Entertainment|http://wwitv.com/tt/b1485.asx|http://www.bfmtv.fr/ +France|Boardriders TV|500|Unknown|TV station dedicated to boardriding|http://wwitv.com/tt/b1676.asx|http://www.boardriderstv.com/ +France|C9 Television|289|Local|Local channel from Lille|http://wwitv.com/tt/b1651.asx|http://www.c9television.fr/ +France|Calais TV|398|Local|Local TV from Calais|http://wwitv.com/tt/b3179.asx|http://www.calaistv.fr +France|Canal TV|258|Music|Pop music|http://wwitv.com/tt/b2551.m3u|http://www.canaltv.org/ +France|Canalmoza|350|Music|African music|http://wwitv.com/tt/b2391.asx|http://www.canalmoza.info/ +France|Clermont1ere|44|Local|Local television from Clermont Ferrand|http://wwitv.com/tt/7476.asx|http://www.clermont1ere.com/ +France|Cybertika Tropical|512|Music|Music TV (Reggae, Dancehall, Zouk,|http://wwitv.com/tt/7964.asx|http://www.cybertika.com/ +France|Cybertika Urban|328|Music|Music TV (Rap, R&B, Hip-Hop, Soul,|http://wwitv.com/tt/b2348.asx|http://www.cybertika.com +France|Demain|100|Unknown|TV focusing on employment, free enterprise, business and|http://wwitv.com/tt/7858.ram|http://www.demain.fr/ +France|Direct 8|210|General|General TV station from the group Bollere|http://wwitv.com/tt/8059.asx|http://www.direct8.fr/live.html +France|Disneyweb|190|Movies|Movie channel|http://wwitv.com/tt/b3181.m3u|http://disneyweb.fr/ +France|Domino TV|259|Local|Local TV from Rouen|http://wwitv.com/tt/b3177.asx|http://dominotv.fr +France|Eurosport|382|Unknown|Not alway's online. Many recorded items available on|http://wwitv.com/tt/8216.asx|http://www.eurosport.fr/football/mc_vid24226.shtml +France|Fazz Music|350|Music|Jazz music station|http://wwitv.com/tt/b1567.m3u|http://www.fazz-music.com/ +France|France 24 (En)|400|News|International news channel|http://wwitv.com/tt/b2742.asx|http://www.france24.com/ +France|France 24 (Fr)|400|News|International news channel|http://wwitv.com/tt/b2743.asx|http://www.france24.com/ +France|Itele|100|News|News station|http://wwitv.com/tt/7006.asx|http://www.itele.fr/ +France|Jet TV|380|Unknown|Entertainment channel|http://wwitv.com/tt/b2512.asx|http://www.jettv.fr +France|LCI|341|News|Recorded news|http://wwitv.com/tt/b2532.asx|http://tf1.lci.fr/ +France|LCI|580|News|News TV station (not always live)|http://wwitv.com/tt/b2511.asx|http://tf1.lci.fr/ +France|LCP|150|National TV|Assemblee National. Not always online|http://wwitv.com/tt/8245.asx|http://www.lcpan.fr/ +France|MBOATV|350|Music|Web TV channel broadcasting Live African Music|http://wwitv.com/tt/b2374.asx|http://www.mboatv.com/ +France|Netgaming TV|850|Gaming|Gaming TV|http://wwitv.com/tt/b1986.asx|http://www.netgaming.tv/ +France|Normandie TV|294|Regional TV|Regional TV|http://wwitv.com/tt/8011.asx|http://www.normandie-tv.fr/ +France|OuepaTV|700|Unknown|Dance and disco|http://wwitv.com/tt/8413.m3u|http://www.ouepa.com/ +France|Paradise FM|225|Music|Music TV|http://wwitv.com/tt/b3174.asx|http://paradisefm.net +France|Paris Cap|360|Local|Local TV from Paris|http://wwitv.com/tt/b3175.asx|http://www.pariscap.com/ +France|Perpignan TV|565|Local|Local TV from Perpignan|http://wwitv.com/tt/b2665.asx|http://www.perpignantv.com/ +France|Senat|150|News|News Station|http://wwitv.com/tt/109.asx|http://www.senat.fr +France|Sunvibz TV|512|Unknown|Raggae-Dancehall, Hip-hop Rn'B channel|http://wwitv.com/tt/7856.asx|http://www.sunvibz.tv/ +France|Tele Alsace|307|Local|Local TV from Alsace|http://wwitv.com/tt/b3178.asx|http://www.telealsace.com/ +France|TelEssonne|341|Local|Local TV from Essonne|http://wwitv.com/tt/b3176.asx|http://www.telessonne.fr +France|TLM|250|Local|Local channel from Lyon|http://wwitv.com/tt/b1649.asx|http://www.tlm.fr/ +France|TV 8 Mont Blanc|60|Local|Local TV from the Mont Blanc region|http://wwitv.com/tt/b3182.asx|http://tv8montblanc.com +France|TV Grenoble|400|Local|Local TV from Grenoble|http://wwitv.com/tt/b2118.asx|http://www.telegrenoble.fr/ +France|Zen TV|200|Music|Music TV|http://wwitv.com/tt/8252.m3u|http://www.zentv.org/ +Georgia|GPB|331|Public TV|Public broadcasting|http://wwitv.com/tt/b2501.asx|http://www.gpb.ge/ +Georgia|Rustavi 2|62|Unknown|Independent georgian Broadcasting Company|http://wwitv.com/tt/7123.asx|http://www.rustavi2.com.ge/ +Germany|1-2-3 TV|290|Shopping|Offers a broad range of products|http://wwitv.com/tt/8243.asx|http://www.1-2-3.tv +Germany|3Sat|441|General|General TV station|http://wwitv.com/tt/7984.asx|http://www.3sat.de/ +Germany|9 Live|500|Unknown|Phone-in quiz show|http://wwitv.com/tt/8352.asx|http://www.9live.de/ +Germany|Antenne West|350|Regional TV|Regional television for the region: The Eifel, Saar,|http://wwitv.com/tt/b2618.asx|http://www.antennewest.de/ +Germany|AQUA TV|386|Sports|The watersports magazine|http://wwitv.com/tt/b2104.asx|http://www.aqua-tv.de/ +Germany|ARD Tagesschau|325|News|The most popular German news program on|http://wwitv.com/tt/7154.asx|http://www.tagesschau.de/sendungen/ +Germany|Arte|260|Unknown|German/French culture channel|http://wwitv.com/tt/b2185.ram|http://www.arte.tv/de/70.html +Germany|Astro TV|300|Unknown|Astrology|http://wwitv.com/tt/8231.asx|http://www.questico.com/users/astrotv/ +Germany|Bahn TV|700|Unknown|Channel dedicated to the traffic|http://wwitv.com/tt/8429.asx|http://www.bahntv-online.de/ +Germany|Bestseller TV|300|Shopping|Offers a broad range of products|http://wwitv.com/tt/8432.asx|http://www.bestsellertv.de/ +Germany|Buergerschaft HH|280|Unknown|Hamburger Parliament (sometimes|http://wwitv.com/tt/b2033.asx|http://www.hamburgische-buergerschaft.de/cms_de.php?templ=akt_livestream.tpl&sub1=62&sub2=402&cont=1107 +Germany|Campus TV|330|Unknown|TV from the Technischen Fachhochschule|http://wwitv.com/tt/b2360.asx|http://www.tfh-wildau.de/ +Germany|Center TV|330|Local|Local TV from Koln|http://wwitv.com/tt/8404.asx|http://www.center.tv/ +Germany|CFC|350|Religious|Christian TV Chiemgau|http://wwitv.com/tt/b1874.m3u|http://www.cfcev.de/ +Germany|DAF TV|300|News|Financial news|http://wwitv.com/tt/b2224.asx|http://www.anleger-fernsehen.de +Germany|Del TV|500|Unknown|Ice hockey channel|http://wwitv.com/tt/b2599.asx|http://www.deltv.org/ +Germany|Deluxe Music TV|400|Music|Music TV channel without moderation|http://wwitv.com/tt/8033.asx|http://www.deluxemusic.tv/ +Germany|Der Schmuckkanal|500|Unknown|Offers jewellery|http://wwitv.com/tt/b3240.asx|http://www.derschmuckkanal.de +Germany|DHD 24 TV|330|Unknown|Interactive TV station|http://wwitv.com/tt/b2062.asx|http://www.dhd24.tv/ +Germany|Donau TV|300|Regional TV|Regional TV from Deggendorf|http://wwitv.com/tt/b2091.asx|http://www.donautv.com/web/ +Germany|DW-TV|250|News|Worldnews channel / Deutsche Welle (not available in the|http://wwitv.com/tt/6333.asx|http://dw-world.de +Germany|DW-TV|256|News|Worldnews channel / Deutsche Welle (not available in the|http://wwitv.com/tt/b1636.ram|http://dw-world.de +Germany|Eberswalde|270|Local|Local TV|http://wwitv.com/tt/8041.asx|http://www.eberswalde.tv/ +Germany|Eins Extra|328|Unknown|Live from Mon.-Fri. / 14:00 - 19:00 H (German|http://wwitv.com/tt/b2113.ram|http://www.ard-digital.de/ +Germany|Elbekanal|320|Regional TV|Regional TV from Schönebeck|http://wwitv.com/tt/b2482.asx|http://www.elbekanal.de/ +Germany|Euro 3|500|Regional TV|Regional TV from the Bodensee|http://wwitv.com/tt/b1808.asx|http://euro-3.de +Germany|Eurosport|382|Unknown|Recorded streams and live scores|http://wwitv.com/tt/7943.asx|http://www.eurosport.de/eurosportspezial/mc_vid24228.shtml +Germany|Flott-TV|330|Local|Local TV from Guenzburg|http://wwitv.com/tt/b3247.asx|http://www.flott-tv.de/ +Germany|Franken TV|300|Unknown|Located in Nürnberg|http://wwitv.com/tt/b2101.asx|http://www.franken-tv.de/ +Germany|Fresh 4U|400|Unknown|Astrology|http://wwitv.com/tt/b1704.asx|http://www.fresh4u.de +Germany|Gems TV|300|Shopping|Interactive shopping TV|http://wwitv.com/tt/b2105.asx|http://www.bietbox.de/ +Germany|GIGA TV|690|Music|Computer / Music station|http://wwitv.com/tt/7136.asx|http://giga.de/ +Germany|Hamburg 1|290|News|Recorded news|http://wwitv.com/tt/b2106.asx|http://www.hamburg1.de/ +Germany|HSE 24|300|Shopping|Offers a broad range of products|http://wwitv.com/tt/b1809.asx|http://www.hse24.de/ +Germany|HSE 24 Digital|300|Shopping|Offers a broad range of products|http://wwitv.com/tt/b1921.asx|http://www.hse24.de/ +Germany|INTV|300|Unknown|The infochannel from Ingolstadt|http://wwitv.com/tt/b2095.asx|http://www.intv.de/ +Germany|IPC sports|384|Unknown|Paralympics sport TV|http://wwitv.com/tt/b2606.asx|http://player.narrowstep.tv/?player=paralympicsporttv +Germany|KWTV|232|Regional TV|Regional TV from Wildau / Königs|http://wwitv.com/tt/b2361.asx|http://www.kwtv.de/ +Germany|Landtag MV|45|General|The State-Parliament of Mecklenburg - Vorpommern (not|http://wwitv.com/tt/b2619.ram|http://www.landtag-mv.de +Germany|Lastminute TV|755|Shopping|Commercial travel channel|http://wwitv.com/tt/b2440.asx|http://www.lastminute.tv/ +Germany|München 2|300|Regional TV|Regional TV from München|http://wwitv.com/tt/b2459.asx|http://www.muenchen-tv.de +Germany|München TV|300|Regional TV|Regional TV from München|http://wwitv.com/tt/b2078.asx|http://www.muenchen-tv.de +Germany|MDR|300|Regional TV|Regional TV from Leipzig|http://wwitv.com/tt/b3239.asx|http://www.mdr.de/ +Germany|Motor TV|500|Music|Independent and alternative music station|http://wwitv.com/tt/b2393.asx|http://www.motortv.de/ +Germany|NOA4|700|Local|Norderstedt on air 4. Local TV station|http://wwitv.com/tt/7279.asx|http://www.noa4.tv/ +Germany|NRW TV|880|Unknown|TV from Dortmund for Nordrhein-Westfalen|http://wwitv.com/tt/b2066.asx|http://www.nrw.tv +Germany|n-tv|330|News|News TV|http://wwitv.com/tt/6247.asx|http://www.n-tv.de/ +Germany|Oberlausitz TV|214|Local|Local TV from Oberlausitz (Ostsachsen):|http://wwitv.com/tt/b1732.asx|http://www.oberlausitz.tv/ +Germany|OTV|300|Unknown|Oberpfalz TV from Amberg|http://wwitv.com/tt/b2116.asx|http://www.otv.de/ +Germany|PETN Citychannel|1100|News|Citynews from Leipzig|http://wwitv.com/tt/b3228.asx|http://www.petn.tv/ +Germany|PETN Moviechannel|1000|Movies|Movie channel|http://wwitv.com/tt/b3225.asx|http://www.petn.tv/ +Germany|PETN Musicchannel|1100|Music|Music channel|http://wwitv.com/tt/b3227.asx|http://www.petn.tv/ +Germany|PETN Sportschannel|1100|Sports|Sports TV|http://wwitv.com/tt/b3226.asx|http://www.petn.tv/ +Germany|Phoenix|452|News|News from Bonn, documentaries, debates. Transmission|http://wwitv.com/tt/6844.ram|http://www.phoenix.de +Germany|QVC|350|Shopping|(Home Shopping) Offers a broad range of products|http://wwitv.com/tt/b2392.asx|http://www.qvc.de/ +Germany|RFH|240|Local|Local TV from Halberstadt|http://wwitv.com/tt/b2435.asx|http://www.rfh-tv.de/ +Germany|RFL TV|300|Regional TV|Regional television from Landshut|http://wwitv.com/tt/b2096.asx|http://www.rfltv.de/ +Germany|RFR TV|300|Regional TV|Regional television from Oberbayern - Rosenheim|http://wwitv.com/tt/b2097.asx|http://www.rfr.de +Germany|RTL Shop|500|Shopping|Offers a broad range of products|http://wwitv.com/tt/b2074.asx|http://www.rtlshop.de/ +Germany|Ruparty|273|Unknown|TV for russian german people|http://wwitv.com/tt/b2502.asx|http://www.ruparty.de/ +Germany|Sonnenklar.tv|280|Shopping|Travel shopping TV|http://wwitv.com/tt/b2076.asx|http://www.sonnenklar.tv/ +Germany|Sportswin|500|Sports|Online sportsbetting|http://wwitv.com/tt/b2221.asx|https://www.sportswin.tv/ +Germany|Sportswin TV|450|Sports|Horseracing TV|http://wwitv.com/tt/7874.asx|http://www.raze.tv +Germany|Streetclip TV|1100|Music|Music and culture channel|http://wwitv.com/tt/b2426.asx|http://www.streetclip.tv/ +Germany|Thüringer Landtag|250|General|Thüringer federal state parliament -|http://wwitv.com/tt/b2222.asx|http://www.thueringen.de/tlt/ +Germany|Traumpartner TV|500|Unknown|Internet dating|http://wwitv.com/tt/b2333.asx|http://www.traumpartner.tv/ +Germany|TRP 1|300|Regional TV|Regional television from Niederbayern (Passau)|http://wwitv.com/tt/b2111.asx|http://www.trp1.de/ +Germany|Tunespoon|380|Music|Music Videos|http://wwitv.com/tt/8088.asx|http://www.tunespoon.tv/ +Germany|TV Aktuell|300|Regional TV|Regional television from Regensburg|http://wwitv.com/tt/b2102.asx|http://www.tvaktuell.com/ +Germany|TV Augsburg|300|Regional TV|Regional TV|http://wwitv.com/tt/b2460.asx|http://www.tv-augsburg.com/ +Germany|TV Berlin|500|Local|Local TV from Berlin|http://wwitv.com/tt/b2192.asx|http://www.tvb.de/ +Germany|TV Halle|900|Local|Local TV from Halle|http://wwitv.com/tt/b1930.asx|http://www.tvhalle.de +Germany|TV Mittelrhein|300|Regional TV|Regional TV|http://wwitv.com/tt/b2461.asx|http://www.tv-mittelrhein.com/ +Germany|TV Sauerland|555|Regional TV|Regional TV from Sauerland|http://wwitv.com/tt/b3237.asx|http://www.sauerland-tv.de/ +Germany|TV Schwaben|300|Local|Local TV from Ulm|http://wwitv.com/tt/b3238.asx|http://www.regio-tv.com/ +Germany|TV shop|300|Music|Fitness, wellness, health, domestic, music and spare|http://wwitv.com/tt/7976.asx|http://www.tvshop.com/ +Germany|TV Suedbaden|350|Regional TV|Regional Television from Freiburg|http://wwitv.com/tt/7947.asx|http://www.funkhaus-freiburg.de/ +Germany|TV Touring 1|300|Unknown|TV touring Aschaffenburg|http://wwitv.com/tt/b2098.asx|http://www.tvtouring.de/ +Germany|TV Touring 2|300|Unknown|TV touring Schweinfurt|http://wwitv.com/tt/b2099.asx|http://www.tvtouring.de/ +Germany|TV Touring 3|300|Unknown|TV touring Würzburg|http://wwitv.com/tt/b2100.asx|http://www.tvtouring.de/ +Germany|TVO|300|Unknown|TV from Oberfranken|http://wwitv.com/tt/b2067.asx|http://www.tv-oberfranken.de +Germany|WDR|300|News|The main news programs of the Westdeutscher Rundfunk are shown|http://wwitv.com/tt/7200.ram|http://www.wdr.de/themen/global/webmedia/ +Germany|Wetter|440|Weather|Recorded and live weatherforecast|http://wwitv.com/tt/8433.asx|http://www.wetter.com/ +Germany|WM TV|517|Regional TV|Regional TV for Münsterland / Münster|http://wwitv.com/tt/b2334.asx|http://www.wmtv-online.de/webtv/dsl/vidstart2.html +Germany|Wuerfelzucker.tv|500|Music|German music|http://wwitv.com/tt/b2387.asx|http://www.wuerfelzucker.tv/ +Germany|WWTV|650|Local|Local TV from Wied|http://wwitv.com/tt/b3244.asx|http://www.wwtv.de/ +Germany|XEN.ON|625|Unknown|Campus Television|http://wwitv.com/tt/b2025.asx|http://www.xenonline.de/ +Germany|XXL Radio|151|Unknown|Dance / House / Techno / Trance|http://wwitv.com/tt/b1858.m3u|http://www.xxl-radio.de +Germany|ZDF|300|Public TV|On of the main public TV stations of Germany|http://wwitv.com/tt/6428.asx|http://www.zdfinfokanal.de +Greece|Astra TV|50|Unknown||http://wwitv.com/tt/8115.asx|http://www.astratv.gr/ +Greece|Delta TV|44|Regional TV|Regional TV from Eastern Macedonia and Thrace|http://wwitv.com/tt/b2420.asx|http://www.deltatv.gr/ +Greece|ERT Sat|225|National TV|National TV Station|http://wwitv.com/tt/6547.ram|http://ert.ntua.gr/index1.htm +Greece|Inet|141|General|General TV station|http://wwitv.com/tt/b2419.asx|http://tvradio.ert.gr/profile/netnew.asp +Greece|Lyxnos|45|Religious|TV from the Orthodox Bisdom in Patras|http://wwitv.com/tt/b1731.asx|http://www.i-m-patron.gr/lyxnos/ +Greece|Mad TV|331|National TV|TV station broadcasting Greek and international|http://wwitv.com/tt/6673.asx|http://www.mad.gr/ +Greece|Nikaia Church|83|Religious|Free Apostolic Church Of Pentecost|http://wwitv.com/tt/b1989.asx|http://nikaia-church.gr/ +Greece|Omega TV|200|Unknown|TV station located in Rhodes Island|http://wwitv.com/tt/b1844.asx|http://www.omegatv.net/ +Greece|OPA TV|273|Music|Music Videos and movies|http://wwitv.com/tt/7948.asx|http://www.opatv.com/ +Greece|Parliament TV|100|Unknown|Live from the Greek Parliament|http://wwitv.com/tt/b2421.asx|http://www.parliament.gr/ +Greece|Thraki Net|172|General|General TV station located at|http://wwitv.com/tt/b2762.asx|http://news.thrakinet.tv/ +Greece|TV Nea Makri|350|Unknown||http://wwitv.com/tt/b2154.m3u|http://tv.neamakri.net/ +Greece|WordofGod|100|Religious|Greek language: Christian Pentecostal Church that|http://wwitv.com/tt/8295.asx|http://www.wordofgod.gr/ +Greece|WordofGod|100|Religious|English language: Christian Pentecostal Church that|http://wwitv.com/tt/8294.asx|http://www.wordofgod.gr/ +Greece|WordofGod|100|Religious|Italian language: Christian Pentecostal Church that|http://wwitv.com/tt/8296.asx|http://www.wordofgod.gr/ +Greece|WZRA-48 TV|273|Unknown|Greek Television station that broadcasts from|http://wwitv.com/tt/b2389.asx|http://wpso.com/ +Guadaloupe|ZikTubesRadio|331|Music|Music, live concerts, interviews and|http://wwitv.com/tt/b2484.asx|http://www.ziktubesradio.com/ +Haiti|Bamboch TV|315|General|General Web TV station|http://wwitv.com/tt/b2434.asx|http://www.bambochtv.com/ +Honduras|Canal 6|250|News|News Station|http://wwitv.com/tt/b2634.asx|http://www.noti6.com +Honduras|JBN TV|100|Religious|Christian TV channel|http://wwitv.com/tt/b1937.m3u|http://www.jbntv.org/ +Honduras|Maya TV|141|News|News from Honduras|http://wwitv.com/tt/b2342.asx|http://www.maya-tv.com/ +Hungary|ATV|470|General|General TV station|http://wwitv.com/tt/6777.asx|http://www.atv.hu +Hungary|Duna II Autonomia|300|General|General TV station|http://wwitv.com/tt/b1730.asx|http://www.dunatv.hu/autonomiatvrol/ +Hungary|DUNA TV|350|News|Newsarchive from Hungary available on website|http://wwitv.com/tt/6414.asx|http://www.dunatv.hu +Hungary|E-Klub|400|Music|Dance Music|http://wwitv.com/tt/b2371.asx|http://allnight.e-klub.hu/ +Hungary|Esküvö TV|478|Unknown|Wedding TV|http://wwitv.com/tt/7772.asx|http://www.partytv.hu/ +Hungary|Fix TV|1000|Web TV|Web TV|http://wwitv.com/tt/b1645.asx|http://www.fixtv.hu +Hungary|FLP TV|120|Unknown||http://wwitv.com/tt/b1597.asx|http://magyarportal.hu/ +Hungary|Full Arts TV|140|Unknown||http://wwitv.com/tt/b1706.asx|http://www.fullarts.hu/ +Hungary|Gotthard TV|286|Unknown|TV from the city Szentgotthard|http://wwitv.com/tt/b2069.m3u|http://www.gotthardtv.hu/ +Hungary|Halom TV|273|Unknown|TV station from the city of Szazhalombatta|http://wwitv.com/tt/7872.asx|http://www.halomtv.hu/ +Hungary|HIR TV|300|News|News TV|http://wwitv.com/tt/7813.asx|http://www.hirtv.hu/ +Hungary|Hotspot|700|General|General music TV channel|http://wwitv.com/tt/b2318.asx|http://www.hotspot-tv.net/ +Hungary|Kolcsey TV|177|Unknown||http://wwitv.com/tt/b2125.m3u|http://www.kolcseytv.hu +Hungary|M1 Mateszalka|290|Local|Local cable TV station from Mateszalka|http://wwitv.com/tt/b2188.asx|http://www.m1tv.hu/ +Hungary|M1 TV|100|Music|National TV with news , entertainment, music, film and|http://wwitv.com/tt/7080.asx|http://www.hirado.hu/nettv.php +Hungary|M2 TV|100|Music|National TV with news , entertainment, music, film and|http://wwitv.com/tt/b2178.asx|http://www.hirado.hu +Hungary|Mese TV|272|Children|TV for children|http://wwitv.com/tt/b2016.m3u|http://mese.tv/ +Hungary|MM VTV|180|Unknown|Mosonmagyarovar Varosi Televizio|http://wwitv.com/tt/b2155.m3u|http://www.mmvtv.hu/ +Hungary|NY TV|350|Local|Local TV from Nyireghaza|http://wwitv.com/tt/b2170.asx|http://www.nyiregyhazitv.hu/ +Hungary|Pecs TV|200|General|General TV from Pecs|http://wwitv.com/tt/7875.m3u|http://www.pecstv.hu/archivum/ +Hungary|Sopron TV|120|Local|Local TV from Sopron|http://wwitv.com/tt/b2445.asx|http://www.soprontv.hu/ +Hungary|Supernet Piros|500|General|General Internet TV station|http://wwitv.com/tt/b1601.asx|http://www.szupernet.tv/ +Hungary|SZTV|450|Local|Local TV from Szombathely|http://wwitv.com/tt/b2438.asx|http://www.tvszombathely.hu/ +Hungary|Varosi TV|250|Unknown|TV from Szeged|http://wwitv.com/tt/b2169.asx|http://www.vtvszeged.hu/site/index.php +Hungary|Zenit TV|100|General|General TV station|http://wwitv.com/tt/7812.asx|http://www.zenittv.hu/ +Hungary|Zuglo TV|273|Cable TV|Cable TV station from Budapest|http://wwitv.com/tt/b1860.asx|http://www.zuglotv.hu/ +Iceland|Althingi|330|Unknown|A live broadcasting of the Icelandic senate. Only when|http://wwitv.com/tt/7450.asx|http://www.althingi.is/vefur/mp.html +India|B4U|400|Music|Bollywood music|http://wwitv.com/tt/b2605.asx|http://www.b4utv.com +India|CNBC TV18|273|Unknown|Business TV|http://wwitv.com/tt/b1486.asx|http://www.moneycontrol.com/ +India|DD news|50|News|News station|http://wwitv.com/tt/b2782.asx|http://www.ddinews.gov.in/ +India|Doordarshan|45|National TV|National TV Station|http://wwitv.com/tt/33.ram|http://www.ddindia.com/ +India|GSTV|96|News|Gujarati language news|http://wwitv.com/tt/8226.asx|http://www.gstvnews.com/ +India|IBN 7|200|News|News channel|http://wwitv.com/tt/b2367.asx|http://www.ibnlive.com/ +India|IBN Live|250|News|News channel|http://wwitv.com/tt/b1605.asx|http://www.ibnlive.com/ +India|Jesus Calls|300|Religious|Christian TV channel|http://wwitv.com/tt/b2063.asx|http://www.numtv.com/jesuscalls/test/check.asp +India|NetGuruIndia|225|News|Nice broadcast of News in multiple languages (eg|http://wwitv.com/tt/6491.ram|http://www.netguruindia.com/vnews/newsindex.asp +India|Raj TV|273|General|General TV station|http://wwitv.com/tt/b3210.asx|http://www.rajtvnet.in +India|Sanskar TV|273|Religious|Spiritual channel|http://wwitv.com/tt/b1490.asx|http://www.sanskartv.info/ +India|Satsang TV|100|Religious|Spiritual channel|http://wwitv.com/tt/b2783.asx|http://www.sanskartv.info/ +India|Zee TV|100|Unknown||http://wwitv.com/tt/7249.asx|http://www.zeetelevision.com/ +Indonesia|Liputan 6|50|News|Recorded news|http://wwitv.com/tt/7519.smil|http://www.liputan6.com/ +Indonesia|TRI TV|331|Public TV|Public Internet TV only -Indonesia & English|http://wwitv.com/tt/8389.asx|http://tritv.net/ +Iran|Al Kawthar TV|273|Unknown||http://wwitv.com/tt/b1667.asx|http://www.alkawthartv.ir/ +Iran|Alalam|273|Satellite TV|Satellite television station in Arabic offering|http://wwitv.com/tt/7424.asx|http://www.alalam.ir +Iran|Amouzesh|273|Education|Educational TV (IRIB)|http://wwitv.com/tt/7490.asx|http://www.irib.ir +Iran|Channel 1|45|Unknown|TV station is located in the USA|http://wwitv.com/tt/7304.asx|http://www.channelonetv.com/ +Iran|Didar Global TV|110|Unknown|TV station located in Hamilton (ON) in Persian|http://wwitv.com/tt/b1881.asx|http://www.didarglobaltv.com/ +Iran|Iran NTV (Simay-Azadi)|450|News|News station|http://wwitv.com/tt/6978.asx|http://www.iranntv.com/ +Iran|Irib TV1|273|National TV|National TV Station with various programmes|http://wwitv.com/tt/34.asx|http://www.irib.ir/ +Iran|Irib TV2|100|National TV|National TV station with various programs|http://wwitv.com/tt/7488.asx|http://tv2.irib.ir/ +Iran|Irib TV3|273|National TV|National TV Station with various programmes|http://wwitv.com/tt/35.asx|http://www.irib.ir/ +Iran|Irib TV4|270|National TV|National TV station full of documentaries and scientific|http://wwitv.com/tt/7487.asx|http://tv4.irib.ir/ +Iran|Irib TV5|100|Unknown||http://wwitv.com/tt/7489.asx|http://tv5.irib.ir/ +Iran|Irinn|273|News|News TV station|http://wwitv.com/tt/b2510.asx|http://www.irinn.ir/ +Iran|IRTV|54|News|Recorded news (weekly updated). IRTV is an Iranian tv|http://wwitv.com/tt/7511.asx|http://www.irtv.com +Iran|Jam e Jam 1|273|Unknown|Jamejam1 Broadcasting around Europe and asia. For|http://wwitv.com/tt/7430.asx|http://www.jame-jam.ir/ +Iran|Jam e Jam 2|273|Unknown|Jam e Jam 2 available in America and asia|http://wwitv.com/tt/7429.asx|http://www.jame-jam.ir/ +Iran|Jam e Jam 3|273|Public TV|Islamic Republic of Iran Broadcasting|http://wwitv.com/tt/7334.asx|http://www.irib.ir/ +Iran|Markazi TV|222|General|General TV station|http://wwitv.com/tt/8299.asx|http://www.markazitv.com/ +Iran|Mohabat TV|141|Religious|Persian christian channel|http://wwitv.com/tt/b2455.asx|http://www.mohabat.tv +Iran|News TV|273|News|Khabar news TV|http://wwitv.com/tt/7512.asx|http://www.irib.ir +Iran|Pars TV|100|Unknown||http://wwitv.com/tt/b2141.asx|http://www.parstvnetwork.com/ +Iran|Quran TV|273|Unknown||http://wwitv.com/tt/b1618.asx|http://qurantv.irib.ir/ +Iran|Sahar TV1|273|Unknown||http://wwitv.com/tt/b1558.asx|http://www.irib.ir/ +Iran|Sahar TV2|273|Unknown||http://wwitv.com/tt/b1559.asx|http://www.irib.ir +Iran|Salaam TV|222|Unknown|Islamic channel|http://wwitv.com/tt/b1679.asx|http://www.salaamtv.com/ +Iran|XTV|220|Unknown||http://wwitv.com/tt/b1882.asx|http://www.iranxtv.com/ +Iraq|Ahlulbayt Satellite|100|Community|Community Access TV|http://wwitv.com/tt/b3198.asx|http://www.ahlulbayt.tv/ +Iraq|Alforat TV|273|National TV|National TV Station|http://wwitv.com/tt/7946.asx|http://www.alforattv.net/ +Iraq|Alsharqiya TV|30|News|News TV|http://wwitv.com/tt/8002.asx|http://www.alsharqiya.com/ +Iraq|Iraqi Media Net|102|Unknown||http://wwitv.com/tt/b1906.asx|http://www.iraqimedianet.net/ +Iraq|KBSV|250|Unknown|Assyrian TV station|http://wwitv.com/tt/7625.asx|http://www.betnahrain.org/kbsv/kbsv.htm +Ireland|Dail Eireann|1120|Unknown|Live Webcasts of the Houses of the Oireachtas|http://wwitv.com/tt/b2492.asx|http://www.oireachtas.ie/viewdoc.asp?fn=/documents/livewebcast/Web-Live.htm&CatID=83&m=w +Ireland|RTE|100|News|Recorded news|http://wwitv.com/tt/7369.ram|http://www.rte.ie/news/ +Ireland|Seanad|1120|Unknown|Live Webcasts of the Houses of the Oireachtas (the|http://wwitv.com/tt/b2465.asx|http://www.oireachtas.ie/viewdoc.asp?fn=/documents/livewebcast/Web-Live.htm&CatID=83&m=w +Israel|Arutz TV|400|Shopping|Offers online products|http://wwitv.com/tt/7847.asx|http://www.21.tv/ +Israel|Channel 10|1000|General|General TV station|http://wwitv.com/tt/b2533.asx|http://10.tv/ +Israel|Channel 10 News|240|News|News TV station. 20:00-21:00 main news - 22:45 or|http://wwitv.com/tt/b1885.asx|http://news.walla.co.il/ts.cgi?tsscript=ch10 +Israel|Clip TV|432|Music|Music TV|http://wwitv.com/tt/b2763.asx|http://www.cliptv.co.il +Israel|Hasulam TV|150|Unknown|Hebrew TV about wisdom of kabbalah and tora|http://wwitv.com/tt/b2112.asx|http://www.hasulam.co.il/ +Israel|IBA Channel 3|90|Unknown|Ch. 3 relays from the Knesset. See program schedule|http://wwitv.com/tt/7302.asx|http://www.knesset.gov.il/broadcast/heb/screen.asp +Israel|Israel Plus TV|300|News|News, Entertaining programs , Films and serials in|http://wwitv.com/tt/b2080.asx|http://www.israel-plus.tv/ +Israel|Kabbalah|225|Unknown|Bnei baruch - israel brings you the wisdom of kabbalah -|http://wwitv.com/tt/7934.asx|http://www.kabbalah.info/engkab/live_broadcast.php +Israel|Keshet TV|400|News|Recorded news available on the website|http://wwitv.com/tt/b2110.asx|http://www.keshet-tv.com/NewsLobby.aspx +Israel|Knesset TV|93|Unknown|Live view into the political arena of Israel|http://wwitv.com/tt/7718.asx|http://knesset.gov.il/broadcast/heb/BroadcastScreen.aspx +Israel|Layla|350|Unknown|Israeli night life channel|http://wwitv.com/tt/b2699.asx|http://www.layla.co.il/ +Israel|Machonmeir|232|Religious|Religious lectures in Hebrew|http://wwitv.com/tt/b2048.asx|http://www.machonmeir.org.il/ +Israel|The Academic Channel|330|Education|University TV channel from Haifa|http://wwitv.com/tt/7793.asx|http://channel.haifa.ac.il/ +Israel|TTVV|500|Unknown|Experimental TV|http://wwitv.com/tt/b2707.asx|http://www.ttvv.tv/ +Israel|WFM|350|Unknown|WFM - Sitting On The WEB|http://wwitv.com/tt/7586.asx|http://www.wfm.co.il +Italy|24 Ore TV|273|News|24/7 live economical and financial news and|http://wwitv.com/tt/6865.asx|http://www.ilsole24ore.com/ +Italy|3 Channel|320|Satellite TV|Satellite channel (Sky Canale 872)|http://wwitv.com/tt/b1654.asx|http://www.3channel.it/ +Italy|All Music|242|General|General music TV station|http://wwitv.com/tt/8304.asx|http://www.reteallmusic.it/ +Italy|Antenna 6|280|Web TV|Web TV|http://wwitv.com/tt/b1473.asx|http://www.antenna6.tv/ +Italy|Antenna Sicilia|220|Local|Local TV|http://wwitv.com/tt/b1724.ram|http://www.antennasicilia.it/ +Italy|Camera dei Deputati|45|Unknown|Live from Montecitorio|http://wwitv.com/tt/5772.ram|http://www.radioradicale.it/ +Italy|Canale 10|273|Local|Local TV from Marcianise (CE)|http://wwitv.com/tt/b1717.asx|http://www.canaledieci.net/ +Italy|Canale 66|200|Local|Local TV from Szczecin|http://wwitv.com/tt/b2044.asx|http://www.canale66.com/ +Italy|CFN / CNBC|520|News|Financial news from Milan|http://wwitv.com/tt/8065.asx|http://www.cfn.it/ +Italy|CLASS NEWS|520|News|All-news TV from Milan|http://wwitv.com/tt/8066.asx|http://www.classcity.it/class_city/contenuti/classcity.htm +Italy|Deejay TV|242|Music|Populair music|http://wwitv.com/tt/6781.asx|http://www.deejay.it +Italy|EBS|45|Unknown|Live broadcasting on the Net|http://wwitv.com/tt/5774.ram|http://www.radioradicale.it/ +Italy|Exformat|1128|News|Film, fiction and news|http://wwitv.com/tt/b2024.asx|http://www.exformat.com/ +Italy|Futura TV|341|National TV|National TV related to RAI|http://wwitv.com/tt/b1574.asx|http://www.futuratv.rai.it/ +Italy|GRP|35|Unknown|Giornale RadioTelevisivo Poemonte|http://wwitv.com/tt/7854.asx|http://www.grp.it/ +Italy|Impresa Live|350|Unknown|Chamber of Commerce of Milan|http://wwitv.com/tt/b1718.asx|http://www.impresalive.tv/ +Italy|LA 8|200|Unknown||http://wwitv.com/tt/b2404.asx|http://www.la9.it/ +Italy|LA 9|312|Unknown||http://wwitv.com/tt/b2047.asx|http://www.la9.it/ +Italy|LA9 Sat|220|Local|Local TV from Padova|http://wwitv.com/tt/b3200.asx|http://www.la9.it/ +Italy|Lazio TV|273|Regional TV|Regional TV from Lazio|http://wwitv.com/tt/b3199.asx|http://www.laziotv.com/ +Italy|Lira TV|75|Local|Local TV from Salerno|http://wwitv.com/tt/b1653.asx|http://www.liratv.it/ +Italy|Magic TV|100|Music|Music TV station|http://wwitv.com/tt/7012.asx|http://www.magictv.tv/ +Italy|Mediashopping|250|Shopping|Shopping TV|http://wwitv.com/tt/b2720.asx|http://www.mediashopping.it/ +Italy|Meteo Channel|542|Weather|Weather forecast for Europe|http://wwitv.com/tt/b1946.asx|http://www.meteo.it/ +Italy|Meteo Channel|542|Weather|Weather forecast for Italy|http://wwitv.com/tt/b1655.asx|http://www.meteo.it/ +Italy|Msat 1|50|Local|Local TV from Modica (Sicily)|http://wwitv.com/tt/b3202.asx|http://www.mediterranei.it/ +Italy|Omega TV|270|Music|Trance Hardtrance music|http://wwitv.com/tt/b1563.m3u|http://www.omgtv.net +Italy|Onda TV|200|Local|Local TV from Messinese|http://wwitv.com/tt/7851.asx|http://www.ondatv.it +Italy|Play TV|350|Satellite TV|Satellite channel (Sky Canale 869)|http://wwitv.com/tt/b1657.asx|http://www.playtvitalia.it/ +Italy|PNBox TV|350|Local|Local TV from Pordenone|http://wwitv.com/tt/b2719.asx|http://www.pnbox.tv/ +Italy|Primocanale|520|Regional TV|Regional television from Liguria|http://wwitv.com/tt/8250.asx|http://www.primocanale.it/ +Italy|QOOB TV|150|Music|Alternative music and video art|http://wwitv.com/tt/b2343.asx|http://www.qoob.tv/ +Italy|Quarto Canale TV|140|Local|Local TV from Pagani (Salerno)|http://wwitv.com/tt/b1594.asx|http://www.quartocanaletv.it/ +Italy|Radio Italia|100|Music|Music TV station with Italian music|http://wwitv.com/tt/7398.asx|http://www.radioitalia.it/ +Italy|Radio SNJ|150|Music|Interviews and music|http://wwitv.com/tt/b2722.asx|http://www.radiosnj.com/ +Italy|Rai|150|News|Recorded Italian public television news|http://wwitv.com/tt/6827.ram|http://rai.it/ +Italy|Rai News 24|300|News|Live news broadcast|http://wwitv.com/tt/7560.asx|http://www.rainews24.rai.it/ +Italy|Rai Sport|100|Sports|Recorded sports update|http://wwitv.com/tt/b2277.ram|http://www.raisport.rai.it/ +Italy|Rai Utile|290|Unknown|Stream with various subjects that are being broadcast by|http://wwitv.com/tt/8246.asx|http://www.raiutile.rai.it/ +Italy|Repubblica|232|News|News. Video only available from 10:00 and 13:00 (local|http://wwitv.com/tt/b1536.asx|http://www.repubblica.it/ +Italy|RMK TV|50|Local|Local TV from Sciacca (AG)|http://wwitv.com/tt/b2721.asx|http://www.rmk.it/ +Italy|ROMAuno|348|Unknown|TV from Rome|http://wwitv.com/tt/7993.asx|http://www.romauno.tv/ +Italy|RTL 102.5|300|Music|Populair music|http://wwitv.com/tt/6967.asx|http://www.rtl.it/ +Italy|RTS TV|60|Unknown|Tele Radio salento|http://wwitv.com/tt/8117.asx|http://www.rtstv.it/ +Italy|RTV 38|245|Unknown|TV network that has coverage in Tuscany, Liguria, Umbria,|http://wwitv.com/tt/8034.asx|http://www.rtv38.com/rtv38.html +Italy|Senato della Repubblica|45|Unknown|Located at Palazzo Madama|http://wwitv.com/tt/5773.ram|http://www.radioradicale.it/ +Italy|Sicilia TV|80|General|General Television station|http://wwitv.com/tt/7720.asx|http://www.siciliatv.org/ +Italy|Sky life TG24|539|General|General TV station with news|http://wwitv.com/tt/b2522.asx|http://www.skylife.it/html/skylife/tg24/ +Italy|Tef Channel|273|General|General TV station|http://wwitv.com/tt/b1723.asx|http://www.italianet.tv/ +Italy|Tele D1|270|General|General TV station|http://wwitv.com/tt/b1656.asx|http://www.d1television.it/ +Italy|Tele Liguria Sud|311|Local|Local television from La Spezia with Sport and|http://wwitv.com/tt/8284.asx|http://www.teleliguriasud.it/ +Italy|Telecapri|140|Sports|Sport channel with soccer|http://wwitv.com/tt/7987.asx|http://www.telecaprisport.it/ +Italy|Telecolor|220|Local|Local TV station|http://wwitv.com/tt/7445.ram|http://www.telecolor.it/ +Italy|Telemolise|90|Local|Local station from Compobasso. Recorded streams|http://wwitv.com/tt/6677.asx|http://www.telemolise.com/ +Italy|Teleregione|289|Local|Local TV from Barletta|http://wwitv.com/tt/b2986.asx|http://www.teleregionecolor.it/ +Italy|Telesirio|225|Regional TV|Regional tv station|http://wwitv.com/tt/7396.ram|http://www.telesirio.it/ +Italy|Teletruria|387|Local|Local TV of Arezzo|http://wwitv.com/tt/8037.asx|http://www.flynet.tv/noflynet/index.htm +Italy|TG7|190|News|Recorded news|http://wwitv.com/tt/7416.asx|http://www.virgilio.it/ +Italy|TGS|273|News|ROME TGS VIOLINA national news, regional news culture and|http://wwitv.com/tt/3825.asx|http://www.videolina.it/ +Italy|Tizianasat|45|Unknown||http://wwitv.com/tt/6924.asx|http://www.tizianalotto.it/ +Italy|TRBC|50|Religious|Catholic channel|http://wwitv.com/tt/b2664.asx|http://www.immacolata.com/ +Italy|TRSP|40|Local|Local TV from Vasto|http://wwitv.com/tt/7721.asx|http://www.trsp.it/ +Italy|TV Mediterraneo|50|News|Located in Modica. Recorded news available on|http://wwitv.com/tt/8081.asx|http://www.mediterranei.it/ +Italy|TV Oggi|550|General|General TV station|http://wwitv.com/tt/b1713.asx|http://www.tvoggisalerno.it/ +Italy|TV Padre Pio|100|Religious|Religious TV channel|http://wwitv.com/tt/7011.asx|http://www.teleradiopadrepio.it +Italy|TV Parma|250|Local|Local TV from Parma|http://wwitv.com/tt/8020.asx|http://www.tvparma.it/index.html +Italy|TVA|220|Unknown|Television station located in Vicenza|http://wwitv.com/tt/6970.ram|http://www.vicenzacity.com +Italy|TVR Teleitalia|218|Regional TV|Regional TV station from Toscane|http://wwitv.com/tt/8137.asx|http://www.tvrteleitalia.it/ +Italy|Vatican TV|100|Unknown|Only transmitting during some parts of the day when|http://wwitv.com/tt/b2736.ram|http://www.radiovaticana.org/ +Italy|Videolina|273|Local|Local TV station, located in Cagliari|http://wwitv.com/tt/7980.asx|http://www.videolina.it/ +Jamaica|Rascast|90|Music|Music TV (Reggaeton Music)|http://wwitv.com/tt/b1568.m3u|http://www.rascast.com/ +Japan|FNN|300|News|News From The Fuji News Network|http://wwitv.com/tt/2099.ram|http://www.fnn-news.com/ +Japan|IIV Channel|500|Unknown|Internet Interactive Channel|http://wwitv.com/tt/7977.asx|http://www.iiv.ne.jp/ +Japan|Impress TV|300|General|General TV station|http://wwitv.com/tt/7093.asx|http://impress.tv +Japan|JAL TV|250|Unknown|Japanese Airlines TV|http://wwitv.com/tt/7542.asx|http://www.jal.co.jp/broadband/ +Japan|LFX|300|Unknown|TV station from Tokyo (live: 9am-9pm)|http://wwitv.com/tt/7096.asx|http://www.lfx.jp/ +Japan|Mid Live|300|News|Market News|http://wwitv.com/tt/7094.asx|http://impress.tv/fi/index.htm +Japan|Odoroku TV|500|General|General entertainment|http://wwitv.com/tt/8087.asx|http://odoroku.tv/ +Japan|Oh!sama TV Ch. 1|300|Music|Music channel provided by King|http://wwitv.com/tt/b1555.asx|http://www.ohsama.tv +Japan|Oh!sama TV Ch. 2|300|Music|Music channel provided by King|http://wwitv.com/tt/b2365.asx|http://www.ohsama.tv/ +Japan|POD TV|56|Unknown||http://wwitv.com/tt/8407.asx|http://www.pod.tv +Japan|QVC|285|Shopping|(Home Shopping) Offers a broad range of products|http://wwitv.com/tt/b2248.asx|http://qvc.jp +Japan|Sony Music|300|Music|Populair music|http://wwitv.com/tt/b2366.asx|http://www.sonymusic.co.jp/ +Japan|TBS News|225|News|Tokyo Broadcasting System, Inc. News archive available on|http://wwitv.com/tt/6553.asx|http://news.tbs.co.jp/3snewsi/ +Japan|TFMI|300|Unknown||http://wwitv.com/tt/8119.asx|http://www.tfmi.co.jp/ +Japan|Yomiuri|280|News|The Daily Yomiuri News|http://wwitv.com/tt/42.asx|http://www.yomiuri.co.jp/ +Jordan|Jordan TV|100|News|News, entertainment, documentaries, cultural and|http://wwitv.com/tt/7912.asx|http://www.jrtv.jo/ +Jordan|Jordan TV|150|News|News, entertainment, documentaries, cultural and|http://wwitv.com/tt/121.ram|http://www.jrtv.jo/ +Kazakhstan|CNL|259|Religious|Christian TV channel|http://wwitv.com/tt/b2569.asx|http://www.cnl.info/ +Korea, south|Andong MBC|225|Unknown||http://wwitv.com/tt/45.asx|http://www.andongmbc.co.kr/ +Korea, south|C3TV|273|Religious|Christian Internet Broadcasting|http://wwitv.com/tt/7468.asx|http://c3tv.com/ +Korea, south|CBS|143|Unknown||http://wwitv.com/tt/b1833.asx|http://www.cbs.co.kr/ +Korea, south|CGNTV|140|Religious|Christian Gospel channel|http://wwitv.com/tt/b1575.asx|http://www.cgntv.net/ +Korea, south|CJB|253|Unknown||http://wwitv.com/tt/b1834.asx|http://www.cjb.co.kr/ +Korea, south|EBS Sat|300|Unknown|TV station located in Seoul|http://wwitv.com/tt/2053.asx|http://www.ebs.co.kr/ +Korea, south|GN MBC|100|Unknown||http://wwitv.com/tt/b2261.asx|http://www.gnmbc.co.kr/ +Korea, south|GTB SBS|350|General|General TV station|http://wwitv.com/tt/8000.asx|http://www.igtb.co.kr/ +Korea, south|Hmall Shop TV|500|Shopping|Offers a broad range of products|http://wwitv.com/tt/7661.asx|http://www.hmall.com/ +Korea, south|KBS 1|150|National TV|International TV station located in seoul|http://wwitv.com/tt/43.asx|http://www.kbs.co.kr/ +Korea, south|KBS 2|150|National TV|International TV station located in Seoul|http://wwitv.com/tt/44.asx|http://www.kbs.co.kr/ +Korea, south|KCTV|190|Unknown||http://wwitv.com/tt/8360.asx|http://www.kctvjeju.com/ +Korea, south|KTV|300|National TV|Korean National Visual Media and Publishing Center|http://wwitv.com/tt/7059.asx|http://www.ktv.go.kr/ +Korea, south|Masan MBC|350|Unknown|Masan Munhwa Boardcasting Cooperation (not always|http://wwitv.com/tt/7654.asx|http://www.masanmbc.co.kr +Korea, south|MBN|200|Unknown|Business and Economy Television|http://wwitv.com/tt/8225.asx|http://www.mbn.co.kr/ +Korea, south|PBC|242|Religious|Catholic TV Channel|http://wwitv.com/tt/7891.asx|http://www.pbc.co.kr/ +Korea, south|Taejon MBC TV|300|Unknown||http://wwitv.com/tt/b2264.asx|http://www.tjmbc.co.kr/ +Korea, south|TBC|200|Unknown|Taegu Broadcasting Cooperation|http://wwitv.com/tt/7311.asx|http://www.tbc.co.kr/ +Korea, south|Wow TV|200|Unknown||http://wwitv.com/tt/b1830.asx|http://wowtv.co.kr/ +Korea, south|YTN|200|News|24-hour news and current affairs|http://wwitv.com/tt/b1976.asx|http://www.ytn.co.kr/ +Kosovo|Gazeta Besa|141|Local|Local TV in Albanian language|http://wwitv.com/tt/b2485.asx|http://gazetabesa.com/ +Kurdistan|Kurdistan TV|250|General|General Television station|http://wwitv.com/tt/7395.asx|http://www.kurdistan.tv/ +Kurdistan|MMC|241|Music|Kurdish music|http://wwitv.com/tt/b2442.asx|http://www.mmc.tv/ +Kurdistan|ROJ TV|250|Community|TV station for the Kurdish community located in|http://wwitv.com/tt/7899.asx|http://www.roj.tv/ +Kuwait|Alkarbalaeia|85|Unknown||http://wwitv.com/tt/8221.ram|http://www.alkarbalaeia.net/ +Latvia|Eurosports|240|Sports|Fighting sports|http://wwitv.com/tt/7819.asx|http://www.eurosports.lv/ +Latvia|STV|300|Music|Music, news, culture and other information. Internet TV|http://wwitv.com/tt/7550.asx|http://www.stv.lv/ +Latvia|TV 24|900|News|News channel|http://wwitv.com/tt/b1668.asx|http://www.tv24.lv/ +Lebanon|Al Manar|128|News|Hezbollah's news TV (not always available)|http://wwitv.com/tt/7668.asx|http://www.wa3ad.org/ +Lebanon|Future TV|150|News|Recorded news|http://wwitv.com/tt/7403.asx|http://www.futuretvnetwork.com/Default.aspx?page=video +Libya|LJBC TV|273|News|Jamahiriya Broadcasting Corporation. The main news|http://wwitv.com/tt/b1951.asx|http://www.ljbc.net/ +Libya|Nadi TV|273|Sports|News, sports, Radio and TV broadcasting|http://wwitv.com/tt/7046.asx|http://www.ljbc.net/ +Lithuania|STV|503|Local|Local TV station|http://wwitv.com/tt/b2506.asx|http://www.stv.lt/ +Luxemburg|RTL|273|General|General TV station with sports, news, culture and|http://wwitv.com/tt/7581.asx|http://www.rtl.lu/home.rtl +Luxemburg|RTL|300|General|General TV station|http://wwitv.com/tt/6919.asx|http://www.rtl.lu +Luxemburg|Tango TV|200|General|General TV station. TTV is a new chain of television in|http://wwitv.com/tt/7529.asx|http://www.ttv.lu/index.php?option=antenne&action=live +Macedonia|A1|45|News|Evening news|http://wwitv.com/tt/6833.ram|http://media.a1.com.mk/members/ +Macedonia|A1 Meteo|80|Weather|Recorded weather forecast|http://wwitv.com/tt/b2737.ram|http://media.a1.com.mk/members/ +Macedonia|Kanal 5|45|News|Daily updated evening newscasts from the privately owned|http://wwitv.com/tt/7284.asx|http://www.kanal5.com.mk/ +Macedonia|TV TELMA|35|News|Daily recorded news broadcast from Macedonia|http://wwitv.com/tt/7187.ram|http://www.telma.com.mk/ +Malaysia|Cyberjaya TV|118|Unknown|Live streaming from Malaysia's ICT hub|http://wwitv.com/tt/7540.asx|http://www.cyberjayatv.net/ +Malaysia|RTM TV1|273|Sports|Sports, news, entertainment, movie, drama and|http://wwitv.com/tt/7449.asx|http://www.rtm.net.my/ +Malaysia|RTM TV2|273|Public TV|Public service broadcaster|http://wwitv.com/tt/8084.asx|http://www.rtm.net.my/ +Malaysia|WTV-8|102|Unknown||http://wwitv.com/tt/b1841.asx|http://www.wtv8.tv/ +Malta|Net TV|300|Unknown|A private TV station viewing starts 07.00 to 24.00|http://wwitv.com/tt/7837.asx|http://www.di-ve.com/ +Malta|Net TV|93|Unknown|A private TV station viewing starts 07.00 to 24.00|http://wwitv.com/tt/7836.asx|http://www.nettv.com.mt/ +Malta|Smash TV|220|Local|Local TV from Paola|http://wwitv.com/tt/7038.asx|http://www.smashmalta.com/ +Malta|Super 1|300|General|General TV station|http://wwitv.com/tt/6802.asx|http://www.super1.com +Malta|TVM|348|National TV|Malta's national television station (not always|http://wwitv.com/tt/7206.asx|http://www.pbs.com.mt +Mauritania|TVM|100|National TV|National TV|http://wwitv.com/tt/b2457.asx|http://www.tvm.mr/ +Mexico|Aguascalientes TV|50|Government|Government TV from Aguascalientes|http://wwitv.com/tt/b3035.ram|http://www.aguascalientes.gob.mx +Mexico|Canal 10|273|Local|Local TV from Cancun. Not always online!|http://wwitv.com/tt/b2120.asx|http://www.canal10cancun.com/ +Mexico|Canal 11 TV|226|Unknown|On Demand-television, interviews, talkshows,|http://wwitv.com/tt/7335.ram|http://oncetv-ipn.net/index.php +Mexico|Canal 22|100|Unknown|Located in Mexico, D.F|http://wwitv.com/tt/b2121.asx|http://www.canal22.org.mx/ +Mexico|Canal 44|153|Local|Local TV from Cd. Juarez, Chihuahua|http://wwitv.com/tt/b3254.asx|http://www.canal44.com/ +Mexico|Canal 53 (UANL-TV)|53|Education|University Autonoma de Nuevo Leon|http://wwitv.com/tt/b2253.asx|http://www.uanl.mx/ +Mexico|Canal del Congreso|212|Unknown|Live view into the Mexican Congress|http://wwitv.com/tt/7339.asx|http://www.canaldelcongreso.gob.mx/ +Mexico|CLTV|100|Unknown|Live from 11:00 am to 01 am ET|http://wwitv.com/tt/7779.asx|http://www.cancunlivetv.com +Mexico|EDU Canal 11|100|Education|Educational TV (not always online)|http://wwitv.com/tt/8264.asx|http://dgtve.sep.gob.mx/tve/red_edusat/TVeducativa/en_linea.htm +Mexico|EDU Canal 12|100|Education|Educational TV (not always online)|http://wwitv.com/tt/7341.asx|http://dgtve.sep.gob.mx/tve/red_edusat/TVeducativa/en_linea.htm +Mexico|EDU Canal 13|100|Education|Educational TV (not always online)|http://wwitv.com/tt/8261.asx|http://dgtve.sep.gob.mx/tve/red_edusat/TVeducativa/en_linea.htm +Mexico|EDU Canal 14|100|Education|Educational TV (not always online)|http://wwitv.com/tt/7342.asx|http://dgtve.sep.gob.mx/tve/red_edusat/TVeducativa/en_linea.htm +Mexico|EDU Canal 15|100|Education|Educational TV (not always online)|http://wwitv.com/tt/8262.asx|http://dgtve.sep.gob.mx/tve/red_edusat/TVeducativa/en_linea.htm +Mexico|EDU Canal 16|100|Education|Educational TV (not always online)|http://wwitv.com/tt/7343.asx|http://dgtve.sep.gob.mx/tve/red_edusat/TVeducativa/en_linea.htm +Mexico|EDU Canal 18|100|Education|Educational TV (not always online)|http://wwitv.com/tt/8263.asx|http://dgtve.sep.gob.mx/tve/red_edusat/TVeducativa/en_linea.htm +Mexico|EDU Canal 22|270|Education|Educational TV (not always online)|http://wwitv.com/tt/7805.asx|http://dgtve.sep.gob.mx/tve/red_edusat/TVeducativa/en_linea.htm +Mexico|Grupo FM TV|350|Local|Local television from Veracruz|http://wwitv.com/tt/b1977.asx|http://www.grupofm.com/ +Mexico|IFE|100|Unknown|Electoral Federal Institute|http://wwitv.com/tt/b1992.asx|http://www.ife.org.mx/ +Mexico|Imagen|100|News|News and culture Television|http://wwitv.com/tt/7691.ram|http://www.imagen.com.mx +Mexico|Inter TV|100|Religious|Christian TV station|http://wwitv.com/tt/b2127.asx|http://cci.org.mx/ +Mexico|Mexiquense|191|Unknown|Television station located in Toluca|http://wwitv.com/tt/7937.ram|http://www.edomex.gob.mx +Mexico|Monte Maria|35|Religious|Christian TV channel|http://wwitv.com/tt/b2487.ram|http://www.montemaria.org/ +Mexico|Noticieros Televisa|100|News|Recorded news|http://wwitv.com/tt/b2274.ram|http://www.esmas.com/noticierostelevisa/ +Mexico|Noticieros Televisa|80|News|News station|http://wwitv.com/tt/7328.ram|http://www.noticierostelevisa.com/ +Mexico|OchoTV|259|Sports|Free television with music, spectacles, news and sports|http://wwitv.com/tt/b2322.asx|http://www.ochotv.com/ +Mexico|ONCE TV IPN|150|National TV|TV channel of Politecnic National Institute IPN from|http://wwitv.com/tt/7549.ram|http://www.oncetv.ipn.mx/ +Mexico|PSN|273|Unknown|Pacific Spanish Network|http://wwitv.com/tt/b2777.asx|http://www.tusuperestacion.com/ +Mexico|RTV|40|General|Veracruz State Goverment Television, News, Education, Sports|http://wwitv.com/tt/8431.ram|http://www.rtv.org.mx/ +Mexico|SCJN|132|Unknown|Supreme Court of Justice|http://wwitv.com/tt/b2000.asx|http://www.scjn.gob.mx +Mexico|Sicom|150|Education|Educational TV (estado de puebla)|http://wwitv.com/tt/8298.ram|http://www.sicom.edu.mx/ +Mexico|TV Acapulco|30|Local|Local TV station from Acapulco|http://wwitv.com/tt/8082.ram|http://www.tvacapulco.com/ +Mexico|TV Activa|110|Unknown||http://wwitv.com/tt/b1978.m3u|http://www.tvactiva.com/ +Mexico|TV de la Frontera|141|Unknown|Canal 5 from Chihuahua|http://wwitv.com/tt/b1939.asx|http://www.xejtv.com +Mexico|TV de Mente|300|Music|Rock music|http://wwitv.com/tt/7336.ram|http://www.tvdemente.com.mx +Mexico|Universidad Canal 1|270|Education|University TV from Monterrey|http://wwitv.com/tt/7340.ram|http://ruv.itesm.mx/ +Mexico|VideoRola|450|Music|Music TV|http://wwitv.com/tt/7329.ram|http://www.videorola.com.mx/ +Mexico|XEJTV|130|Local|Local television, from Cd Juarez, Chihuahua|http://wwitv.com/tt/b1475.asx|http://www.xejtv.com/ +Mongolia|TV 9|100|News|News TV|http://wwitv.com/tt/7967.ram|http://www.tv9.mn/ +Mozambique|TV Mana|40|Local|Local TV from Maputo|http://wwitv.com/tt/b1747.asx|http://www.manasat.com/php/manasat/modules.php?name=Tv_Mana_Mocambique_Online +Nepal|Nepal 1 TV|273|General|General TV station|http://wwitv.com/tt/b3223.asx|http://www.nepal1tv.com/ +Netherlands|101 TV|500|Unknown|Various programs|http://wwitv.com/tt/b2567.asx|http://portal.omroep.nl/nederland4 +Netherlands|2e Kamer|300|Unknown|Live streams from the 2e Kamer|http://wwitv.com/tt/7242.asx|http://www.tweede-kamer.nl +Netherlands|AT5|523|News|Local news from Amsterdam|http://wwitv.com/tt/6599.asx|http://www.at5.nl/videoall.asp +Netherlands|Business Class|500|News|Recorded business news|http://wwitv.com/tt/b2717.asx|http://www.rtl.nl/financien/businessclass/ +Netherlands|Consumenten TV|800|Unknown|Channel for consumers|http://wwitv.com/tt/b1509.asx|http://omroep.vara.nl/digitalethemakanalen.jsp?maintopic=424&subtopic=237842 +Netherlands|Cultura TV|800|Unknown|Culture channel|http://wwitv.com/tt/b2356.asx|http://cultura.nps.nl/ +Netherlands|DDS|200|Unknown|Experimental TV, not always online|http://wwitv.com/tt/2082.ram|http://live.dds.nl/ +Netherlands|DDS|81|Unknown|Experimental TV|http://wwitv.com/tt/6519.ram|http://live.nu/ +Netherlands|De gouden kooi|450|Unknown|Reality TV - Stream 2|http://wwitv.com/tt/b2398.asx|http://www.degoudenkooi.nl +Netherlands|De gouden kooi|450|Unknown|Reality TV - Stream 3|http://wwitv.com/tt/b2399.asx|http://www.degoudenkooi.nl +Netherlands|De gouden kooi|450|Unknown|Reality TV - Stream 4|http://wwitv.com/tt/b2400.asx|http://www.degoudenkooi.nl +Netherlands|De gouden kooi|450|Unknown|Reality TV - Stream 1|http://wwitv.com/tt/b2397.asx|http://www.degoudenkooi.nl +Netherlands|Dier en natuur TV|800|Web TV|Web TV. Selection of AVRO animal|http://wwitv.com/tt/8349.asx|http://www.avrodierennatuurtv.nl/ +Netherlands|ETV|391|Education|Local educational TV from Rotterdam|http://wwitv.com/tt/b1534.asx|http://www.etv.nl +Netherlands|Exploding TV|750|National TV|Channel dedicated to the International Film Festival|http://wwitv.com/tt/b1562.asx|http://www.explodingtelevision.net/ +Netherlands|Festival TV|700|Music|Dutch music and party TV|http://wwitv.com/tt/7773.asx|http://www.festivaltv.nl/ +Netherlands|Geloven (NCRV)|791|Religious|Christian TV|http://wwitv.com/tt/b3209.asx|http://www.ncrv.nl/geloven +Netherlands|Graafschap TV|500|Local|Local TV from Oost Gelderland|http://wwitv.com/tt/8196.asx|http://www.graafschap.tv/ +Netherlands|Hilversum best|800|Unknown|Various programs from all time|http://wwitv.com/tt/b2740.asx|http://portal.omroep.nl/hilversumbest/best +Netherlands|Hollanddoc|500|Documentaries|Documentary TV|http://wwitv.com/tt/7889.asx|http://www.vpro.nl/programma/hollanddoc/ +Netherlands|Hollandse clips|400|Music|Web TV with Dutch music|http://wwitv.com/tt/b2712.asx|http://www.hollandseclips.nl/ +Netherlands|KRO - Kindertijd|500|Children|Program for children|http://wwitv.com/tt/b2148.asx|http://kindertijd.kro.nl/ +Netherlands|KRO (opvoeden doe je zo)|700|Unknown|Programs about child|http://wwitv.com/tt/b2744.asx|http://opvoedendoejezo.kro.nl/ +Netherlands|Lotte TV|750|Unknown|Episodes of the serie Lotte|http://wwitv.com/tt/b2471.asx|http://www.talpa.tv +Netherlands|Maxx-xs|750|Movie trailers|Movie Trailers|http://wwitv.com/tt/b2168.asx|http://www.maxx-xs.nl/ +Netherlands|Museum TV|800|Web TV|Web TV. Selection of items from the Dutch Art|http://wwitv.com/tt/8348.asx|http://www.museumtv.nl/ +Netherlands|Nederland-e|800|Education|Educational channel (Omroep.nl)|http://wwitv.com/tt/b1840.asx|http://www.omroep.nl/themakanaal/player/nederland-e.html +Netherlands|Nickelodeon|1550|Children|TV for children|http://wwitv.com/tt/b2128.asx|http://www.nickelodeon.nl/ +Netherlands|NOS Jeugd journaal|500|News|News For Kids|http://wwitv.com/tt/b1721.asx|http://www.nos.nl/jeugdjournaal/voorpagina/ +Netherlands|NOS Journaal|450|News|Recordings of the NOS News|http://wwitv.com/tt/6314.asx|http://www.nos.nl/nosjournaal/archief/ +Netherlands|NOS Journaal|800|News|NOS news 24/7 365!|http://wwitv.com/tt/7890.asx|http://www.nos.nl/nosjournaal/archief +Netherlands|NostalgieNet|542|Unknown|Nostalgic TV material|http://wwitv.com/tt/b2355.asx|http://www.nostalgienet.nl/ +Netherlands|Omega TV|800|Religious|Christian channel|http://wwitv.com/tt/b3203.asx|http://www.omegatv.nl +Netherlands|Omroep Gelderland|147|Regional TV|Regional TV station|http://wwitv.com/tt/7205.asx|http://www.omroepgelderland.nl/ +Netherlands|Omroep Zeeland|1119|Regional TV|Regional Television|http://wwitv.com/tt/6841.asx|http://www.omroepzeeland.nl/ +Netherlands|Oog TV|152|Local|Local TV from Groningen|http://wwitv.com/tt/b2772.asx|http://www.oogtv.nl/ +Netherlands|PI6ATV|320|Unknown|Amateur TV repeater from Ijsselstein|http://wwitv.com/tt/b2422.asx|http://www.pi6atv.com/ +Netherlands|Politiek 24|791|Unknown|Political TV|http://wwitv.com/tt/b2573.asx|http://www.nos.nl/gfx/politiek24/ +Netherlands|Regio 22|331|Regional TV|Regional TV based in Hoorn|http://wwitv.com/tt/b2583.asx|http://www.regio22.nl/ +Netherlands|RNN7 TV|320|Local|Local TV from Zuid Holland|http://wwitv.com/tt/8197.asx|http://www.rnn7.nl/ +Netherlands|RTLZ|800|News|Live financial news (only during office times, GMT)|http://wwitv.com/tt/7454.asx|http://www.rtl.nl/financien/rtlz/video/ +Netherlands|RTV Channel|310|Music|RTV Channel is the music entertainment industry online|http://wwitv.com/tt/8126.asx|http://www.rtvchannel.tv/ +Netherlands|RTV Drenthe|300|Regional TV|Regional TV from Drenthe|http://wwitv.com/tt/b1541.asx|http://www.rtvdrenthe.nl/ +Netherlands|RTV Noord|270|Regional TV|Regional TV from Groningen|http://wwitv.com/tt/b1525.asx|http://www.tvnoord.nl/home/home_video.asp +Netherlands|RTV Noord Holland|400|Regional TV|Regional TV station which broadcasts the NOS|http://wwitv.com/tt/7127.asx|http://www.rtvnh.nl +Netherlands|RTV Oost|520|Regional TV|Regional TV station|http://wwitv.com/tt/7473.asx|http://www.rtvoost.nl/ +Netherlands|RTV West|530|Local|Local TV from Zuid-Holland|http://wwitv.com/tt/b1583.asx|http://www.rtvwest.nl +Netherlands|Sport TV|750|General|General sports channel|http://wwitv.com/tt/b2523.asx|http://www.tv.sport.nl/ +Netherlands|Sport TV|750|Sports|Basketball sports channel|http://wwitv.com/tt/b2524.asx|http://www.tv.sport.nl/ +Netherlands|Sport TV|750|Sports|Hockey sports channel|http://wwitv.com/tt/b2526.asx|http://www.tv.sport.nl/ +Netherlands|Sport TV|750|Sports|Korfbal sports channel|http://wwitv.com/tt/b2527.asx|http://www.tv.sport.nl/ +Netherlands|Sport TV|750|Sports|Volleyball sports channel|http://wwitv.com/tt/b2528.asx|http://www.tv.sport.nl/ +Netherlands|Sport TV|750|Sports|Waterpolo sports channel|http://wwitv.com/tt/b2529.asx|http://www.tv.sport.nl/ +Netherlands|Sport TV|750|Sports|Handbal sports channel|http://wwitv.com/tt/b2525.asx|http://www.tv.sport.nl/ +Netherlands|Sugababes TV|450|Children|Web-based TV for youngsters|http://wwitv.com/tt/b2359.asx|http://www.sbtv.nl/ +Netherlands|Tien|780|Shopping|Commercial TV station|http://wwitv.com/tt/8285.asx|http://www.tien.tv/ +Netherlands|TMF|1500|Music|The Music Factory (only available in The|http://wwitv.com/tt/b1512.asx|http://www.tmf.nl +Netherlands|Tros Sterren|800|Music|Dutch music|http://wwitv.com/tt/b2354.asx|http://www.sterren.nl/ +Netherlands|TV Limburg|500|Regional TV|Regional TV from Limburg|http://wwitv.com/tt/b1511.asx|http://www.tvl.nl/ +Netherlands|TV West|530|Regional TV|Regional TV from Zuid-Holland|http://wwitv.com/tt/b1491.asx|http://www.rtvwest.nl +Netherlands|Vara Humor|791|Unknown|Humoristic TV|http://wwitv.com/tt/b3272.asx|http://omroep.vara.nl/HumorTV.1618.0.html +Netherlands|Vara Variatee|800|Unknown|Humoristic TV|http://wwitv.com/tt/b2401.asx|http://variatee.vara.nl/variatee/ +Netherlands|VPRO|790|Unknown|3 voor 12 on stage with live concerts and sessions|http://wwitv.com/tt/7962.asx|http://pages.vpro.nl/3voor12/zapcentral.shtml +Netherlands|VPRO|790|Music|Live Concerts, MusicClips and interviews|http://wwitv.com/tt/7477.asx|http://3voor12.vpro.nl/ +Netherlands|VPRO (geschiedenis)|800|Documentaries|Documentaries and historic TV|http://wwitv.com/tt/7986.asx|http://geschiedenis.vpro.nl/ +Netherlands|Wheelz TV|740|Sports|Web TV (racing sports)|http://wwitv.com/tt/b1708.asx|http://www.wheelztv.nl/ +Netherlands|WorldMadeChannel|250|Unknown|Interactive TV channel broadcasting home video &|http://wwitv.com/tt/b2240.asx|http://www.worldmadechannel.tv/eng/sheld1.php +Netherlands|Zapperz TV|1000|Children|TV for the younger generation|http://wwitv.com/tt/b2182.asx|http://www.zapperz.nl +Netherlands|Zazaro TV|800|Community|TV channel dedicated to the urban community and youth|http://wwitv.com/tt/b2357.asx|http://www.zazaro.com/ztv/ +New zealand|One News|256|Weather|Weather forecast|http://wwitv.com/tt/b2672.asx|http://tvnz.co.nz/ +New zealand|Shine TV|384|Religious|National Christian Television|http://wwitv.com/tt/7803.asx|http://www.shinetv.co.nz/ +Nicaragua|Canal 2|102|News|Leading Network in Nicaragua with recorded news|http://wwitv.com/tt/7371.asx|http://www.canal2tv.com +Nicaragua|Canal 8|200|Unknown|Second leading television network from Managua, Nicaragua,|http://wwitv.com/tt/7351.asx|http://www.telenica.com.ni/ +Niger|RTN Tele Sahel|50|News|Recorded news|http://wwitv.com/tt/b3257.asx|http://www.ortn-niger.com/tsa.php +Nigeria|Emmanuel TV|300|Religious|Christian TV station|http://wwitv.com/tt/b1911.asx|http://emmanuel.tv/ +Nigeria|Loveworld|148|Religious|Christian TV station|http://wwitv.com/tt/b2458.asx|http://www.loveworldchristiannetwork.org +Norway|NRK|300|News|Recorded news broadcasts available|http://wwitv.com/tt/6951.asx|http://www1.nrk.no/nett-tv/forside +Norway|TV Visjon Norge|500|Religious|Christian TV|http://wwitv.com/tt/b2390.asx|http://www.visjonnorge.com/ +Oman|TV Oman|45|National TV|National TV Station. Check schedule for live|http://wwitv.com/tt/52.asx|http://www.oman-tv.gov.om/tveng/default.asp +Pakistan|GEO TV|100|General|General TV station|http://wwitv.com/tt/b1514.ram|http://www.pakistanvision.com/site/ +Pakistan|IIPC|500|Unknown|Islamitic TV channel|http://wwitv.com/tt/b2752.asx|http://www.iipc.tv/ +Pakistan|PTV 1|100|Unknown||http://wwitv.com/tt/b2541.ram|http://www.pakistanvision.com/ +Pakistan|PTV 2|102|Movies|Pakistani Entertainment, watch movies, songs, talkshows,|http://wwitv.com/tt/6850.ram|http://www.pakistanvision.com/ +Pakistan|PTV Khabarnama|100|Unknown||http://wwitv.com/tt/b2276.smil|http://www.pakistanvision.com/site/ +Pakistan|PTV World News|100|News|Recorded news (English language)|http://wwitv.com/tt/b2275.smil|http://www.pakistanvision.com/site/ +Palestinia|Alameel TV|50|Unknown||http://wwitv.com/tt/b2186.asx|http://www.alamal-tv.com/ +Palestinia|PSCTV|225|Satellite TV|Palestinian Satellite TV|http://wwitv.com/tt/6394.ram|http://www.psctv.com/ +Panama|Hosanna TV|141|Religious|Christian television station broadcasting from 6 am EST|http://wwitv.com/tt/8194.asx|http://www.hosannavision.com/ +Panama|TVN|45|Unknown|Live from Panama City (not always online)|http://wwitv.com/tt/6709.asx|http://www.tvn-2.com +Peru|Bethel|300|Religious|Christian TV|http://wwitv.com/tt/7709.asx|http://www.betheltv.com.pe/ +Peru|Frequencia Latina|80|General|General TV station from Lima. Not always|http://wwitv.com/tt/55.asx|http://www.frecuencialatina.com.pe/ +Peru|Tevesur Canal 9|90|General|General TV Station from Cusco|http://wwitv.com/tt/b1932.asx|http://www.tevesur.com/ +Peru|TNP|100|News|Peru`s national TV station mainly featuring News,Talk,cultural|http://wwitv.com/tt/7587.ram|http://www.tnp.com.pe/ +Philippines|ESPN|273|Sports|Sports TV|http://wwitv.com/tt/_b1543.asx|http://www.espnstar.com/ +Philippines|The Old Path|128|Unknown|Live from Manila|http://wwitv.com/tt/6773.asx|http://www.theoldpath.tv/ +Philippines|Truth Caster|115|Unknown|Discussion of truths about our present milieu,|http://wwitv.com/tt/b2433.asx|http://www.truthcaster.com/ +Philippines|UNTV|75|Public TV|Balanced, quality programming, value-laden shows, and public|http://wwitv.com/tt/7975.asx|http://www.untvweb.com/video/index.aspx +Poland|4Fun TV|150|Music|Music TV|http://wwitv.com/tt/b3186.asx|http://telewizja.4fun.tv/ +Poland|Interia|350|General|General TV station|http://wwitv.com/tt/b2050.asx|http://interia.pl/ +Poland|Iteria TV|240|Music|Populair music|http://wwitv.com/tt/b2315.asx|http://www.interia.pl +Poland|ITV|140|Unknown|Live from Warsaw|http://wwitv.com/tt/7687.asx|http://www.itv.net.pl/ +Poland|Podroze TV|207|Shopping|Commercial travel channel|http://wwitv.com/tt/8215.asx|http://www.podroze.tv +Poland|Polsat|256|General|General TV station|http://wwitv.com/tt/b3185.asx|http://www.polsat.com.pl/ +Poland|RFM Maxxx TV|200|Music|Populair music|http://wwitv.com/tt/b2517.asx|http://rmfmaxxx.pl/ +Poland|SEJM|50|Unknown|Parliament|http://wwitv.com/tt/b1908.ram|http://www.sejm.gov.pl/ +Poland|Toya TV|144|Unknown|TV from Lodz|http://wwitv.com/tt/b1910.asx|http://www.toya.net.pl +Poland|Toya TV|196|Weather|Weather forecast for Lodz|http://wwitv.com/tt/b1909.asx|http://www.toya.net.pl +Poland|Toya TV|1400|Local|Local TV|http://wwitv.com/tt/8108.asx|http://moya.toya.net.pl/ +Poland|TTK|248|Regional TV|Regional Program from Tarnow|http://wwitv.com/tt/7770.asx|http://www.star.com.pl +Poland|TV Biznes|93|News|News and Business TV|http://wwitv.com/tt/7850.asx|http://www.tvbiznes.pl/?p=14 +Poland|TV Polonia|500|News|Recorded news available on website|http://wwitv.com/tt/7712.asx|http://www.tvp.pl/ +Poland|TV Trwam|200|Religious|Religious TV channel|http://wwitv.com/tt/7616.asx|http://www.radiomaryja.pl/ +Poland|TVFLY|200|Web TV|Web TV with pop and hip hop video clips|http://wwitv.com/tt/7686.asx|http://www.tvfly.com/ +Poland|TVN GRA|500|Unknown|Call TV with interactive games, quizes and more|http://wwitv.com/tt/8387.asx|http://tvngra.pl/ +Poland|TVP Cultura|440|Unknown|Culture Television|http://wwitv.com/tt/b3220.asx|http://ww6.tvp.pl/4101.dzialy +Poland|Wapster TV|225|Music|Populair music|http://wwitv.com/tt/b2117.asx|http://www.wapster.pl/ +Poland|WPTV Biznes|335|News|Financial and business news|http://wwitv.com/tt/b3197.asx|http://wptv.wp.pl/biznes.html +Poland|WPTV Entertainment|335|General|General entertainment. Recorded streams|http://wwitv.com/tt/b3196.asx|http://wptv.wp.pl/rozrywka.html +Poland|WPTV Erotyka|335|Unknown|Erotic channel|http://wwitv.com/tt/b3194.asx|http://wptv.wp.pl/erotyka.html +Poland|WPTV News|335|News|News station|http://wwitv.com/tt/b3195.asx|http://wptv.wp.pl/news.html +Poland|WTK|150|General|General TV station|http://wwitv.com/tt/b2115.asx|http://www.wtk.pl/ +Portugal|Canal Parlamento|270|Unknown|Live from the Portugese Parliament|http://wwitv.com/tt/7898.asx|http://www.canal.parlamento.pt/ +Portugal|Mana Sat|128|Religious|Christian channel|http://wwitv.com/tt/b1479.asx|http://www.manasat.com/ +Portugal|Mana Sat 2|86|Religious|Christian channel|http://wwitv.com/tt/b1748.asx|http://www.manasat.com/ +Portugal|RTP|45|General|General TV station|http://wwitv.com/tt/b3193.ram|http://www.rtp.pt +Portugal|RTP International|900|General|General TV station|http://wwitv.com/tt/b3192.asx|http://www.rtp.pt/rtpi/ +Portugal|TV Ciencia|612|News|Recorded news|http://wwitv.com/tt/7592.asx|http://www.tvciencia.pt/ctvc01.asp?action=prog&pl=rpl&sp=256 +Portugal|TV Net|150|Unknown|TV station from Lissabon|http://wwitv.com/tt/b1613.asx|http://www.tvnet.com.pt/ +Portugal|TVI|35|News|News station|http://wwitv.com/tt/6972.ram|http://www.tvi.iol.pt/mediacenter/media_live.php?live=2 +Portugal|Yourvida|350|Unknown|Astrology|http://wwitv.com/tt/b3173.asx|http://www.yourvida.com/ +Puerto rico|CDM|93|Unknown|Located in Cadena De Miligro|http://wwitv.com/tt/7330.asx|http://cdminternacional.com/ +Puerto rico|Mega TV|100|Religious|Christian TV station|http://wwitv.com/tt/b2450.asx|http://www.megatvpr.com/ +Puerto rico|Motivando TV|300|Community|Community TV from San Juan|http://wwitv.com/tt/b2456.asx|http://www.motivando.com +Puerto rico|NCN|100|Religious|Christian family TV|http://wwitv.com/tt/b2449.asx|http://www.ncntelevision.com/ +Puerto rico|Pabellon de Victoria|45|Religious|Christian TV station|http://wwitv.com/tt/b2126.asx|http://www.pvictoria.com/ +Puerto rico|SBN|50|Unknown|Senda Broadcasting Network|http://wwitv.com/tt/b1497.asx|http://www.sbnnetwork.com/ +Puerto rico|Tele Triunfo|34|Unknown|TV from Guayama, San Juan|http://wwitv.com/tt/b1495.asx|http://www.teletriunfo.com/ +Puerto rico|Teleadoracion|144|Religious|Christian channel|http://wwitv.com/tt/b1496.asx|http://www.teleadoracion.com/ +Puerto rico|Televicentro|45|Unknown|TV station licensed by the Federal Communications|http://wwitv.com/tt/120.asx|http://www.televicentropr.com/ +Puerto rico|TUTV|45|Unknown|Variety including child programming|http://wwitv.com/tt/7314.asx|http://www.tutv.puertorico.pr/ +Puerto rico|Videomax|141|Music|Reggaeton music from San Juan|http://wwitv.com/tt/b2129.asx|http://www.linkeao.com/ +Qatar|Al Dawri|50|Sports|Sports TV|http://wwitv.com/tt/b3221.asx|http://wwitv.com/unknown.htm +Qatar|Al Jazeera|50|Unknown|English version of Al Jazeera|http://wwitv.com/tt/b2689.ram|http://english.aljazeera.net +Qatar|Al Jazeera|150|News|News TV|http://wwitv.com/tt/b1544.asx|http://www.aljazeera.net +Romania|Antena 1|252|General|General TV station. Archived news available|http://wwitv.com/tt/6299.asx|http://www.antena1.ro/s/webcast/live_f.php +Romania|Antena 3|376|News|Recorded news available on website|http://wwitv.com/tt/b1749.asx|http://www.antena3.ro/ +Romania|Arena TV|757|Gaming|Gaming TV|http://wwitv.com/tt/b2568.asx|http://www.arenatv.ro/ +Romania|Atomic TV|500|Music|Populair music|http://wwitv.com/tt/b2423.asx|http://www.atomictvd.ro/ +Romania|DDTV|247|Unknown||http://wwitv.com/tt/b1686.asx|http://www.ddtv.home.ro/ +Romania|Money Channel|374|News|Financial news|http://wwitv.com/tt/b2581.asx|http://new.themoneychannel.ro/ +Romania|OTV|350|General|National TV with political debates and general|http://wwitv.com/tt/b1578.asx|http://www.oglinda.home.ro/ +Romania|Party TV|620|Music|Music TV|http://wwitv.com/tt/b3273.asx|http://www.partytv.ro/ +Romania|Realitatea|262|General|General TV station|http://wwitv.com/tt/8031.asx|http://www.realitatea.net/ +Romania|TVA|100|News|Local TV from Arad with recorded news|http://wwitv.com/tt/b2439.smil|http://www.radioteleviziuneaarad.ro/ +Romania|TVRi (International)|150|National TV|National TV station|http://wwitv.com/tt/6232.ram|http://www.tvr.ro/tv/tvri +Romania|TvRM|273|General|General TV station|http://wwitv.com/tt/b2140.asx|http://www.tvrm.ro/ +Russian fed.|A1 TV|256|Music|Populair music|http://wwitv.com/tt/b1922.asx|http://www.a1tv.ru/ +Russian fed.|MIR TV|300|Unknown||http://wwitv.com/tt/b2272.asx|http://www.mirtv.ru/ +Russian fed.|Nash Dom|80|News|Recorded news|http://wwitv.com/tt/8415.ram|http://old.pnz.ru/ +Russian fed.|Rambler TV|300|Education|Educational TV|http://wwitv.com/tt/7563.asx|http://www.rambler-tv.ru/online/ +Russian fed.|RBC TV|350|News|Russian news Business TV|http://wwitv.com/tt/7538.asx|http://www.rbc-tv.ru/ +Russian fed.|RTR Planeta|230|News|Television series, news and culture|http://wwitv.com/tt/7440.asx|http://www.rtr-planeta.com/ +Russian fed.|RTVi Muz TV|800|Music|Music TV with clips|http://wwitv.com/tt/8400.asx|http://tv.rtvi.com/ +Russian fed.|Russia Today|400|News|News TV (not always online)|http://wwitv.com/tt/b1527.asx|http://www.russiatoday.ru/ +Russian fed.|SGU TV|273|Education|Lectures and classes of the university. 24 hours|http://wwitv.com/tt/7432.asx|http://www.sgutv.ru/ +Russian fed.|Special Radio|270|Music|Rock music|http://wwitv.com/tt/7998.asx|http://www.specialradio.ru +Russian fed.|TBN|141|National TV|National TV station|http://wwitv.com/tt/b1513.asx|http://www.tbnrussia.org/ +Russian fed.|TV +|800|Documentaries|Current affairs, documentaries, lifestyle and sport|http://wwitv.com/tt/7895.asx|http://www.tv-plus.ru/ +Russian fed.|TV RB|295|General|General TV station|http://wwitv.com/tt/b1478.asx|http://www.tv-rb.ru/ +Russian fed.|TV SME|250|News|News TV from Moscow|http://wwitv.com/tt/b2670.asx|http://tvsme.ru/ +Russian fed.|Vesti 24|250|General|State Television|http://wwitv.com/tt/b2244.asx|http://www.vesti24.ru/ +Russian fed.|Wim TV 1|116|Music|New music videos|http://wwitv.com/tt/b2172.asx|http://www.wimstream.com/ +Russian fed.|Wim TV 2|116|Music|New music videos|http://wwitv.com/tt/b2173.asx|http://www.wimstream.com/ +Russian fed.|Wim TV 3|116|Music|New music videos|http://wwitv.com/tt/b2174.asx|http://www.wimstream.com/ +Russian fed.|Wim TV 4|116|Music|New music videos|http://wwitv.com/tt/b2175.asx|http://www.wimstream.com/ +Russian fed.|Zahav TV|331|General|General TV station|http://wwitv.com/tt/b2687.asx|http://www.zahav.ru/ +Saudi arabia|Alekbariya|100|Unknown||http://wwitv.com/tt/b2190.asx|http://www.alekhbariya.tv +Saudi arabia|Iqraa TV|50|Unknown|Islamic channel|http://wwitv.com/tt/b2413.ram|http://www.iqraa-tv.net/ +Saudi arabia|Islah TV|100|Unknown|Political programming (Saudi opposition based in the|http://wwitv.com/tt/b1999.asx|http://www.islahi.co.uk/ +Saudi arabia|SAT TV|225|General|State television (from the Royal Embassy in Washington|http://wwitv.com/tt/2063.ram|http://www.saudiembassy.net/ +Saudi arabia|Saudi 1|141|General|General TV station|http://wwitv.com/tt/b3234.asx|http://www.saudi1.tv +Serbia&mont.|B92|100|News|News headlines|http://wwitv.com/tt/8180.ram|http://www.b92.net/ +Serbia&mont.|RTS Uzivo|100|General|State Television|http://wwitv.com/tt/6856.ram|http://www.rts.co.yu +Serbia&mont.|RTS1|100|General|General TV station with sports and news|http://wwitv.com/tt/7075.ram|http://www.rts.co.yu/ +Serbia&mont.|RTS2|100|General|State Television|http://wwitv.com/tt/7261.ram|http://www.rts.co.yu/ +Serbia&mont.|RTV Pink|273|News|Private news station with archived news|http://wwitv.com/tt/b1876.asx|http://www.rtvpink.com/ +Slovakia|TA3|330|News|News channel|http://wwitv.com/tt/7161.asx|http://www.ta3.com/sk/archiv/ +Slovenia|Paprika|1400|Unknown|Privat TV station with entertainment|http://wwitv.com/tt/8371.asx|http://www.paprika.tv/ +Slovenia|Play TV|1200|Music|Music TV station|http://wwitv.com/tt/b2488.asx|http://www.playtv.tv/ +Slovenia|TV Koper|450|Regional TV|Regional Television|http://wwitv.com/tt/7957.ram|http://www.rtvslo.si/modload.php?&c_mod=static&c_menu=1053499437 +Slovenia|TV Pika|800|Unknown|Slovenian Interactive TV|http://wwitv.com/tt/3823.asx|http://www.tvpika.net/ +Slovenia|TV SLO 1|225|National TV|National TV station|http://wwitv.com/tt/7463.ram|http://www.rtvslo.si +South africa|Divine Truth|150|Religious|Christian channel|http://wwitv.com/tt/b3165.asx|http://www.divinetruth.tv/ +South africa|SABC News|45|Unknown|Uploaded: 18:00H South African time (utc/gmt +2)|http://wwitv.com/tt/6546.ram|http://www.sabcnews.co.za +Spain|Andalucía TV|150|Music|Live, programmes from Andalucia: news, music,|http://wwitv.com/tt/6740.ram|http://www.canalsur.es/ +Spain|Aragon Television|100|Local|Local TV from Aragon|http://wwitv.com/tt/b2199.asx|http://www.aragontelevision.es +Spain|ATEI|200|Unknown|TV Educativa Iberoamericana|http://wwitv.com/tt/b2181.asx|http://www.ateiamerica.com/ +Spain|Barcelona TV|512|Local|Local TV (shows a webcamview of Barcelona when it is|http://wwitv.com/tt/b1902.asx|http://www.barcelonatv.com/ +Spain|Cadena Local|300|Local|Local TV from Madrid|http://wwitv.com/tt/b2350.asx|http://www.localmediatv.com/ +Spain|Canal 29|200|General|General TV station from Vallalodid|http://wwitv.com/tt/7022.asx|http://www.tvcyl.es/ +Spain|Canal Castello TV|200|Local|Local TV from Castellon|http://wwitv.com/tt/7892.asx|http://www.canalcastello.com/ +Spain|Canal GV|190|Local|Local TV from Valencia|http://wwitv.com/tt/8336.asx|http://www.canalgv.com/ +Spain|Canal Latino|162|Unknown|TV from Las Palmas (Gran Canaria)|http://wwitv.com/tt/b1619.asx|http://www.canallatino.tv +Spain|Cetelmon|100|Religious|Christian TV from La Paz|http://wwitv.com/tt/b2353.asx|http://www.cetelmon.tv +Spain|CNN+|102|News|News station|http://wwitv.com/tt/b1493.asx|http://www.plus.es/codigo/noticias/noticias.asp +Spain|Congreso|221|Unknown|Spanish congress|http://wwitv.com/tt/7919.asx|http://www.congreso.es/ +Spain|EJIDO TV|100|Local|Local TV from El EJido (Almaria)|http://wwitv.com/tt/b2410.asx|http://www.ejidotv.com/ +Spain|El Independiente|248|Unknown|TV from Las Palmas (Gran Canaria)|http://wwitv.com/tt/b1616.asx|http://www.elindependientedecanarias.com/ +Spain|EsMadrid TV|400|Unknown|Touristic channel|http://wwitv.com/tt/b2757.asx|http://www.esmadrid.com +Spain|Estrada TV|141|Local|Local TV from Estrada|http://wwitv.com/tt/b3167.asx|http://www.estradatelevision.com +Spain|ETB Sat|350|Unknown|Basque television, with several programmes in the Basque|http://wwitv.com/tt/6447.asx|http://www.eitb.com/ +Spain|Fuego TV|100|Religious|Christian TV station|http://wwitv.com/tt/b2972.asx|http://www.fuegotv.eu/ +Spain|Granollers TV|45|General|General TV station|http://wwitv.com/tt/b2149.asx|http://www.granollerstv.com +Spain|Guadalajara|300|Local|Local TV from Guadalajara|http://wwitv.com/tt/b2023.asx|http://www.guadalajara.tv/ +Spain|Lanzarote TV|50|General|General TV station from the Isle Lanzarote|http://wwitv.com/tt/b1612.asx|http://www.lanzarote.tv/ +Spain|LaOtra|196|Unknown|Live from Madrid|http://wwitv.com/tt/6750.asx|http://www.laotraw.com/mirame/main.asp +Spain|Localia TV|141|Local|Localia TV, a spanish TV local network, with more than|http://wwitv.com/tt/7507.asx|http://www.radiohuesca.com/asp/localia.asp +Spain|MIRAm|52|Local|Local TV from Barcelona|http://wwitv.com/tt/8134.asx|http://www.miramtv.com/ +Spain|Ojos Solidarios|248|Unknown|TV from Las Palmas (Gran Canaria)|http://wwitv.com/tt/b1617.asx|http://www.ojossolidarios.com/ +Spain|Onda Jerez|250|Local|Local TV of Jerez de la Frontera|http://wwitv.com/tt/7467.asx|http://www.ondajerez.tv +Spain|Pleamar TV|171|Local|Local TV from Cadiz|http://wwitv.com/tt/b1470.m3u|http://www.pleamartv.com/ +Spain|Popular|210|General|General TV station|http://wwitv.com/tt/b1994.asx|http://www.populartv.net/ +Spain|RTV Insular|100|Unknown|TV from Las Palmas (Gran Canaria)|http://wwitv.com/tt/b1615.asx|http://www.rtvinsular.com/ +Spain|RTVV|130|Local|Local TV from Valencia|http://wwitv.com/tt/7988.asx|http://www.rtvv.es/ +Spain|Solidaria TV|96|Unknown|Family channel|http://wwitv.com/tt/b1614.asx|http://www.solidariatv.com/ +Spain|Tele Taxi|141|Unknown|Videclips of spanish artists and comercials. Located in|http://wwitv.com/tt/7995.asx|http://www.teletaxitv.com/ +Spain|Telecinco|271|General|General TV station (recorded news)|http://wwitv.com/tt/6749.asx|http://www.informativos.telecinco.es/videotitulares.htm +Spain|Telecorazon|242|General|General TV station|http://wwitv.com/tt/8118.asx|http://www.telecorazon.com/ +Spain|Telecuruna|127|Unknown|TV station located in Galicia|http://wwitv.com/tt/7543.asx|http://www.telecoruna.com/ +Spain|Telemadrid Sat|190|Sports|Entertainment, music, sports and news|http://wwitv.com/tt/7785.asx|http://www.telemadrid.es/ +Spain|Telemystic|141|Unknown|TV this dedicated to the world of the occultism and|http://wwitv.com/tt/b2340.asx|http://www.telemystic.com/ +Spain|Teletoledo|273|Local|Local TV from Toledo|http://wwitv.com/tt/b3215.asx|http://www.teletoledo.tv/ +Spain|Television Estepona|100|Local|Local TV from Malaga|http://wwitv.com/tt/b2407.asx|http://www.radiotelevisionestepona.com/ +Spain|Tosiriar TV|100|Local|Local TV|http://wwitv.com/tt/7580.asx|http://www.tosiriartv.com +Spain|TV Azul|141|Local|Local TV from Tenerife|http://wwitv.com/tt/b2416.asx|http://www.eldia.es/azultelevision/ +Spain|TV Burgos|190|General|General TV station|http://wwitv.com/tt/7021.asx|http://www.tvcyl.es/ +Spain|TV Ferrol|100|Local|Local TV station from Galicia|http://wwitv.com/tt/7040.asx|http://www.tvferrol.es +Spain|TV Leon|190|General|General TV station|http://wwitv.com/tt/7020.asx|http://www.tvcyl.es +Spain|TV Mas|141|Local|Local TV from the Canary Islands|http://wwitv.com/tt/b2673.asx|http://www.tvmas-palomas.com/ +Spain|TV Salamanca|180|General|General TV station|http://wwitv.com/tt/7023.asx|http://www.tvcyl.es/ +Spain|TV Segovia|210|General|General TV station|http://wwitv.com/tt/7024.asx|http://www.tvcyl.es/ +Spain|TV Zamora|90|Unknown|TV from the province of Zamora|http://wwitv.com/tt/b2150.asx|http://www.tvcyl.es/ +Spain|TVE|100|News|World news in spanish language|http://wwitv.com/tt/8234.asx|http://www.tve.es/ +Spain|TVG|116|Unknown|Live from Galicia|http://wwitv.com/tt/7456.asx|http://www.tvg.es/ +Spain|TVVI|190|Unknown|Canal Autonomico Valencia|http://wwitv.com/tt/8114.asx|http://www.canalgv.com +Spain|UPV TV|450|Unknown|Universitat Politècnica de València|http://wwitv.com/tt/b1812.asx|http://www.upv.es/ +Spain|URJC|200|Education|TV from the University Rey Juan Carlos|http://wwitv.com/tt/b2151.asx|http://www.urjc.es/ +Spain|Valencia TeVe|512|Local|Local TV from Valencia|http://wwitv.com/tt/b2352.asx|http://www.valenciateve.com/ +Spain|Videncia TV|220|Unknown|Various streams; cooking recipies and|http://wwitv.com/tt/8257.asx|http://www.ono.com/ +Sri lanka|MTV News|45|News|Recorded news in English|http://wwitv.com/tt/7815.asx|http://www.channeloneonline.com/ +Sri lanka|See TV|340|Unknown||http://wwitv.com/tt/b2767.asx|http://www.seetv.com.au/ +Sri lanka|Shakthi News|45|News|Recorded news|http://wwitv.com/tt/7816.asx|http://www.shakthi.tv/ +Sri lanka|Sirasa news|45|News|Recorded News broadcast (singhala)|http://wwitv.com/tt/7333.asx|http://www.sirasatv.lk/ +Sri lanka|Sri TV|273|General|General TV station (based in Italy)|http://wwitv.com/tt/b3184.asx|http://www.sritv.it/ +Sri lanka|Swarnavahini|241|Music|Music and entertainment|http://wwitv.com/tt/7134.asx|http://www.swarnavahini.lk/ +Sri lanka|TV TTN|45|News|Recorded news from the Tamil Television Network|http://wwitv.com/tt/b2601.asx|http://www.lankasri.tv/ +Suriname|ATV|100|Education|Information, education and entertainment|http://wwitv.com/tt/6595.asx|http://www.atv.sr +Sweden|Canal 7|270|Music|Oriental music videos|http://wwitv.com/tt/b1983.asx|http://www.canal7.se +Sweden|DKNET|350|Religious|Christian TV station|http://wwitv.com/tt/b2313.asx|http://www.dknet.tv/ +Sweden|Dorotea TV|750|Local|Local TV station from Dorotea, Lapland,|http://wwitv.com/tt/7737.asx|http://www.dorotea.tv/ +Sweden|Kanal 10|512|Religious|Christian TV station|http://wwitv.com/tt/b3187.asx|http://www.kanal10.se +Sweden|The Voice|135|Music|Populair music|http://wwitv.com/tt/b1836.asx|http://www.thevoicetv.se +Sweden|ZTV|450|Music|Populair music|http://wwitv.com/tt/b1877.asx|http://www.ztv.se/ +Switzerland|FSOE|200|Unknown|Forum for South-Eastern Europe|http://wwitv.com/tt/b1687.ram|http://www.balkaninfo.net/ +Switzerland|H1TV|143|Local|Local TV from Hittnauer|http://wwitv.com/tt/b3033.asx|http://www.kabelnetz.ch/ +Switzerland|Leman Bleu|540|Regional TV|Regional TV Station from Geneva|http://wwitv.com/tt/b1503.asx|http://www.lemanbleu.ch +Switzerland|Tele M1|291|Regional TV|Regional TV station from Aargau|http://wwitv.com/tt/6917.asx|http://www.tele-m1.ch/ +Switzerland|Tele Tell|291|Unknown|TV for Central Switzerland|http://wwitv.com/tt/8422.asx|http://www.teletell.ch/ +Switzerland|Tele Ticino|100|Unknown|Italian speaking TV station|http://wwitv.com/tt/6974.asx|http://www.teleticino.ch/ +Switzerland|Telebasel|500|News|News TV|http://wwitv.com/tt/6744.asx|http://www.telebasel.ch/ +Switzerland|TSR|1500|General|General TV station|http://wwitv.com/tt/6745.asx|http://www.tsr.ch/tsr/index.html?siteSect=502400 +Switzerland|U1 TV|145|General|General TV station|http://wwitv.com/tt/b1697.asx|http://www.u1tv.ch/ +Switzerland|Wetter TV|200|Weather|Recorded weather update|http://wwitv.com/tt/8253.ram|http://de.bluewin.ch/news/index.php/wetter/tv/ +Syria|Syria TV|100|General|Government Television. General organisation of Radio and|http://wwitv.com/tt/7044.asx|http://www.rtv.gov.sy/ +Taiwan|Da Ai TV|291|General|General TV station|http://wwitv.com/tt/7312.asx|http://www.newdaai.tv/rstpbk/index.php +Taiwan|Good TV|141|Religious|Religious TV|http://wwitv.com/tt/6734.asx|http://www.goodtv.com.tw +Taiwan|Mac TV|280|Government|Government television channel created specifically for the|http://wwitv.com/tt/b1917.asx|http://www.mactv.com.tw/mactv/main_live.php +Thailand|11 News|100|News|News channel|http://wwitv.com/tt/8060.ram|http://thailand.prd.go.th/ +Thailand|ASTV News1|500|News|News and information|http://wwitv.com/tt/b2973.asx|http://www.astv-tv.com/ +Thailand|DMC|450|Unknown|Dhammakaya Foundation media channel|http://wwitv.com/tt/8061.asx|http://www.dmc.tv/ +Thailand|Faikham TV|185|Local|Local TV from Bangkok|http://wwitv.com/tt/8012.asx|http://www.e-ru.tv/ +Thailand|ITV|245|General|General TV station|http://wwitv.com/tt/6784.asx|http://www.itv.co.th/ +Thailand|KE TV|343|News|24/7 live economical and financial news and Stock-Exchange|http://wwitv.com/tt/b1699.asx|http://www.kimeng.co.th +Thailand|MV1 TV|250|News|News & Entertainment Program|http://wwitv.com/tt/8365.asx|http://www.mvtv.co.th/ +Thailand|MV2 TV|256|News|News & Entertainment Program|http://wwitv.com/tt/b1690.asx|http://www.mvtv.co.th +Thailand|MV3 TV|256|News|News & Entertainment Program|http://wwitv.com/tt/b1691.asx|http://www.mvtv.co.th +Thailand|PRD|40|News|Recorded news from the Government Public Relations|http://wwitv.com/tt/8265.ram|http://www.prd.go.th/ +Thailand|T Channel|100|Unknown|Cultural programs|http://wwitv.com/tt/8015.asx|http://www.t-ch.com/ +Thailand|TGN / TGN Money|400|Unknown|Thai Global Network located in Bangkok|http://wwitv.com/tt/8083.asx|http://www.thaitvglobal.com/ +Thailand|TV 5|512|Unknown|Royal Thai army radio and television. Located in|http://wwitv.com/tt/65.asx|http://www.tv5.co.th +Thailand|TV9|900|News|Thai News Agency, with news, entertainment and|http://wwitv.com/tt/6307.asx|http://tna.mcot.net/ +Tunesia|Tunesia TV|50|National TV|National TV station|http://wwitv.com/tt/7428.ram|http://tunisiatv.com/ +Tunesia|TV7|45|News|Recorded eveningnews (English)|http://wwitv.com/tt/b2249.ram|http://tunisiatv.com/ +Tunesia|TV7|45|News|Recorded news from 11:56PM (French)|http://wwitv.com/tt/6482.ram|http://tunisiatv.com/ +Tunesia|TV7|45|News|Recorded news from 8PM (Arabic)|http://wwitv.com/tt/6481.ram|http://tunisiatv.com/ +Turkey|Adim TV|116|Religious|Religious TV channel|http://wwitv.com/tt/8339.asx|http://www.adimtv.com/ +Turkey|Ahi TV|50|Local|Local TV from Kisehir|http://wwitv.com/tt/b2574.asx|http://www.ahitv.net/ +Turkey|Alanya TV|96|Local|Local TV from Alanya|http://wwitv.com/tt/b2546.asx|http://www.alanyatelevizyonu.com +Turkey|Arma TV|141|Unknown||http://wwitv.com/tt/b3204.asx|http://www.armatv.com/ +Turkey|ATV|300|General|General Television station|http://wwitv.com/tt/6642.asx|http://www.atv.com.tr/ +Turkey|Bahane TV|273|Music|Populair music|http://wwitv.com/tt/b2122.asx|http://www.bahane.nl/ +Turkey|Belgesel TV|114|Unknown|TV from Istanbul|http://wwitv.com/tt/b2503.asx|http://www.showtvnet.com/belgesel/ +Turkey|Bilim Kultur TV|233|Education|Suleyman Demirel University offering, live|http://wwitv.com/tt/8344.asx|http://bilimtv.sdu.edu.tr/ +Turkey|BRTV|100|Local|Local TV from Karabuk|http://wwitv.com/tt/b2547.asx|http://www.brtv.com.tr/ +Turkey|Cay TV|50|Unknown|TV station from Rize|http://wwitv.com/tt/b2027.asx|http://www.caytv.com.tr/ +Turkey|Civril TV|100|Local|Local TV station from Civril|http://wwitv.com/tt/b2548.asx|http://www.civriltv.com/ +Turkey|DOGU TV|50|Unknown|TV from the East of Turkey; featuring world of trade,|http://wwitv.com/tt/8340.asx|http://www.dogutv.com.tr/ +Turkey|Dost TV|112|General|Live broadcast about child-education, life in general and|http://wwitv.com/tt/8350.asx|http://www.dostfm.com/ +Turkey|EBRT|100|Local|Local TV from Boyuna|http://wwitv.com/tt/b2640.asx|http://www.ebrt.tv +Turkey|Elazig Canal 23|159|Music|From the city of Elazig; film, news, music. Not|http://wwitv.com/tt/8345.asx|http://www.kanaletv.com.tr/ +Turkey|Elif TV|102|Local|Local tv from Kayseri|http://wwitv.com/tt/b1934.asx|http://www.eliftv.com.tr/ +Turkey|Erciyes TV|90|Local|Local TV|http://wwitv.com/tt/b1725.asx|http://www.erciyestv.com.tr +Turkey|Firaset TV|115|Movies|Turkish movies|http://wwitv.com/tt/b2557.asx|http://www.firaset.net/ +Turkey|Hilal TV|140|Satellite TV|Satellite channel|http://wwitv.com/tt/b1835.asx|http://www.hilaltv.org/ +Turkey|IMTV|100|Music|Islamic music|http://wwitv.com/tt/b2565.asx|http://www.islamimuzik.com/ +Turkey|Kanal 26|100|Unknown||http://wwitv.com/tt/b2061.asx|http://www.kanal26.tv/ +Turkey|Kanal 7|100|National TV|National TV Station|http://wwitv.com/tt/7882.m3u|http://www.kanal7.com.tr +Turkey|Kanal A|150|General|General TV station from Adana|http://wwitv.com/tt/b2575.asx|http://www.kanal-a.com.tr/ +Turkey|Kanal Avrupa|212|General|General TV station|http://wwitv.com/tt/b2559.asx|http://www.kanalavrupa.tv/ +Turkey|Kanal Mavi|100|Unknown|TV from the city of Trabzon|http://wwitv.com/tt/b2087.asx|http://www.kanalmavi.com/ +Turkey|Kanal S|100|General|General TV station|http://wwitv.com/tt/b2560.asx|http://www.kanalstv.com/ +Turkey|Karadeniz TV|92|Unknown||http://wwitv.com/tt/b2029.asx|http://www.karadeniztv.com/ +Turkey|Karesi TV|100|General|General TV station|http://wwitv.com/tt/b2558.asx|http://www.karesitv.com/ +Turkey|Kayseri Kanal 38|140|Local|Local TV|http://wwitv.com/tt/b1711.asx|http://www.kanal38.com/ +Turkey|Kon TV|34|General|General TV station|http://wwitv.com/tt/8312.asx|http://www.kontv.com.tr/ +Turkey|Marmara TV|52|Local|Local TV from Marmara|http://wwitv.com/tt/b2556.asx|http://www.marmaratv.com.tr/ +Turkey|Mehtap TV|182|National TV|National TV station|http://wwitv.com/tt/b2247.asx|http://www.mehtap.tv/ +Turkey|Mesaj TV|100|General|General TV station|http://wwitv.com/tt/b1566.m3u|http://www.mesajtv.com/ +Turkey|MIHR TV|40|Unknown|Mihr TV broadcasts study programs based on the Islamic|http://wwitv.com/tt/7602.ram|http://www.mihr.com/livebroadcast.aspx?langId=1 +Turkey|MMC Euro Turk|152|Unknown||http://wwitv.com/tt/b2045.asx|http://www.mmctv.net +Turkey|NET1 TV|100|Web TV|Web TV. Offering various programs|http://wwitv.com/tt/7601.asx|http://www.net1tv.com/ +Turkey|NTV|539|News|World News|http://wwitv.com/tt/b1630.asx|http://www.ntv.com.tr/ +Turkey|ODTU TV|539|Education|Mid-Eastern Technical University, collegional lessons can|http://wwitv.com/tt/8342.asx|http://odtutv.metu.edu.tr/ +Turkey|Samanyolu|153|National TV|National TV station|http://wwitv.com/tt/8121.asx|http://www.samanyolu.tv/ +Turkey|Shopping TV|300|Unknown||http://wwitv.com/tt/b2030.asx|http://www.shopping.com.tr/ +Turkey|Show Turk|50|Unknown||http://wwitv.com/tt/b2123.asx|http://www.showturk.tv/ +Turkey|ShowTV|45|Unknown|Show TV|http://wwitv.com/tt/3829.asx|http://www.showtvnet.com +Turkey|Sipas TV|50|Local|Local channel|http://wwitv.com/tt/8416.asx|http://www.sipastv.com/ +Turkey|Sky Turk|75|Unknown||http://wwitv.com/tt/b2059.asx|http://www.skyturkonline.com/ +Turkey|TGRT|70|General|General TV station|http://wwitv.com/tt/6637.m3u|http://www.tgrt.com.tr +Turkey|TGRT Europe|70|National TV|International oriented|http://wwitv.com/tt/8143.m3u|http://www.tgrt.com.tr/ +Turkey|TGRT Haber|70|News|Turkish news broadcaster. Live transmissions|http://wwitv.com/tt/8142.m3u|http://www.tgrt.com.tr/ +Turkey|TJK|500|Sports|Horse racing TV|http://wwitv.com/tt/b2031.asx|http://www.tjk.org/ +Turkey|TRT 1|150|General|Turkish State Television, channel 1|http://wwitv.com/tt/6267.asx|http://www.trt.net.tr/wwwtrt/canli.aspx +Turkey|TRT Int.|100|General|Turkish State Television (International|http://wwitv.com/tt/7956.asx|http://www.trt.net.tr/wwwtrt/canli.aspx +Turkey|TRT2|100|General|Turkish State Television, channel 2|http://wwitv.com/tt/7050.asx|http://www.trt.net.tr/wwwtrt/canli.aspx +Turkey|TRT4|100|General|Turkish State Television, channel 4|http://wwitv.com/tt/7052.asx|http://www.trt.net.tr/wwwtrt/canli.aspx +Turkey|TV 5|100|Unknown||http://wwitv.com/tt/b2028.asx|http://www.tv5.com.tr/ +Turkey|VTV|100|Local|Local TV from Antalya|http://wwitv.com/tt/b2734.asx|http://www.kanalvip.com.tr/ +Turkey|WTC|300|News|News television station|http://wwitv.com/tt/7564.asx|http://www.wtcankara.org.tr +Turkey|Z TV|100|Local|Local TV from Zile|http://wwitv.com/tt/b2576.asx|http://www.ziletv.com/ +U. kingdom|3BTV|341|Web TV|Web TV|http://wwitv.com/tt/7223.asx|http://www.3btv.com/ +U. kingdom|BBC Weather|80|Weather|Weather forecast for the UK|http://wwitv.com/tt/b1720.ram|http://www.bbc.co.uk/weather/bbcweather/weather_forecast_media.shtml +U. kingdom|BBC_Business|45|Unknown|World Business Report presents the latest global|http://wwitv.com/tt/7282.ram|http://news.bbc.co.uk/1/hi/business/1143010.stm +U. kingdom|BBC_Channel Islands|225|News|News TV|http://wwitv.com/tt/7693.ram|http://www.bbc.co.uk/jersey/ +U. kingdom|BBC_Click|250|News|Recorded technology news|http://wwitv.com/tt/b2677.asx|http://news.bbc.co.uk/2/hi/programmes/click_online/default.stm +U. kingdom|BBC_Daily Politics|240|Unknown|Political TV show|http://wwitv.com/tt/7689.asx|http://www.bbc.co.uk +U. kingdom|BBC_Headlines|225|News|Around the clock TV news|http://wwitv.com/tt/7142.asx|http://news.bbc.co.uk/broadband/news_console.stm +U. kingdom|BBC_Liquid news|256|News|Watch the latest showbiz news|http://wwitv.com/tt/7346.ram|http://www.bbc.co.uk/entertainment/ +U. kingdom|BBC_Look East|45|News|The latest local newscast for the regions:|http://wwitv.com/tt/7694.ram|http://www.bbc.co.uk/england/lookeast/ +U. kingdom|BBC_Newsnight|225|News|Recorded news|http://wwitv.com/tt/b2678.asx|http://news.bbc.co.uk/1/hi/programmes/newsnight/default.stm +U. kingdom|BBC_Panorama|225|Unknown|Investigative TV Show|http://wwitv.com/tt/b2679.asx|http://news.bbc.co.uk/1/programmes/panorama/default.stm +U. kingdom|BBC_Parliament|218|Unknown|Only sometimes online|http://wwitv.com/tt/b1850.asx|http://news.bbc.co.uk/1/hi/programmes/bbc_parliament/default.stm +U. kingdom|BBC_Parliament|270|Unknown|TV from the United Kingdom Parliament|http://wwitv.com/tt/7121.asx|http://news.bbc.co.uk/1/hi/programmes/bbc_parliament/default.stm +U. kingdom|BBC_Question Time|225|News|News related TV program|http://wwitv.com/tt/b2680.asx|http://news.bbc.co.uk/1/hi/programmes/question_time/default.stm +U. kingdom|BBC_South East today|50|Unknown|Three recorded bulletins available:|http://wwitv.com/tt/8026.ram|http://www.bbc.co.uk/england/southeasttoday/ +U. kingdom|BBC_Workinglunch|45|News|Business, personal finance and consumer news|http://wwitv.com/tt/6417.ram|http://news.bbc.co.uk/1/hi/programmes/working_lunch/default.stm +U. kingdom|Bid TV|240|Shopping|Online auction TV|http://wwitv.com/tt/b2417.asx|http://www.bid.tv/ +U. kingdom|Bid-up TV|80|Shopping|Online auction TV|http://wwitv.com/tt/7833.asx|http://www.bid-up.tv/ +U. kingdom|Bonobo TV|800|Unknown|Alternative channel|http://wwitv.com/tt/b2667.asx|http://www.bonobo.tv +U. kingdom|Channel M|400|Unknown|TV channel for Manchester|http://wwitv.com/tt/b2026.asx|http://www.channelm.co.uk/ +U. kingdom|Chat Show|300|News|Celebrity News Covering Gossip, entertainment, Scandals,|http://wwitv.com/tt/8351.asx|http://www.chatshow.net/ +U. kingdom|Classic FM|391|Music|Music TV|http://wwitv.com/tt/b2584.asx|http://www.classicfm.com/ +U. kingdom|Create & Craft|222|Unknown|About hobby|http://wwitv.com/tt/7830.asx|http://www.createandcraft.com/ +U. kingdom|Cycling TV|800|Sports|TV station about cycling sports|http://wwitv.com/tt/8057.asx|http://www.cycling.tv/ +U. kingdom|E-Music Television|200|Music|Digital music programming and interactive|http://wwitv.com/tt/7826.asx|http://www.e-musictelevision.com/ +U. kingdom|Euronews|273|News|Summary of the latest worldnews|http://wwitv.com/tt/6645.asx|http://www.euronews.net/ +U. kingdom|FN 24|848|News|Franchise news|http://wwitv.com/tt/b2609.asx|http://www.franchisenews24.co.uk/ +U. kingdom|Gems TV|380|Shopping|Offers online jewelry products|http://wwitv.com/tt/b1487.asx|http://www.gemstv.com +U. kingdom|Gems TV2|380|Unknown|Offers jewellery|http://wwitv.com/tt/b1671.asx|http://www.gems.tv/ +U. kingdom|Globetrekker TV|1800|Documentaries|Documentaries about places and countries around|http://wwitv.com/tt/b2195.asx|http://www.globetrekker.tv/ +U. kingdom|GOD TV|250|Religious|Christian Channel|http://wwitv.com/tt/b2049.asx|http://www.god.tv/ +U. kingdom|Holiday Channel|400|Unknown|Touristic channel|http://wwitv.com/tt/b2064.asx|http://player.narrowstep.tv/skins/0001/nsp.aspx?player=HolidayTVUK +U. kingdom|Hyp TV|400|Unknown|Short films|http://wwitv.com/tt/b2658.asx|http://www.hyptv.com/ +U. kingdom|Ideal Vitality|100|Shopping|Offers products for the body|http://wwitv.com/tt/b1488.asx|http://www.idealvitality.tv/ +U. kingdom|Ideal World|350|Shopping|Offers an online productrange from Around the home,|http://wwitv.com/tt/7832.asx|http://www.idealworld.tv/ +U. kingdom|Information TV|391|General|General TV station|http://wwitv.com/tt/b2418.asx|http://www.information.tv/ +U. kingdom|INI TV|300|Religious|Inspiration Network International (Religious|http://wwitv.com/tt/7969.asx|http://www.ini.tv/ +U. kingdom|Islam Channel|100|Satellite TV|Islamic satellite channel located in the|http://wwitv.com/tt/8123.asx|http://www.islamchannel.tv +U. kingdom|ITV Play|384|Unknown|Participation TV (TV games)|http://wwitv.com/tt/b1843.asx|http://play.itv.com/ +U. kingdom|Ministry of sound|300|Music|Music TV station|http://wwitv.com/tt/8440.asx|http://www.ministryofsound.com +U. kingdom|MTA|300|Religious|Ahmadi Religious TV-Station broadcasting from UK but in|http://wwitv.com/tt/6952.asx|http://www.alislam.org/mta/ +U. kingdom|Poker Nightlive|1800|Unknown|TV dedicated to the world of Poker|http://wwitv.com/tt/b2351.asx|http://www.pokernightlive.co.uk/ +U. kingdom|Price-drop TV|80|Shopping|Online price-drop auction|http://wwitv.com/tt/7831.asx|http://www.price-drop.tv +U. kingdom|QVC UK|100|Cable TV|Online sellTV as seen on sky digital, cable and other tv|http://wwitv.com/tt/7614.asx|http://www.qvcuk.com/ +U. kingdom|Rathergood TV|312|Web TV|Web TV|http://wwitv.com/tt/b1929.asx|http://www.rathergood.co.uk/ +U. kingdom|Real Estate TV|1200|Unknown|UK's only property channel|http://wwitv.com/tt/b2228.asx|http://www.realestatetv.tv/ +U. kingdom|Revelation TV|391|Religious|Christian TV Channel|http://wwitv.com/tt/b2042.asx|http://www.revelationtv.com/ +U. kingdom|Simply Entertainment|1800|News|Reviews and entertainment news|http://wwitv.com/tt/b2136.asx|http://player.narrowstep.tv/default.aspx?player=simplyentertainment +U. kingdom|Sky|300|News|News TV|http://wwitv.com/tt/b3219.asx|http://www.sky.com/ +U. kingdom|Solent TV|140|Local|Not-for-profit local television station sometimes|http://wwitv.com/tt/7565.asx|http://www.solent.tv/ +U. kingdom|Speed Auction|250|Shopping|Offers a broad range of products|http://wwitv.com/tt/b1641.asx|http://www.speed-auction.tv/ +U. kingdom|Sportal|387|Sports|Sports portal with recorded video's|http://wwitv.com/tt/b1666.asx|http://www.sportal.com/ +U. kingdom|Sumo TV|1000|Unknown|Funny Video's|http://wwitv.com/tt/b2134.asx|http://www.sumo.tv +U. kingdom|Thane Direct|80|Shopping|Offers a broad range of products|http://wwitv.com/tt/b1640.asx|http://www.thanedirect.co.uk/ +U. kingdom|The babychannel|381|Unknown|Channel for pregnant women|http://wwitv.com/tt/b2011.asx|http://www.babychanneltv.com +U. kingdom|Thomson TV|300|Unknown|Travel channel|http://wwitv.com/tt/b2234.asx|http://www.thomsontv.com/ +U. kingdom|TTTV|50|News|Recorded news|http://wwitv.com/tt/7501.asx|http://www.tynetees.tv/ +U. kingdom|WAMTV|340|Music|Variety of Music|http://wwitv.com/tt/7237.asx|http://www.worldart.com/ +Ukraine|11 Channel|70|Unknown|TV channel from Dnipropitrovsk|http://wwitv.com/tt/b1593.m3u|http://www.11channel.dp.ua +Ukraine|24 TV|343|News|News station|http://wwitv.com/tt/b2602.asx|http://www.24tv.com.ua +Ukraine|UTR|400|Unknown|Live from Kiev|http://wwitv.com/tt/7806.asx|http://www.utr.tv/ +Ukraine|UTR USA|440|Unknown|TV station located in Kiev|http://wwitv.com/tt/8094.asx|http://www.utr.kiev.ua/ +Uruguay|Canal 12 Teledoce|34|Sports|News and sports|http://wwitv.com/tt/6462.ram|http://www.teledoce.com/tvonline.php +Uruguay|Canal 24 Ciudad|320|Local|Local TV from Montevideo|http://wwitv.com/tt/b2663.asx|http://www.adinettv.com.uy +Uruguay|Canal 24 Ciudad|93|Unknown|TV from Montevideo|http://wwitv.com/tt/7470.asx|http://www.teveciudad.org.uy/ +Uruguay|Canal 5|320|Unknown|TVEO Canal 5, Television Nacional from|http://wwitv.com/tt/b1579.asx|http://www.tveo.com.uy/ +Uruguay|Canal 6|151|Unknown|TV station from Pando, Canelones|http://wwitv.com/tt/b1587.asx|http://www.telespectaculo.com.uy/home.htm +Uruguay|Canal 8|45|Unknown|Canal 8 Telespectaculo from Canelones City|http://wwitv.com/tt/b1571.asx|http://www.telespectaculo.com.uy/home.htm +Uruguay|Televisión Nacional|100|Government|Government Channel|http://wwitv.com/tt/b2036.asx|http://www.tveo.com.uy/ +USA|WMTY|140|Public TV|Public access TV|http://wwitv.com/tt/b2368.asx|http://www.wmty.net/ +USA|WKRG|273|Local|Local TV|http://wwitv.com/tt/8303.asx|http://www.wkrg.com/ +USA|CCM|140|Cable TV|County Cable Montgomery- TV channel 6|http://wwitv.com/tt/7699.asx|http://www.montgomerycountymd.gov/apps/CABLE/cable.cfm +USA|TV4 Bullhead|140|Local|Local TV|http://wwitv.com/tt/7696.asx|http://www.bullheadcity.com/media/ch4.asp +USA|Mesa|100|Unknown|Operated by the City of Mesa (Ch. 11)|http://wwitv.com/tt/7695.asx|http://www.mesachannel11.com/wm_stream.php +USA|Tempe 11|140|Government|Government Access TV|http://wwitv.com/tt/7441.asx|http://www.tempe.gov/tempe11/ +USA|Access Tucson|100|Public TV|Public access television|http://wwitv.com/tt/7483.ram|http://access.tucson.org/ +USA|Tucson 12|220|Government|Government access television station|http://wwitv.com/tt/7705.ram|http://www.ci.tucson.az.us/ch12/ +USA|Yuma 77|160|Unknown|Yuma County TV|http://wwitv.com/tt/b2555.asx|http://www.yuma77.tv/ +USA|Shepherds Chapel|45|Religious|Located in Gravette. Provides live Bible study|http://wwitv.com/tt/96.asx|http://www.shepherdschapel.com/ +USA|BETV Ch. 28|220|Community|Community TV|http://wwitv.com/tt/7702.asx|http://www.betv.org/ +USA|Cerritos TV3|200|Government|Government TV|http://wwitv.com/tt/7272.asx|http://www.ci.cerritos.ca.us/citygov/tv3online.html +USA|KGOV|261|Government|Kern County Government Television|http://wwitv.com/tt/7651.asx|http://www.co.kern.ca.us/gsd/kgov/internettv.asp +USA|L.A. CityView 35|283|Government|Government access TV for the City of Los|http://wwitv.com/tt/7747.asx|http://www.cityofla.org/ita/itacv1.htm +USA|LA36|230|Education|Cultural and educational programming|http://wwitv.com/tt/b3067.asx|http://www.la36.org/ +USA|UCLA TV|170|Unknown|Student Television|http://wwitv.com/tt/8357.asx|http://www.uclatv.com +USA|MVTV|270|Government|Government TV|http://wwitv.com/tt/8405.asx|http://cityofmissionviejo.org/ +USA|Csumb TV|270|General|California State University TV (Monterey|http://wwitv.com/tt/8022.asx|http://csumb.edu/ +USA|KLRN|250|Education|Educational TV from Pasadena|http://wwitv.com/tt/7648.asx|http://www.pasadena56.tv/ +USA|KPAS|354|Government|Government TV from Pasadena|http://wwitv.com/tt/7647.asx|http://www.pasadena56.tv +USA|Pasadena 56|242|Public TV|Public Access TV|http://wwitv.com/tt/7649.asx|http://www.pasadena56.tv/ +USA|PCTV ch. 26|261|Government|Government TV|http://wwitv.com/tt/7748.asx|http://www.ci.pinole.ca.us/tv/watch.html +USA|PCTV ch. 28|261|Government|Government TV from the City of Pinole|http://wwitv.com/tt/b1948.asx|http://www.ci.pinole.ca.us/tv/watch.html +USA|CTV|102|Community|Tri-Valley Community TV|http://wwitv.com/tt/7465.asx|http://tv30.org/live.asp +USA|TV 30|100|Community|Tri-Valley Community Television. Serving Dublin,|http://wwitv.com/tt/8256.asx|http://www.tv30.org/ +USA|KCAT|500|Community|Community Access TV|http://wwitv.com/tt/87.asx|http://inet-server.enet.hlpusd.k12.ca.us/comtv33/ +USA|Sacramento County TV|261|Government|Government TV from Sacramento|http://wwitv.com/tt/b1489.asx|http://www.saccounty.net/saccountytv/ +USA|City of San Diego|283|News|News from the City Council|http://wwitv.com/tt/7018.asx|http://www.sandiego.gov/citytv/webstreaming/index.shtml +USA|SDCOE TV|350|Education|San Diego County Office of Education|http://wwitv.com/tt/b1744.ram|http://www.sdcoe.tv/streaming.asp +USA|SFGTV Ch. 26|300|Unknown|City & County TV|http://wwitv.com/tt/b1742.asx|http://sfgov.org/site/sfgtv_index.asp?id=11463 +USA|SFGTV Ch. 78|278|Unknown|City & County TV from San Francisco|http://wwitv.com/tt/b2469.asx|http://sfgov.org/site/sfgtv_index.asp?id=11463 +USA|CCCSAT|500|Community|California Community Colleges|http://wwitv.com/tt/b2577.asx|http://www.cccsat.org/ +USA|TBN|500|Religious|Religious network, located in Santa Ana|http://wwitv.com/tt/6803.asx|http://www.tbn.org +USA|OCTT Ch. 13|100|Cable TV|Office of Cable TV and Telecom|http://wwitv.com/tt/7254.asx|http://octt.dc.gov/ +USA|OCTT Ch. 16|100|Cable TV|Office of Cable TV and Telecom|http://wwitv.com/tt/7253.asx|http://octt.dc.gov/ +USA|Daytona beach|222|Local|Local Internet TV station|http://wwitv.com/tt/7305.ram|http://www.daytonabeach-live.com +USA|Galaxy Universe TV|262|Local|Local TV|http://wwitv.com/tt/7514.ram|http://www.galaxyuniversetv.com/ +USA|Beach TV|150|Unknown|Information channel|http://wwitv.com/tt/b2258.asx|http://www.tripsmarter.com/destin/multimedia/tv.htm +USA|WUFT TV|100|Public TV|Public Broadcasting for North Central Florida|http://wwitv.com/tt/7310.asx|http://www.wuft.tv/news5/index.php?s=Live +USA|Key TV|150|Unknown|Information channel|http://wwitv.com/tt/b2262.asx|http://www.tripsmarter.com/keywest/multimedia/tv.htm +USA|WCLF|100|Religious|Christian Television Network|http://wwitv.com/tt/7150.asx|http://www.ctnonline.com/watch04.html +USA|WSCF|270|Local|Local TV|http://wwitv.com/tt/8318.asx|http://www.tv31melbourne.com/ +USA|Tele Miami|200|Local|Local TV|http://wwitv.com/tt/b1607.asx|http://www.telemiami.com/ +USA|WSVN|273|Local|Local TV|http://wwitv.com/tt/6610.asx|http://www.wsvn.com/ +USA|Superchannel WACX|100|Religious|Live prayers from Orlando|http://wwitv.com/tt/6403.asx|http://www.wacxtv.com/default.asp?ID=56 +USA|Beach TV|150|Unknown|Information channel|http://wwitv.com/tt/b2260.asx|http://www.tripsmarter.com/panamacity/multimedia/tv.htm +USA|WBQP|45|Local|Local TV|http://wwitv.com/tt/6588.ram|http://www.wbqp.com/ +USA|Gov. Ch. 19|150|Government|Government TV|http://wwitv.com/tt/7576.asx|http://www.sarasotagov.com/InsideCityGovernment/Content/AccessTV/AccessTV.htm +USA|SGTV|250|Government|Seminole County Florida Government TV|http://wwitv.com/tt/7745.asx|http://www.seminolecountyfl.gov/ +USA|Ch. 20|350|Education|Education and Government Television|http://wwitv.com/tt/7700.ram|http://www.pbcgov.com/pubInf/Channel20/Chan20.htm +USA|Atlanta channel|150|Unknown|Information channel|http://wwitv.com/tt/b2256.asx|http://www.tripsmarter.com/atlanta/multimedia/tv.htm +USA|TV 23|128|Government|Government TV|http://wwitv.com/tt/7733.asx|http://www.cobbcounty.org/ +USA|ETC|400|Local|Local TV from North Georgia|http://wwitv.com/tt/b2018.asx|http://www.northganow.com/ +USA|Floyd College TV|80|Unknown|Floyd College Television from Rome|http://wwitv.com/tt/7744.ram|http://www.highlands.edu/academics/extended/ghtv.htm +USA|Focus ch. 49|273|Community|Community television|http://wwitv.com/tt/b1942.asx|http://www.olelo.org/ +USA|NATV 53|140|Community|Community television|http://wwitv.com/tt/b1940.asx|http://www.olelo.org/ +USA|NATV Ch. 53|143|Community|Community Television (sometimes broadcasting|http://wwitv.com/tt/8383.asx|http://www.olelo.org/ +USA|OAHU|273|Community|Community television|http://wwitv.com/tt/b1941.asx|http://www.olelo.org/ +USA|OAHU 52|270|Community|Community television|http://wwitv.com/tt/7960.asx|http://www.olelo.org/ +USA|Olelo|102|Community|Community access provider from Hawaii (sometimes|http://wwitv.com/tt/7210.asx|http://www.olelo.org +USA|Views ch. 54|273|Community|Community television from Hawaii|http://wwitv.com/tt/7961.asx|http://www.olelo.org/ +USA|WETN|339|Unknown|College TV from Wheaton|http://wwitv.com/tt/7313.asx|http://www.wheaton.edu/wetn/ +USA|BECTV|100|Education|Bloomington Educational Cable TV|http://wwitv.com/tt/b2708.asx|http://www.bectv.org/ +USA|CATS|225|Local|Local TV. Not always online. Read the programming|http://wwitv.com/tt/7218.ram|http://stream.hoosier.net/cats/ +USA|KWQC|150|Local|Local TV|http://wwitv.com/tt/8320.asx|http://www.kwqc.com +USA|HTV 19|300|Unknown|24/7 internet station that serves Hamilton County|http://wwitv.com/tt/8073.asx|http://www.htv19.com/ +USA|WHTV|45|Religious|WHT TV offers a blend of Christian programming (South Bend,|http://wwitv.com/tt/101.asx|http://www.lesea.com/ +USA|KCCG|227|Government|Government TV from Kansas City|http://wwitv.com/tt/7028.ram|http://www.kcmo.org/cco.nsf/web/kccg?opendocument +USA|KCTU|300|Local|Local TV|http://wwitv.com/tt/88.asx|http://www.kctu.com/ +USA|Spirit Broadcasting Network|100|Religious|Christian channel|http://wwitv.com/tt/b3147.asx|http://spiritradio.net +USA|WVUE|273|Local|Local TV (Fox 8)|http://wwitv.com/tt/8354.asx|http://www.fox8live.com/ +USA|KDCG|300|Local|Local TV|http://wwitv.com/tt/7731.asx|http://www.kdcg.com/ +USA|Greater Grace|145|Religious|Christian TV station from Baltimore|http://wwitv.com/tt/b1875.asx|http://www.ggwo.org/tv/ +USA|Rockville Ch.|250|Government|Rockville, MD City Government TV|http://wwitv.com/tt/7734.asx|http://www.rockvillemd.gov/trc11/index.html +USA|Boston Ch. 22|140|Government|Government TV provided by the City of|http://wwitv.com/tt/7368.ram|http://www.cityofboston.gov/cable/channel22.asp +USA|CN8 New England|540|Cable TV|Comcast Cable TV|http://wwitv.com/tt/8423.asx|http://www.cn8.tv/ +USA|WHDH|141|Local|Local TV. Not always online|http://wwitv.com/tt/6708.asx|http://www.whdh.com +USA|PCTV (I)|273|Community|Community access TV|http://wwitv.com/tt/b1739.asx|http://www.pittsfieldtv.org +USA|PCTV (II)|500|Community|Community access TV|http://wwitv.com/tt/b2467.asx|http://www.pittsfieldtv.org/ +USA|PCTV (III)|500|Community|Community access TV|http://wwitv.com/tt/b2468.asx|http://www.pittsfieldtv.org/ +USA|WCCA TV|311|Community|Community access TV|http://wwitv.com/tt/b1741.m3u|http://www.wccatv.com/ +USA|G1NBC|273|Local|Local TV|http://wwitv.com/tt/b1639.asx|http://www.g1n.org/jackson_mi.htm +USA|WCBI|143|Local|Local TV|http://wwitv.com/tt/b3074.asx|http://www.wcbi.com +USA|Unity Broadcasting|45|Religious|Christian television station located in the|http://wwitv.com/tt/b2005.ram|http://www.w39cd.com +USA|WKFK|550|Community|Community TV|http://wwitv.com/tt/7979.asx|http://www.wkfk.com/ +USA|Vicksburg TV23|225|Government|Government TV channel TV-23|http://wwitv.com/tt/7698.ram|http://www.vicksburg.org +USA|21 TV|150|Government|Government TV for Lincoln and Lancaster County,|http://wwitv.com/tt/b2723.ram|http://www.lincoln.ne.gov/city/mayor/cic/5citytv/index.htm +USA|City 5 TV|150|Government|Government TV for Lincoln and Lancaster|http://wwitv.com/tt/6405.ram|http://www.lincoln.ne.gov/city/mayor/cic/5citytv/index.htm +USA|CCTV4|226|Government|Government access TV|http://wwitv.com/tt/7593.ram|http://www.co.clark.nv.us/Public_communications/channel4.htm +USA|KCLV Ch. 2|100|Government|Government access TV|http://wwitv.com/tt/7355.asx|http://www.ci.las-vegas.nv.us/kclv/default.htm +USA|Ebru TV|378|Local|Local TV|http://wwitv.com/tt/b2660.asx|http://www.ebru.tv/ +USA|GOV TV|150|Government|Government Television|http://wwitv.com/tt/7743.asx|http://www.cabq.gov/govtv/ +USA|KRQE|143|Local|Local TV|http://wwitv.com/tt/b3084.asx|http://www.krqe.com/ +USA|BCAT TV ch. 1|190|Community|Community Access TV|http://wwitv.com/tt/7638.asx|http://www.brooklynx.org/bcat/ +USA|BCAT TV ch. 3|190|Community|Community Access TV|http://wwitv.com/tt/b1950.asx|http://www.brooklynx.org/bcat/ +USA|WVVH|1120|Local|Local TV|http://wwitv.com/tt/8219.asx|http://www.wvvh.com/pages/1/index.htm +USA|770 Live|300|Unknown|Live Synagogue in Crown Heights. One of the most famous|http://wwitv.com/tt/7835.asx|http://770live.com/ +USA|BCAT TV ch. 2|190|Community|TV Channel from the brooklyn Community Access|http://wwitv.com/tt/b1949.asx|http://www.brooklynx.org/bcat/ +USA|ICTV|80|Unknown|Ithaca College TV from New York|http://wwitv.com/tt/7216.ram|http://www.ictv.org/ +USA|MNN Ch 34|280|Public TV|Public Access for Manhattan|http://wwitv.com/tt/7219.asx|http://www.mnn.org/ +USA|MNN Ch 56|102|Public TV|Public Access for Manhattan|http://wwitv.com/tt/7492.asx|http://www.mnn.org/ +USA|MNN Ch 57|330|Public TV|Public Access for Manhattan|http://wwitv.com/tt/7493.asx|http://www.mnn.org/ +USA|MNN Ch 67|80|Public TV|Public Access for Manhattan|http://wwitv.com/tt/7494.asx|http://www.mnn.org +USA|TV 26|273|Religious|Religious TV|http://wwitv.com/tt/8316.asx|http://www.tv26newyork.com/ +USA|WABC|330|Local|Local TV|http://wwitv.com/tt/6846.asx|http://abclocal.go.com/wabc/ +USA|WHOHTV|90|Local|Local TV|http://wwitv.com/tt/7250.asx|http://whoh-tv.org/ +USA|CATV 12|110|Community|Community access TV|http://wwitv.com/tt/b1738.asx|http://www.freetv.org/ +USA|GEB|200|Religious|Christian Network broadcasting from the campus of Oral|http://wwitv.com/tt/7972.asx|http://www.golden-eagle-tv.com/ +USA|KGEB TV-53|350|Religious|Religious TV|http://wwitv.com/tt/94.ram|http://www.kgeb.net/ +USA|RVTV I|225|Community|Community Television|http://wwitv.com/tt/8165.ram|http://www.roguetv.org/ +USA|RVTV II|225|Community|Community access TV|http://wwitv.com/tt/8164.ram|http://www.roguetv.org/ +USA|RVTV III|225|Community|Community access TV|http://wwitv.com/tt/8163.ram|http://www.roguetv.org/ +USA|Family-Life TV|100|Local|Local TV|http://wwitv.com/tt/7729.asx|http://www.familylifetv.com +USA|CN8 Mid-Atlantic|539|Local|Local TV|http://wwitv.com/tt/6993.asx|http://www.cn8.tv/ +USA|Beach TV|150|Unknown|Information channel|http://wwitv.com/tt/b2259.asx|http://www.tripsmarter.com/myrtlebeach/multimedia/tv.htm +USA|GBN TV|222|Unknown|The Gospel Broadcasting Network, located in|http://wwitv.com/tt/b2194.asx|http://www.gbntv.org/ +USA|Channel 6|100|Community|Community Television|http://wwitv.com/tt/b3172.ram|http://www.ci.austin.tx.us/channel6/ +USA|SPFV|331|Religious|Faith based network out of Houston that offers "LIVE" as|http://wwitv.com/tt/8396.asx|http://www.spfv.org/ +USA|MISD|273|Unknown|Mesquite Independant School District|http://wwitv.com/tt/8004.asx|http://www.mesquiteisd.org/ +USA|KAMU TV|222|Unknown|College station from Tamu|http://wwitv.com/tt/7570.asx|http://kamu.tamu.edu +USA|BYU TV|273|Education|Live from the Brigham Young University|http://wwitv.com/tt/6860.asx|http://www.byutv.org/ +USA|Mizpa TV|512|Religious|Spanish christian TV|http://wwitv.com/tt/b2109.asx|http://www.mizpatv.com/ +USA|WJDW|330|Religious|Religious TV|http://wwitv.com/tt/7884.asx|http://www.channel21.tv/ +USA|WCTV-48|140|Local|Local TV|http://wwitv.com/tt/7730.asx|http://www.chesapeake.va.us/ +USA|GMUTV|141|Education|George Mason University|http://wwitv.com/tt/7270.asx|http://www.gmutv.gmu.edu/videoondemand.asp +USA|Fairfax Ch. 16|111|Community|Community access TV|http://wwitv.com/tt/b1743.asx|http://www.fairfaxcounty.gov/cable/channel16/vod.htm +USA|HCTV|143|Community|Community Television|http://wwitv.com/tt/b1736.asx|http://www.hctv.org/ +USA|Annenberg|331|Education|Educational TV (Seatlle Community Colleges)|http://wwitv.com/tt/8322.asx|http://www.scctv.net +USA|Scan TV|280|Community|Community access TV|http://wwitv.com/tt/b1740.asx|http://www.scantv.org/ +USA|Scan TV|270|Public TV|Public access TV|http://wwitv.com/tt/8411.asx|http://www.scantv.org/ +USA|SCCT|339|Community|Seattle Community Colleges TV|http://wwitv.com/tt/7174.asx|http://www.scctv.net/ +USA|SeatleChannel|450|Government|Government and community issues|http://wwitv.com/tt/7613.ram|http://www.seattlechannel.org/viewer_live.htm +USA|Seattle Ch.|225|Government|City of Seattle covering government, community and|http://wwitv.com/tt/7255.ram|http://www.seattlechannel.org/ +USA|City Cable 5|350|Government|City of Spokane's government access television|http://wwitv.com/tt/7697.asx|http://www.spokanecity.org/ +USA|3ABN|300|Religious|A 24 hour Christian Television Network|http://wwitv.com/tt/6241.asx|http://www.3abn.org/ +USA|Accuweather|259|Weather|US severe weather forecast|http://wwitv.com/tt/b1707.asx|http://wwwa.accuweather.com +USA|Africa Hit|220|Web TV|Web TV channel broadcasting Live African|http://wwitv.com/tt/8008.asx|http://www.africahit.com +USA|Al Karma TV|273|Religious|Arabic Christian TV|http://wwitv.com/tt/b1839.asx|http://www.alkarmatv.com/ +USA|Almavison|311|Religious|Hispanic Christian TV|http://wwitv.com/tt/8144.asx|http://almavision.com/ +USA|Alternative|154|Music|Talk Music and Lifestile|http://wwitv.com/tt/6467.asx|http://www.alternative.nu +USA|America one|391|General|General TV station|http://wwitv.com/tt/b2570.asx|http://www.americaone.com +USA|Americas store|748|Shopping|Shopping channel offering a broad range of|http://wwitv.com/tt/b2323.asx|http://www.hsn.com/redirect.aspx?id=il&url=http%3A//www.hsn.com/cnt/sf/default.aspx%3Fsf%3DAS%26prev%3Dhp%26o%3D%21&afsrc=1&sourceid=wwitv1 +USA|Animal Planet|100|Documentaries|Documentary TV|http://wwitv.com/tt/b2671.asx|http://animal.discovery.com +USA|AT TV|350|Education|Video & Collaboration Services from the University of|http://wwitv.com/tt/8023.asx|http://video.ufl.edu/ +USA|Baseball channel|400|Sports|Baseball highlights|http://wwitv.com/tt/b2326.asx|http://www.baseballchannel.tv +USA|BYWN|147|Sports|Backyard Wrestling Network|http://wwitv.com/tt/b2349.asx|http://channel125.com +USA|Cal Poly Pomona|245|Unknown|Classic Arts Showcase or class session|http://wwitv.com/tt/b1696.asx|http://video.csupomona.edu/streaming/ +USA|Cal Poly Pomona|245|Education|NASA Television or other programming|http://wwitv.com/tt/b1695.asx|http://video.csupomona.edu/streaming/ +USA|Calvary Chapel|290|Religious|Christian tv station|http://wwitv.com/tt/8208.asx|http://www.calvarychapel.com +USA|CBS|790|General|General TV station|http://wwitv.com/tt/b3232.asx|http://www.cbsnews.com/ +USA|Channel 125|300|Web TV|Web TV showing material submitted by independent|http://wwitv.com/tt/7871.asx|http://www.channel125.com/ +USA|Channel Live TV|256|Unknown|Urban reality TV|http://wwitv.com/tt/b3183.asx|http://www.channellivetv.com/ +USA|CHSTV|221|News|CHSTV Worldwide is America's only daily live Internet news|http://wwitv.com/tt/7541.asx|http://www.chstv.com/ +USA|ChurchChannel|300|Religious|A multi-denominational religious network that|http://wwitv.com/tt/7545.asx|http://www.churchchannel.tv/ +USA|Coffee Shop TV|270|Unknown|LIVE shows, featuring 8 or more live bands from|http://wwitv.com/tt/8051.ram|http://www.coffeeshoptv.com/ +USA|C-Span 1|130|Public TV|C-SPAN provides public affairs programming|http://wwitv.com/tt/82.asx|http://www.c-span.org/ +USA|C-Span 2|130|Public TV|C-SPAN provides public affairs programming|http://wwitv.com/tt/83.asx|http://www.c-span.org/ +USA|C-Span 3|130|Public TV|C-SPAN provides public affairs programming|http://wwitv.com/tt/84.asx|http://www.c-span.org/watch/ +USA|CSTV|391|Sports|College Sports|http://wwitv.com/tt/b1729.asx|http://www.cstv.com/ +USA|C-TN|292|Unknown|Connecticut Legislature TV|http://wwitv.com/tt/b1745.asx|http://www.ctn.state.ct.us +USA|CTNi|331|Religious|International edition of the American Christian|http://wwitv.com/tt/8190.asx|http://www.ctni.org/english/index.html +USA|CTVN|150|Religious|Christian TV Network|http://wwitv.com/tt/7955.asx|http://www.ctvn.org +USA|Cyber comic|512|Unknown|Comedy channel|http://wwitv.com/tt/b2521.asx|http://www.tvshowcaster.com/ +USA|Daystar|500|Religious|Christian TV station|http://wwitv.com/tt/b2616.asx|http://www.daystar.com +USA|Discovery|350|Documentaries|Documentaries about nature, animals, environment and|http://wwitv.com/tt/b1920.asx|http://dsc.discovery.com/beyond/player.html +USA|Dr. Gene Scott.|80|Religious|Dr. Gene Scott preaching from The Cathedral in Los|http://wwitv.com/tt/7706.asx|http://www.drgenescott.com/ +USA|EATV|270|Music|Music based channel providing exclusive all-genre content and|http://wwitv.com/tt/8053.asx|http://www.evolvingartist.com/ +USA|EMS Firechannel|350|Unknown|Channel dedicated to the firefighters|http://wwitv.com/tt/b1895.asx|http://www.emsbroadcasting.com +USA|EMS Police Channel|512|Unknown|Channel dedicated to the Police|http://wwitv.com/tt/b1894.asx|http://www.emsbroadcasting.com +USA|ENTV|111|Music|Electronic music, parties, DJ's and much more|http://wwitv.com/tt/b2382.asx|http://www.energynetworkproductions.com/ +USA|ESPN|100|Sports|Sports network|http://wwitv.com/tt/b2520.asx|http://espn.go.com/ +USA|EWTN|500|Religious|Religious TV Station. Stream 1 is Spanish. Stream 2 is|http://wwitv.com/tt/6660.asx|http://www.ewtn.com/audiovideo/ +USA|Faith Vision|400|Religious|Christian movies|http://wwitv.com/tt/b2615.asx|http://www.faithvisionnetwork.com +USA|Galaxy cartoons|341|Unknown|Cartoons|http://wwitv.com/tt/b3236.asx|http://www.galaxytelevision.net +USA|Gametap|500|Unknown|Cartoon channel|http://wwitv.com/tt/b2760.asx|http://www.gametap.com/ +USA|GLC|300|Religious|Christian TV|http://wwitv.com/tt/7708.asx|http://www.ptcbglc.com/ +USA|Global Country|30|Unknown|Maharishi Channel (Maharishi Open|http://wwitv.com/tt/8385.asx|http://www.globalcountry.org/EasyWeb.asp?pcpid=43 +USA|GMTN|300|Music|Gospel music TV|http://wwitv.com/tt/b2614.asx|http://www.gmtn.info/ +USA|GNF|273|Movies|Movies and games|http://wwitv.com/tt/b2133.asx|http://www.gameznflix.com/ +USA|Golf shop|512|Sports|Golf TV|http://wwitv.com/tt/b2518.asx|http://www.tvshowcaster.com/ +USA|HBO|500|Movies|Movie channel|http://wwitv.com/tt/b2714.asx|http://www.hbo.com/ +USA|His Channel|680|Religious|Bible teaching|http://wwitv.com/tt/b2603.asx|http://www.hischannel.com/ +USA|Hope TV|200|Religious|Christian television network|http://wwitv.com/tt/7707.asx|http://www.hopetv.org/ +USA|HSN|748|Shopping|Shopping channel offering thousands of unique products in|http://wwitv.com/tt/7598.asx|http://www.hsn.com/redirect.aspx?id=il&url=http%3A//www.hsn.com/&afsrc=1&sourceid=wwitv1 +USA|HTV|225|Unknown|Michigan House of Representatives|http://wwitv.com/tt/7089.ram|http://www.house.mi.gov/ +USA|JCTV|291|Religious|Christian music|http://wwitv.com/tt/b1879.asx|http://www.jctv.org/ +USA|Jewelry TV|300|Shopping|Offers online products like fine Jewelry, Diamonds,|http://wwitv.com/tt/7954.asx|http://www.jewelrytelevision.com/ +USA|KPBN-11|120|Sports|Sports TV from Louisiana|http://wwitv.com/tt/b3146.asx|http://www.pelicansportstv.com +USA|Krib TV|100|Unknown|MCs, DJs, VJs, MJs, Hip-Hop, R&B, Reggaeton, DanceHall,|http://wwitv.com/tt/b2242.asx|http://www.thewomb.com/kribtv.htm +USA|Kulaks Woodshed|500|Music|Live Acoustic Music Performance (Web TV|http://wwitv.com/tt/7448.asx|http://www.kulakswoodshed.com +USA|Lahse TV|110|Shopping|Shopping and entertainment channel|http://wwitv.com/tt/b1884.asx|http://www.lahse.com/ +USA|Lifestyle Network|500|Unknown|Wellness, Shape, Food, Style and|http://wwitv.com/tt/b2229.asx|http://www.lifestylenetworktv.com/ +USA|LLBN|102|Religious|Christian Network from California|http://wwitv.com/tt/7900.asx|http://www.llbn.tv/html/tvonline.html +USA|Mac Sports|400|Sports|Martial Arts sports|http://wwitv.com/tt/b2364.asx|http://www.macexperience.com/ +USA|Mania TV|500|Unknown|Pop culture, short films, talk shows|http://wwitv.com/tt/7777.asx|http://www.maniatv.com/ +USA|Marti Noticias|270|National TV|Office of Cuba Broadcasting (US International|http://wwitv.com/tt/7790.asx|http://www.martinoticias.com/ +USA|Metro Studios TV26|273|Unknown|Wide variety of programs designed to address|http://wwitv.com/tt/b1483.asx|http://metro-studios-ny.com/ +USA|Mezz TV|100|Music|Rock Music|http://wwitv.com/tt/b2243.asx|http://www.thewomb.com/mezztv.htm +USA|Michigan House of Representatives|225|Unknown|Live coverage of the Michigan|http://wwitv.com/tt/7491.ram|http://house.michigan.gov/ +USA|MTV Uber|700|Music|Populair music|http://wwitv.com/tt/b2610.asx|http://www.mtvu.com/ +USA|Music Plus TV|330|Unknown|A Los Angeles-based live Internet TV station that|http://wwitv.com/tt/8210.asx|http://www.musicplustv.com/ +USA|NASA TV|150|Education|Follow every step of NASA with NASA TV LIVE|http://wwitv.com/tt/6561.ram|http://science.ksc.nasa.gov/shuttle/countdown/video/video.html +USA|NASA TV|200|Education|Follow every step of NASA with NASA TV LIVE|http://wwitv.com/tt/5741.asx|http://science.ksc.nasa.gov/shuttle/countdown/video/video.html +USA|National Geographic|350|Documentaries|Documentary TV|http://wwitv.com/tt/b2641.asx|http://www.nationalgeographic.com/ +USA|NBC|300|News|Recorded news|http://wwitv.com/tt/b2650.asx|http://www.nbc.com/ +USA|NBC Weatherplus|290|Weather|US Weather forecast. National forecast, local|http://wwitv.com/tt/b1734.asx|http://www.nbcweatherplus.com/ +USA|NBR|250|Unknown|Recorded Business Report|http://wwitv.com/tt/b2273.asx|http://www.pbs.org/nbr/ +USA|Nueva Era TV|141|Unknown|A channel in the spanish language with new era,|http://wwitv.com/tt/b2338.asx|http://www.nuevaeratv.com/ +USA|Nueva Vidavision|280|Unknown|Cultural alternative TV for the Hispanic|http://wwitv.com/tt/b2189.asx|http://nuestraraza.com/ +USA|Online Racing|270|Sports|Parimutuel racing|http://wwitv.com/tt/b1988.asx|http://www.onlineracing.tv +USA|OntopTV|273|Unknown|Hip-Hop and R&B video's|http://wwitv.com/tt/8233.asx|http://www.ontoptv.com +USA|Patient Channel|321|Education|Education TV channel from GE Healthcare and|http://wwitv.com/tt/8218.asx|http://www.gehealthcare.com/education/patient_channel/ +USA|Pentagon channel|200|Unknown|Militairy TV|http://wwitv.com/tt/7860.asx|http://www.pentagonchannel.mil/ +USA|Proud TV|273|Community|TV for the gay community|http://wwitv.com/tt/b2735.asx|http://www.pridenation.com/ +USA|QVC|100|Shopping|Offers a broad range of products|http://wwitv.com/tt/7211.asx|http://www.qvc.com/ +USA|Race Online|512|Sports|Autosports channel|http://wwitv.com/tt/b2519.asx|http://www.tvshowcaster.com/ +USA|Rang-A-Rang|110|Unknown|TV station dedicated to the Persian speaking|http://wwitv.com/tt/b1501.asx|http://www.rang-a-rang.com/ +USA|ReelGood TV|391|Unknown|Live continuous stream featuring award winning|http://wwitv.com/tt/b1682.asx|http://reelgood.tv/ +USA|Research channel|1500|Education|The research TV channel of the University of|http://wwitv.com/tt/6729.asx|http://www.researchchannel.org/prog/ +USA|Rock Me TV|531|Unknown|Live Performances and Interviews|http://wwitv.com/tt/b2408.asx|http://www.rockmetv.com/ +USA|Shop at home|500|Sports|Offers online products like coins, knives, sports|http://wwitv.com/tt/8189.asx|http://www.shopathometv.com/ +USA|Shop NBC|300|Shopping|Offers an online productrange from computers, around the|http://wwitv.com/tt/6920.asx|http://www.shopnbc.com/ +USA|Skreem TV Ch. 1|512|Unknown|24/7 best of r&b and hiphop videos without|http://wwitv.com/tt/b1476.asx|http://www.skreem.tv/ +USA|Skreem TV Ch. 2|512|Music|Country music|http://wwitv.com/tt/b2493.asx|http://www.skreem.tv +USA|Skreem TV Ch. 3|512|Music|Rock Music|http://wwitv.com/tt/b2494.asx|http://www.skreem.tv +USA|Skreem TV Ch. 4|512|Music|Latin music|http://wwitv.com/tt/b2495.asx|http://www.skreem.tv +USA|Skreem TV Ch. 5|512|Music|Hip Hop music|http://wwitv.com/tt/b2496.asx|http://www.skreem.tv +USA|Smile of a child TV|300|Religious|Children's Christian programming|http://wwitv.com/tt/b2613.asx|http://www.smileofachildtv.org +USA|SMTV|200|Religious|Spiritual channel|http://wwitv.com/tt/b2607.asx|http://suprememastertelevision.com +USA|SSPTV|273|Sports|Sam-Son Productions Television, 24/7, News, Sports, and|http://wwitv.com/tt/b2053.asx|http://www.ssptv.com +USA|Strawberry TV|98|Education|Entertaining & Educational Internet TV from the Deep|http://wwitv.com/tt/6800.asx|http://www.strawberrytv.com/ +USA|Stver|291|Music|Armenian music|http://wwitv.com/tt/b2611.asx|http://www.stvertv.com/ +USA|TBN Enlace|291|Religious|A spanish language Christian Network|http://wwitv.com/tt/7902.asx|http://www.enlace.org/ +USA|TCT|300|Religious|Christian TV channel|http://wwitv.com/tt/b2612.asx|http://www.tct.tv/ +USA|Telegracia|377|Religious|Christian TV (spanish) from Miami|http://wwitv.com/tt/b2330.asx|http://www.creciendoengracia.com/telegracia/ +USA|TVW|182|Public TV|Located in Washington. Public policy events|http://wwitv.com/tt/6238.asx|http://www.tvw.org/media/ +USA|UATV|225|Education|Broadcasting from Anchorage: Nasa TV, Bachelor of Business|http://wwitv.com/tt/7631.ram|http://uatv.alaska.edu/ +USA|UCTV|151|Education|The educational tv network for the University of|http://wwitv.com/tt/6922.ram|http://www.uctv.tv/ +USA|UMTV|400|Education|University of Michigan Television - various|http://wwitv.com/tt/6586.asx|http://www.itcom.itd.umich.edu/streaming/webcasts.html +USA|UN press briefings|100|Unknown|Live and archived press biefings|http://wwitv.com/tt/7180.smil|http://www.un.org/webcast +USA|UW2TV|250|Education|University of Washington TV, channel 2|http://wwitv.com/tt/7660.asx|http://www.washington.edu/uw2tv/ +USA|UWTV|220|Education|TV from the University of Washington|http://wwitv.com/tt/7172.asx|http://www.uwtv.org/ +USA|VSU TV|225|Unknown|Students in the television area work with VSU-TV, South|http://wwitv.com/tt/7317.ram|http://vsutv.valdosta.edu/ +USA|WCSN|400|General|General sports channel|http://wwitv.com/tt/b3206.asx|http://www.wcsn.com/ +USA|Weather channel|347|Weather|US Weather forecast|http://wwitv.com/tt/b2580.asx|http://www.weather.com/ +USA|WFK Channel|300|Religious|Christian channel|http://wwitv.com/tt/b3207.asx|http://wwitv.com/unknown.htm +USA|WMCI TV|200|Shopping|Not always online. High end production facility located on|http://wwitv.com/tt/8439.asx|http://www.wmcitv.org/ +USA|Woodworking channel|312|Unknown|Woodcraft TV|http://wwitv.com/tt/b2571.asx|http://www.thewoodworkingchannel.com/ +USA|Word on da streets|225|Web TV|Web TV with hip hop video clips|http://wwitv.com/tt/b3201.asx|http://www.tvshowcaster.com/images/internet_tv_wods.htm +USA|Young Turks|150|Unknown|Progressive talk radio & webTV. Live Mon-Fri|http://wwitv.com/tt/b2251.asx|http://www.theyoungturks.com/ +Uzbekistan|TV Uzbekistan|120|Unknown||http://wwitv.com/tt/b1863.asx|http://mtrk.uz +Uzbekistan|TV Yoshlar|120|Unknown||http://wwitv.com/tt/b1862.asx|http://mtrk.uz +Vatican city|Sat2000|300|Religious|Catholic channel|http://wwitv.com/tt/7269.asx|http://www.sat2000.it +Vatican city|Vatican TV|200|Unknown|Only transmitting during some parts of the day when|http://wwitv.com/tt/38.asx|http://www.radiovaticana.org/ +Venezuela|ANTV|45|National TV|The National Assembly|http://wwitv.com/tt/b1859.asx|http://www.antv.gob.ve/ +Venezuela|Avila TV|273|Unknown||http://wwitv.com/tt/b2305.asx|http://www.canaldenoticias.tv/ +Venezuela|Avila TV|273|Regional TV|Regional television channel created by the Venezuelan|http://wwitv.com/tt/b2301.asx|http://www.avila.tv/ +Venezuela|RCTV|75|General|General TV station|http://wwitv.com/tt/2069.asx|http://www.rctv.net/ +Venezuela|Telesur TV|250|General|General TV station|http://wwitv.com/tt/8375.asx|http://www.arcoiris.tv/ +Venezuela|TVS 32|64|Unknown|TV from Maracay|http://wwitv.com/tt/b2267.asx|http://www.tvs.net.ve/ +Venezuela|Venezolana de TV|100|Government|Government television with diversified|http://wwitv.com/tt/7300.asx|http://www.vtv.gov.ve/ +Venezuela|VIVE TV|100|Unknown|Ministry of communication and information|http://wwitv.com/tt/b1572.asx|http://www.vive.gob.ve/ +Venezuela|Whitezoom|273|Web TV|Web TV|http://wwitv.com/tt/b3229.asx|http://whitezoomchannel.com/ +Vietnam|Hanoi TV|273|Unknown|Not always online|http://wwitv.com/tt/7376.asx|http://hanoitv.org.vn +Vietnam|HTV|273|General|General TV station with sports from Hanoi|http://wwitv.com/tt/8040.asx|http://www.hanoitv.org.vn/ +Vietnam|HTV9|300|Unknown|Ho Chi Minh City TV|http://wwitv.com/tt/7974.asx|http://www.htv.com.vn/ +Vietnam|VT1|231|Unknown||http://wwitv.com/tt/b1912.asx|http://www.vtc.vn/ +Vietnam|VT2|242|Sports|Sometimes broadcasting European soccer|http://wwitv.com/tt/b1913.asx|http://www.vtc.vn/ +Vietnam|VT5|273|Unknown||http://wwitv.com/tt/b3274.asx|http://www.vtc.vn/ +Vietnam|VTV1|250|Unknown||http://wwitv.com/tt/b2246.asx|http://www.vtc.com.vn/ +Vietnam|VTV3|250|Unknown||http://wwitv.com/tt/7797.asx|http://www.vtc.com.vn/ +Vietnam|VTV4|250|News|Variety of streams available; amongst others news, sport,|http://wwitv.com/tt/8238.asx|http://www.vtc.com.vn +Zimbabwe|Mabonakude|120|Unknown|Recorded streams available on website|http://wwitv.com/tt/8239.asx|http://www.mabonakude.com/ Index: /trunk/src/player/tv/channels.rpl =================================================================== --- /trunk/src/player/tv/channels.rpl (revision 84) +++ /trunk/src/player/tv/channels.rpl (revision 84) @@ -0,0 +1,1687 @@ +//rulesPlayer playlist +pladdurl2 "Albania | News | 100 | A1 | Economic and business news | http://www.a1tv.al/" "rtsp://80.91.117.20:8080/broadcast/live.rm" +pladdurl2 "Albania | News | 100 | Top Channel | News TV channel | http://www.top-channel.tv" "http://shqiphost.top-channel.tv/18754795/lajme/lajme2.wmv" +pladdurl2 "Albania | News | 85 | Vizion Plus | Local TV from Tirane with recorded news | http://www.vizionplus.tv/" "http://www.vizionplus.tv/foto/lajme.wmv" +pladdurl2 "Algeria | Sports | 77 | ENTV (TELEVISION ALGERIENNE LIVE [Server 1]) | News and sports | http://www.entv.dz/" "mms://winlive.coltstream.net/winlive.coltstream.net/algtv56k" +pladdurl2 "Algeria | Sports | 77 | ENTV (TELEVISION ALGERIENNE LIVE [Server 3]) | News and sports | http://www.entv.dz/" "mms://winlive.coltstream.net/winlive.coltstream.net/algtv56k" +pladdurl2 "Algeria | Sports | 77 | ENTV (TELEVISION ALGERIENNE LIVE [Server 4]) | News and sports | http://www.entv.dz/" "mms://winlive.coltstream.net/algtv56k" +pladdurl2 "Algeria | Sports | 77 | ENTV | News and sports | http://www.entv.dz/" "http://www.entv.dz/online/telecharger.php" +pladdurl2 "Andorra | General | 273 | ATV | General TV station | http://www.rtvasa.ad/" "mms://194.158.91.91/Atv" +pladdurl2 "Argentina | Local | 100 | Canal 10 | Local TV from the province of Tucuman | http://www.tucuman.tv/" "http://tucumantv.interrogacaodigital.net/tucumantv" +pladdurl2 "Argentina | Unknown | 350 | Canal 11 | Located in San Miguel City, Buenos | http://www.telered.com.ar/" "mms://media.telered.com.ar:8080" +pladdurl2 "Argentina | Local | 100 | Canal 11 Paraná (Canal 11 | Paraná, Entre Ríos. Argentina.) | Local TV from Paraná | http://www.eloncedigital.com.ar/hoy/" "http://media02.cxnlive.com:8080/canal11parana" +pladdurl2 "Argentina | Local | 100 | Canal 11 Paraná (Canal 11 | Paraná, Entre Ríos. Argentina.) | Local TV from Paraná | http://www.eloncedigital.com.ar/hoy/" "http://www.cxnlive.com/cxn1.wma" +pladdurl2 "Argentina | Local | 100 | Canal 11 Paraná | Local TV from Paraná | http://www.eloncedigital.com.ar/hoy/" "mms://media02.cxnlive.com/canal11parana" +pladdurl2 "Argentina | Unknown | 138 | Canal 12 TV12 | TV station from Posadas, Misiones. LT 85 TV Canal | http://www.tv12misiones.com.ar/" "http://209.126.144.39:8004/canal12.nsv" +pladdurl2 "Argentina | News | 140 | Canal 13 | Recorded news TV from Buenos Aires | http://www.canaltrece.com.ar/" "mms://wmedia03.uigc.net/TelenocheOnDemand" +pladdurl2 "Argentina | News | 150 | Canal 26 | News station | http://www.26noticias.com.ar/" "mms://200.115.192.52:1162/Canal_26.wvx" +pladdurl2 "Argentina | Local | 100 | Canal 4 | Local TV from Esquel (Chubut) | http://www.canal4tv.net/" "http://streammax.alsolnet.com/canal4" +pladdurl2 "Argentina | Local | 100 | Canal 5 | Local TV from the province of Tucuman | http://www.tucuman.tv/" "http://stream1.interrogacaodigital.net/tucumantv2" +pladdurl2 "Argentina | Unknown | 155 | Canal 6 | TV station from Posadas, Misiones province | http://www.noticiasdel6.com/" "http://streampwr.alsolnet.com:89/noticiasdel6" +pladdurl2 "Argentina | Unknown | 50 | Canal 7 | Located in Santiago del Estero | http://www.castv.com.ar/" "mms://www.550m.com/panoramatv" +pladdurl2 "Argentina | National TV | 100 | Canal 7 Argentina | National television from Buenos Aires | http://www.canal7argentina.com.ar/" "mms://streaming.snmp.gov.ar/canal7argentina" +pladdurl2 "Argentina | Unknown | 70 | Canal 7 Mendoza | Broadcasting from Mendoza | http://www.canal7mendoza.com.ar/" "http://200.61.35.19/canal7" +pladdurl2 "Argentina | Sports | 100 | Canal 9 | News and sports | http://www.canal9.com.ar/" "mms://200.73.177.44/alta" +pladdurl2 "Argentina | Sports | 100 | Canal 9 | News and sports | http://www.canal9.com.ar/" "mms://200.73.177.44/baja" +pladdurl2 "Argentina | Religious | 291 | Canal Luz | Christian family broadcast | http://canalluz.org/" "mms://201.252.194.146:1100" +pladdurl2 "Argentina | Unknown | 262 | Canal Provincial | | http://www.telered.com.ar/" "mms://media.telered.com.ar:8080/" +pladdurl2 "Argentina | Religious | 350 | Canal Santa Maria | Religious TV from Mercedes City, Buenos Aires | http://www.telered.com.ar/" "mms://media.telered.com.ar:9090" +pladdurl2 "Argentina | Unknown | 120 | CBA TV | Located in Cordoba | http://www.cbatv.com.ar/" "mms://24.232.1.75/CbaTV" +pladdurl2 "Argentina | Music | 95 | CMTV | Music TV station from Buenos Aires | http://www.cmtv.com.ar/" "mms://200.62.54.103/satan" +pladdurl2 "Argentina | Unknown | 37 | Senado TV | Live from the Argentinian senat | http://www.senado.gov.ar/" "mms://200.47.131.1/senadores" +pladdurl2 "Argentina | General | 80 | Telecondor Satelital | General TV station from Cordova | http://www.telecondorsatelital.com.ar/" "http://stream.grandiyasociados.net/video78" +pladdurl2 "Argentina | News | 141 | TN24Horas | News TV | http://www.tn24horas.com/" "mms://wmedia01.uigc.net/TN" +pladdurl2 "Argentina | Music | 100 | TV Uno | Located in Mar del Plata, County of Buenos Aires. Music, | http://www.tvuno.com.ar/" "http://streammax.alsolnet.com/mdqteleweb" +pladdurl2 "Argentina | Local | 120 | Zona 31 (Zona 31) | Local TV from the Prov. de Bs. As. cubriendo | http://www.zona31.com.ar/" "http://streampwr.alsolnet.com:89/zona31" +pladdurl2 "Armenia | Music | 300 | Aragova TV | Armenian music broadcasting amateur TV | http://aragova.narod.ru/" "mms://66.118.185.106/PP2" +pladdurl2 "Armenia | General | 350 | Horizon TV | General TV station | http://www.horizonarmeniantv.com/" "http://38.98.3.59/HorizonTVLive" +pladdurl2 "Armenia | News | 100 | VOA | Recorded news | http://www.voanews.com" "http://www.voanews.com/real/voa/eurasia/arme/arme1430v.ram" +pladdurl2 "Aruba | General | 225 | Bo Canal 24 | General TV station | http://www.bocanal24.com/" "http://209.88.129.57:8080/ramgen/encoder/css.rm" +pladdurl2 "Australia | Children | 213 | ABC Kids | Program for little children | http://www.abc.net.au/broadbandkids/" "http://www.abc.net.au/broadbandkids/ram/hifi.ram" +pladdurl2 "Australia | Religious | 270 | ACC | The Australian Christian TV broadcasts on TV channel 49 of | http://www.acctv.com.au/" "mms://acc.streamit.com.au/accbroadcast" +pladdurl2 "Australia | Sports | 371 | Bigpond | Clips of sports highlights, music, movie, game news and | http://www.bigpondtv.com/" "http://wm9.streaming.telstra.com/ucs-wh_BigPondTV0live2?wmcache=0" +pladdurl2 "Australia | Sports | 371 | Bigpond | Clips of sports highlights, music, movie, game news and | http://www.bigpondtv.com/" "http://wm9.streaming.telstra.com/ucs-wh_BigPondTV0live1?wmcache=0" +pladdurl2 "Austria | Music | 500 | Beatone | Music TV | http://www.beatone.tv" "http://stream2.netro.ca/mediahaus" +pladdurl2 "Austria | Unknown | 190 | Gipsy TV | Gypsy TV | http://www.gipsytv.com/" "mms://86.59.21.210/GipsyTV" +pladdurl2 "Austria | Unknown | 350 | Kitz TV | TV from Kitzbuehl | http://www.kitz.net/cams.html" "mms://217.14.230.62/kitztv" +pladdurl2 "Austria | Religious | 355 | K-TV | Catholic TV station from Dornbirn | http://www.k-tv.at/" "mms://212.12.127.212:8080/" +pladdurl2 "Azerbaijan | General | 150 | AZTV | The Azerbaijan State TV | http://www.aztv.az/" "mms://62.212.234.212/aztv" +pladdurl2 "Azerbaijan | Music | 250 | GunAz TV | Issues of North and South Azerbaijan, music, politics | http://www.gunaz.tv/" "mms://cdncon.wm.llnwd.net/cdncon_pam7?MSWMExt=.asf" +pladdurl2 "Azerbaijan | Public TV | 273 | Ictimai TV | Public TV | http://www.itv.az/" "mms://81.30.145.36:1044" +pladdurl2 "Bahrain | Unknown | 256 | Discover Islam TV | Offers programs for the purpose of informing the | http://www.discoverislam.net/" "http://212.35.66.83/discover.ram" +pladdurl2 "Belarus | National TV | 100 | Belarus TV | First National TV station | http://www.tvr.by/eng/tv1.asp" "mms://bcast.tvr.by/video" +pladdurl2 "Belgium | News | 100 | EBS | The European Union's TV news agency | http://europa.eu.int/comm/avservices/ebs/welcome_en.cfm" "rtsp://158.169.50.18/encoder/ebs1/or.rm" +pladdurl2 "Belgium | News | 288 | RTC Tele Liege | Local TV with recorded news | http://www.rtc.be" "http://video.rtc.be/jt_du_jour.wmv" +pladdurl2 "Belgium | News | 200 | RTV | Recorded Flemish news broadcast | http://www.rtv.be/website_2004/NieuwsVideo32.asp" "http://www.rtv-media.be/nieuws/nieuwskempen.wmv" +pladdurl2 "Belgium | Unknown | 220 | Senaat | TV from the Belgian senate (sometimes online) | http://www.senate.be" "http://www.senate.be/wwwcgi/stream?lang=nl" +pladdurl2 "Belgium | Music | 1500 | TMF | The Music Factory | http://www.tmf.be" "mms://213.75.12.106/tmf_be_high" +pladdurl2 "Belgium | Weather | 300 | VTM Weer | Weatherforecast (13:00) | http://www.vtm.be/" "mms://clusterstreamhobo.telenet-ops.be/VMMa/vtm/weer/weer_13h.wmv" +pladdurl2 "Belgium | Weather | 300 | VTM Weer (VTM WEER) | Weatherforecast (19:00) | http://www.vtm.be" "mms://clusterstreamhobo.telenet-ops.be/VMMa/vtm/weer/weer_19h.wmv" +pladdurl2 "Belize | News | 331 | 7 News | Recorded news available on website | http://www.7newsbelize.com/" "mms://200.32.198.90/7news" +pladdurl2 "Belize | News | 282 | Channel 5 | Recorded news available on website | http://www.channel5belize.com/" "mms://200.32.198.94/channel5" +pladdurl2 "Benin | News | 196 | LC2 | International news | http://www.lc2international.tv/" "mms://str11.streamakaci.com/lc2international" +pladdurl2 "Benin | News | 196 | LC2 | International news | http://www.lc2international.tv/" "mms://str38.streamakaci.com/lc2international" +pladdurl2 "Benin | News | 196 | LC2 | International news | http://www.lc2international.tv/" "http://str11.streamakaci.com/lc2international" +pladdurl2 "Benin | News | 196 | LC2 | International news | http://www.lc2international.tv/" "http://str38.streamakaci.com/lc2international" +pladdurl2 "Bolivia | Local | 100 | Full Television Canal 39 | Local TV station from Santa Cruz de la | http://www.fulltelevision.tv" "http://201.222.92.238:3939" +pladdurl2 "Bolivia | National TV | 100 | Gigavision | National network | http://www.cotas.net/" "mms://200.58.160.36/Gigavision" +pladdurl2 "Bolivia | Unknown | 159 | Megavision Canal 18 | From Santa Cruz de la Sierra | http://www.cotas.net/" "mms://200.58.160.36/Megavision" +pladdurl2 "Bolivia | Religious | 100 | Redadvenir | Christian TV station | http://redadvenir.org/espsite/index.php" "mms://eleden.com/redadvenir" +pladdurl2 "Bolivia | News | 100 | Unitel TV | Live and recorded news available on website | http://www.unitel.tv/" "mms://ecor-unitel.wm.llnwd.net/ecor_unitel" +pladdurl2 "Bosnia&herz. | News | 35 | BHTV | Recorded news broadcast from the Public Broadcast Service of | http://www.pbsbih.ba/" "http://www.pbsbih.ba/real/dnevnikbhtv1.ram" +pladdurl2 "Bosnia&herz. | News | 51 | NTV Hayat | Recorded news | http://www.ntvhayat.com/home/video/showcase.php" "http://video.ntvhayat.com/dnevnik.rm" +pladdurl2 "Bosnia&herz. | News | 112 | VOA Bosnia | Voice of America with Bosnian News | http://www.voa.gov/" "http://www.voanews.com/real/voa/europe/bosn/bosn2230v.ram" +pladdurl2 "Brazil | Unknown | 141 | ALCE | Assemblee of Ceará | http://www.al.ce.gov.br/" "mms://200.253.37.16:8080" +pladdurl2 "Brazil | Unknown | 140 | AllTV | 100% live content with on-line chat; 24/7 in some | http://www.alltv.com.br/" "mms://media.brturbo.com/turbotv.wmv" +pladdurl2 "Brazil | General | 300 | Amaury JR | General TV station from Sao Paulo | http://www.amauryjr.com.br/" "mms://galileo.netpoint.com.br/_amauryjr150" +pladdurl2 "Brazil | General | 300 | Amaury JR | General TV station from Sao Paulo | http://www.amauryjr.com.br/" "mms://galileo.netpoint.com.br/_amauryjr90" +pladdurl2 "Brazil | Religious | 193 | AtaliaNet | Christian TV station | http://www.atalaianet.com/" "mms://130.94.69.93/Web TV AtalaiaNET" +pladdurl2 "Brazil | News | 200 | Bandnews | Online News TV from Brazil | http://www.bandnews.com.br/" "mms://200.218.192.66/bandnews" +pladdurl2 "Brazil | News | 200 | Bandnews | Online News TV from Brazil | http://www.bandnews.com.br/" "mms://media01.brturbo.com.br/bandnews_secure.wmv?url=17632616183115" +pladdurl2 "Brazil | Sports | 150 | Bandsports | Sports TV | http://www.band.com.br/bandsports/" "mms://200.218.192.66/bandsports" +pladdurl2 "Brazil | Sports | 150 | Bandsports | Sports TV | http://www.band.com.br/bandsports/" "mms://media2.brturbo.com/bandsports.wmv" +pladdurl2 "Brazil | Sports | 150 | Bandsports | Sports TV | http://www.band.com.br/bandsports/" "mms://200.218.192.66/bandsports" +pladdurl2 "Brazil | Sports | 150 | Bandsports | Sports TV | http://www.band.com.br/bandsports/" "mms://media2.brturbo.com/bandsports.wmv" +pladdurl2 "Brazil | News | 100 | Canal 21 | Movies and news station from Cascavel | http://www.canal21cascavel.com.br/" "mms://201.14.17.131:8080" +pladdurl2 "Brazil | Unknown | 256 | Cancao Nova | Live from Sao Paulo | http://www.cancaonova.org.br/" "http://srv1.hdtvweb.net/tv128k" +pladdurl2 "Brazil | Unknown | 256 | Cancao Nova | Live from Sao Paulo | http://www.cancaonova.org.br/" "http://67.18.159.4/tv128k" +pladdurl2 "Brazil | Unknown | 256 | Cancao Nova | Live from Sao Paulo | http://www.cancaonova.org.br/" "http://srv2.hdtvweb.net/tv128k" +pladdurl2 "Brazil | Unknown | 256 | Cancao Nova | Live from Sao Paulo | http://www.cancaonova.org.br/" "http://67.18.194.4/tv128k" +pladdurl2 "Brazil | Unknown | 256 | Cancao Nova | Live from Sao Paulo | http://www.cancaonova.org.br/" "http://srv3.hdtvweb.net/tv128k" +pladdurl2 "Brazil | Unknown | 256 | Cancao Nova | Live from Sao Paulo | http://www.cancaonova.org.br/" "http://70.84.24.28/tv128k" +pladdurl2 "Brazil | Unknown | 256 | Cancao Nova | Live from Sao Paulo | http://www.cancaonova.org.br/" "http://srv4.hdtvweb.net/tv128k" +pladdurl2 "Brazil | Unknown | 256 | Cancao Nova | Live from Sao Paulo | http://www.cancaonova.org.br/" "http://70.84.100.20/tv128k" +pladdurl2 "Brazil | Unknown | 256 | Cancao Nova | Live from Sao Paulo | http://www.cancaonova.org.br/" "http://srv5.hdtvweb.net/tv128k" +pladdurl2 "Brazil | Unknown | 256 | Cancao Nova | Live from Sao Paulo | http://www.cancaonova.org.br/" "http://srv6.hdtvweb.net/tv128k" +pladdurl2 "Brazil | Unknown | 256 | Cancao Nova | Live from Sao Paulo | http://www.cancaonova.org.br/" "http://srv7.hdtvweb.net/tv128k" +pladdurl2 "Brazil | Unknown | 256 | Cancao Nova | Live from Sao Paulo | http://www.cancaonova.org.br/" "http://srv8.hdtvweb.net/tv128k" +pladdurl2 "Brazil | Sports | 140 | DM TV | Sports TV | http://www.dm.com.br/" "mms://wmlive.vitalstreamcdn.com/live_unigraf_vitalstream_com_dmtvlive" +pladdurl2 "Brazil | Unknown | 116 | Embratel 21 | TV from the Embratel Institute | http://www.bibliotecamultimidia.org.br/" "mms://mediafarm21.cdn.embratel.net.br/embratel21-v" +pladdurl2 "Brazil | Education | 141 | Faap TV | Educational TV located in Sao Paulo | http://www.tvfaap.com.br/" "mms://video.faap.br/tvfaap" +pladdurl2 "Brazil | Children | 89 | Novo Tempo | Variety of streams; diverse subjects, childrens | http://www.novotempo.org.br/" "mms://www.novotempo.org.br/TVNovoTempo-Vivo" +pladdurl2 "Brazil | Religious | 140 | Ongrace | Religious TV station from Sao Paulo | http://www.ongrace.com/" "mms://streaming.ongrace.com/tv" +pladdurl2 "Brazil | Religious | 140 | Ongrace | Religious TV station from Sao Paulo | http://www.ongrace.com/" "mms://70.86.179.146:81/tv" +pladdurl2 "Brazil | Religious | 120 | Rede Gospel | Christian TV | http://www.igospel.com.br/" "mms://media2.igospel.com.br/tv_gospel" +pladdurl2 "Brazil | Unknown | 90 | Rede Super | Evangelical channel from Belo Horizonte | http://www.lagoinha.com" "http://lagoinha.windowsmedia.com.br/rs100" +pladdurl2 "Brazil | Unknown | 90 | Rede Super | Evangelical channel from Belo Horizonte | http://www.lagoinha.com" "http://70.86.52.115/rs100" +pladdurl2 "Brazil | Unknown | 160 | Rede TV SUL | Family channel | http://www.brturbo.com" "mms://media.brturbo.com/scc.wmv" +pladdurl2 "Brazil | Education | 95 | RTVE | Educational TV from Parana | http://www.pr.gov.br/rtve/" "mms://200.189.113.200/TVE" +pladdurl2 "Brazil | Local | 100 | TV Aperipe | Local TV from Getúlio Vagas | http://www.infonet.com.br/aperipe/tvaperipe.asp" "mms://midia.infonet.com.br/tvaperipe" +pladdurl2 "Brazil | Unknown | 143 | TV Aroba | | http://www.taroba.com.br/" "mms://taroba.sercomtel.com.br/taroba/" +pladdurl2 "Brazil | General | 60 | TV Brasilia | General TV station | http://www.tvbrasilia.com.br/" "mms://webtv.tvbrasilia.com.br/tvbsb" +pladdurl2 "Brazil | Government | 102 | TV Camara | Government TV located in Brasilia | http://www.camara.gov.br/internet/tvcamara/default.asp?selecao=VIVO" "mms://theon.camara.gov.br/TV" +pladdurl2 "Brazil | Unknown | 100 | TV Capital | Located in Florianopolis SC | http://www.tvcapital.com.br/" "mms://200.101.192.237:4633" +pladdurl2 "Brazil | Unknown | 125 | TV Cidade | Television from Aracaju | http://www.tvcidade.com/" "mms://aovivo.tvcidade.com:8000/tvcidade" +pladdurl2 "Brazil | Weather | 100 | TV Climatempo | Weather channel | http://www.climatempo.com.br/" "mms://wms.tvcanalinternet.com/tvTempo " +pladdurl2 "Brazil | Religious | 100 | TV Espiritualista | Spiritual program | http://www.tvespiritualista.com.br/" "mms://streaming.medialux.com.br/tvespiritualista" +pladdurl2 "Brazil | Unknown | 140 | TV Justicia | TV dedicated to justice | http://www.tvjustica.gov.br/" "http://mediaserver.stf.gov.br/tv-justica" +pladdurl2 "Brazil | Local | 141 | TV Poços | Local TV Station from the city Poços de Caldas | http://www.tvpocos.com.br/" "mms://rs1.redeupx.net/225" +pladdurl2 "Brazil | Religious | 100 | TV Primeira (Aguarde, conectando...) | Babtist church in Vitoria | http://www.pibvitoria.org.br" "conectando.gif" +pladdurl2 "Brazil | Religious | 100 | TV Primeira (TV Primeira) | Babtist church in Vitoria | http://www.pibvitoria.org.br" "mms://206.222.24.138:81/pibvitoria" +pladdurl2 "Brazil | Religious | 100 | TV Primeira (Emissora fora do ar, tente mais tarde...) | Babtist church in Vitoria | http://www.pibvitoria.org.br" "foradoar.gif" +pladdurl2 "Brazil | Music | 70 | TV Rock | Music TV station from Sao Paulo | http://www.tvrock.com.br/" "mms://galileo.netpoint.com.br/_SEXTA" +pladdurl2 "Brazil | Education | 45 | TV Seculo 21 | Educational programming from Sao Paulo | http://www.tvseculo21.org.br/" "mms://200.186.96.90:8080" +pladdurl2 "Brazil | Unknown | 141 | TV Senado | Not always online. Live TV from the Brazilian | http://www.senado.gov.br/tv/" "mms://bombadil.senado.gov.br/wmtencoder/tv.wmv" +pladdurl2 "Brazil | Unknown | 141 | TV Senado | Not always online. Live TV from the Brazilian | http://www.senado.gov.br/tv/" "mms://bombadil.senado.gov.br/wmtencoder/tv2.wmv" +pladdurl2 "Brazil | Unknown | 150 | TV Taroba | TV station from Cascavel (PR) | http://www.taroba.com.br/aovivo/default.asp" "mms://taroba.sercomtel.com.br/taroba/" +pladdurl2 "Brazil | Unknown | 200 | TVDEZ | Broadcasted from London (UK) | http://www.tvdez.com.br/" "http://205.234.168.81/tv10" +pladdurl2 "Brazil | Unknown | 80 | TVE | TV station located in Porto Alegre, RS | http://www.tve.com.br" "http://mmidia1.procergs.com.br:8080/ramgen/encoder/tve/tvers.rm" +pladdurl2 "Brazil | Unknown | 220 | UNI TV Canal 15 | Located in Porto Alegre | http://www.pucrs.br/" "rtsp://unitv.pucrs.br:8080/encoder/tv.rm" +pladdurl2 "Brunei daris. | National TV | 300 | RTB | National TV station | http://www.rtb.gov.bn/" "mms://202.160.15.87/Station4-300k" +pladdurl2 "Bulgaria | Government | 289 | BTK international | Military channel | http://mtc.eamci.bg/index.html" "mms://212.162.6.51:9010" +pladdurl2 "Bulgaria | Government | 292 | BTK national | Military channel | http://mtc.eamci.bg/index.html" "mms://87.120.130.2:9090" +pladdurl2 "Bulgaria | Web TV | 130 | Eurofolk | Web TV dedicated to European Folklore | http://www.eurofolk.com/tv/" "mms://206.225.90.39:8080/" +pladdurl2 "Bulgaria | General | 185 | TV Estate | Real estate and tourism TV | http://www.tvestate.com/" "mms://206.225.90.39:8081/" +pladdurl2 "Bulgaria | Music | 350 | TV Rodina | Folk Music TV | http://www.tvrodina.com/" "mms://tvrodina.com:9999" +pladdurl2 "Burkina faso. | News | 230 | RTB | Recorded news | http://www.tnb.bf/" "mms://riale.gov.bf/tnblive" +pladdurl2 "Burkina faso. | News | 230 | RTB | Recorded news | http://www.tnb.bf/" "mms://riale.gov.bf/tnb/interLude.wmv" +pladdurl2 "Burkina faso. | News | 230 | RTB | Recorded news | http://www.tnb.bf/" "mms://riale.gov.bf/tnb/midi-magazine.wmv" +pladdurl2 "Burkina faso. | News | 230 | RTB | Recorded news | http://www.tnb.bf/" "mms://212.52.129.99/tnb/interLude.wmv" +pladdurl2 "Canada | Unknown | 300 | Argent | Financial channel | http://argent.canoe.com/" "http://207.253.121.82/tvaargent" +pladdurl2 "Canada | Unknown | 276 | Canal Savoir | Talk-show and scientist channel in French | http://www.canal.qc.ca/" "http://209.226.95.138/CanalSavoir_enDirect" +pladdurl2 "Canada | News | 528 | CBC Calgary | Local news from Calgary | http://www.cbc.ca/calgary/" "http://www.cbc.ca/mrl3/8752/newsatsix/calgary.wmv" +pladdurl2 "Canada | News | 500 | CBC Edmonton | Recorded Edmonton evening news | http://www.cbc.ca/edmonton/" "http://www.cbc.ca/mrl3/8752/newsatsix/edmonton.wmv" +pladdurl2 "Canada | News | 500 | CBC Igalaaq | Local news from Igalaaq | http://www.cbc.ca/video/" "http://www.cbc.ca/mrl3/8752/newsatsix/igalaaq.wmv" +pladdurl2 "Canada | News | 500 | CBC Manitoba | Local news from Manitoba | http://www.cbc.ca/manitoba/" "http://www.cbc.ca/mrl3/8752/newsatsix/winnipeg.wmv" +pladdurl2 "Canada | News | 500 | CBC Montreal | Local news from Montreal | http://www.cbc.ca/montreal/" "http://www.cbc.ca/mrl3/8752/newsatsix/montreal.wmv" +pladdurl2 "Canada | News | 550 | CBC National | Recorded News | http://www.cbc.ca/national/" "http://www.cbc.ca/mrl3/14635/thenational/thenational.wmv" +pladdurl2 "Canada | News | 225 | CBC New Brunswick | Recorded news at six from Fredericton, New | http://www.cbc.ca/nb/" "http://www.cbc.ca/nb/media/news/newscast.ram" +pladdurl2 "Canada | News | 528 | CBC News hourly | Recorded world news | http://www.cbc.ca" "http://www.cbc.ca/mrl3/8752/hourly/hourlynewscast.wmv" +pladdurl2 "Canada | News | 400 | CBC North | Recorded daily news in inuktitut language | http://www.cbc.ca/north/" "http://a514.v8752d.c8752.g.vm.akamaistream.net/7/514/8752/55461eacfebc2e02143b7eb83c28a184/origin.media.cbc.ca/windows/newsatsix/igalaaq.wmv" +pladdurl2 "Canada | News | 400 | CBC North | English version of recorded daily news | http://www.cbc.ca/north/" "http://a514.v8752d.c8752.g.vm.akamaistream.net/7/514/8752/c12aef177d9b11cf9f23485231f94409/origin.media.cbc.ca/windows/newsatsix/northbeat.wmv" +pladdurl2 "Canada | News | 500 | CBC Northbeat | Local news from Northbeat | http://www.cbc.ca/video/" "http://www.cbc.ca/mrl3/8752/newsatsix/northbeat.wmv" +pladdurl2 "Canada | News | 528 | CBC Nova Scotia | Recorded News from Halifax, Nova Scotia CA | http://www.cbc.ca/ns/" "http://www.cbc.ca/mrl3/8752/newsatsix/halifax.wmv" +pladdurl2 "Canada | Sports | 500 | CBC Ottawa | Local Ottawa news, weather and sports | http://www.cbc.ca/ottawa/" "http://www.cbc.ca/mrl3/8752/newsatsix/ottawa.wmv" +pladdurl2 "Canada | News | 500 | CBC P.E.I. | Local news from Charlottetown | http://www.cbc.ca/video/" "http://www.cbc.ca/mrl3/8752/newsatsix/charlottetown.wmv" +pladdurl2 "Canada | News | 500 | CBC Saskatchewan | Local news from Saskatchewan | http://www.cbc.ca/sask/" "http://www.cbc.ca/mrl3/8752/newsatsix/regina.wmv" +pladdurl2 "Canada | News | 500 | CBC Toronto | Local news from Toronto | http://www.cbc.ca/toronto/" "http://www.cbc.ca/mrl3/8752/newsatsix/toronto.wmv" +pladdurl2 "Canada | News | 500 | CBC Toronto | Recorded News from Toronto | http://www.cbc.ca/toronto/" "http://www.cbc.ca/mrl3/8752/newsatsix/toronto.wmv" +pladdurl2 "Canada | News | 225 | CBC Vancouver | Recorded News from Vancouver | http://www.cbc.ca/bc/" "http://www.cbc.ca/mrl3/8752/newsatsix/vancouver.wmv" +pladdurl2 "Canada | News | 56 | CityNews | Toronto's 24 newssource | http://www.citynews.ca/" "mms://a821.l1253936820.c12539.g.lm.akamaistream.net/D/821/12539/v0001/reflector:36820" +pladdurl2 "Canada | Unknown | 118 | CPAC English | Canadian Parliament Channel showing the proceedings | http://www.cpac.ca" "http://206.191.11.111/cpac1e" +pladdurl2 "Canada | Unknown | 118 | CPAC English | Canadian Parliament Channel showing the proceedings | http://www.cpac.ca" "http://206.191.11.112/cpac1e" +pladdurl2 "Canada | Unknown | 118 | CPAC French | Canadian Parliament Channel showing the proceedings of | http://www.cpac.ca" "http://206.191.11.111/cpac1f" +pladdurl2 "Canada | Unknown | 118 | CPAC French | Canadian Parliament Channel showing the proceedings of | http://www.cpac.ca" "http://206.191.11.112/cpac1f" +pladdurl2 "Canada | News | 329 | CTV News | News station | http://www.ctv.ca/news" "mms://a1729.l2168647534.c21686.g.lm.akamaistream.net/D/1729/21687/v0001/reflector:35351" +pladdurl2 "Canada | Unknown | 100 | Didar TV | TV station located in Hamilton (ON) in Persian | http://www.didarglobaltv.com/" "MMS://Stream240.PackDeal.Com/Didar-Cable" +pladdurl2 "Canada | Unknown | 100 | Didar TV | TV station located in Hamilton (ON) in Persian | http://www.didarglobaltv.com/" "mms://Stream240.PackDeal.Com/Didar-Cable" +pladdurl2 "Canada | Unknown | 100 | Didar TV | TV station located in Hamilton (ON) in Persian | http://www.didarglobaltv.com/" "mms://Stream240.PackDeal.Com:88/Didar-Cable" +pladdurl2 "Canada | Unknown | 100 | Didar TV | TV station located in Hamilton (ON) in Persian | http://www.didarglobaltv.com/" "Didar-Cable.asx" +pladdurl2 "Canada | Unknown | 100 | Didar TV | TV station located in Hamilton (ON) in Persian | http://www.didarglobaltv.com/" "MMS://Stream240.PackDeal.Com/Didar" +pladdurl2 "Canada | Unknown | 100 | Didar TV | TV station located in Hamilton (ON) in Persian | http://www.didarglobaltv.com/" "mms://Stream240.PackDeal.Com/Didar" +pladdurl2 "Canada | Unknown | 100 | Didar TV | TV station located in Hamilton (ON) in Persian | http://www.didarglobaltv.com/" "mms://Stream240.PackDeal.Com:88/Didar" +pladdurl2 "Canada | Unknown | 100 | Didar TV | TV station located in Hamilton (ON) in Persian | http://www.didarglobaltv.com/" "Didar.asx" +pladdurl2 "Canada | Local | 350 | Eastlink | Offers a wide variety of local programming | http://www.eastlink.ca/eltv/ELTV_WebCasting/" "http://www.eastlink.ca/eltv/ELTV_WebCasting/webcast.ram" +pladdurl2 "Canada | News | 300 | LCN | News TV channel | http://lcn.canoe.com/" "http://207.253.121.82/LCN" +pladdurl2 "Canada | Religious | 280 | Miracle Channel | Religious TV channel | http://www.miraclechannel.ca/" "mms://70.87.8.31/miracle-sat" +pladdurl2 "Canada | Local | 500 | Northbay | Local TV from Ontario | http://www.newnorthbay.com/" "mms://72.38.57.246/NewNorthBay" +pladdurl2 "Canada | Movies | 190 | Reservoir Films | Movie channel | http://www.reservoirfilms.com" "http://213.251.176.140:8100/;stream.nsv" +pladdurl2 "Canada | Shopping | 200 | Shop TV Canada | Shopping TV | http://shoptvcanada.com/" "mms://ss1.tsw.ca/shoptv1" +pladdurl2 "Canada | Shopping | 200 | Shop TV Canada | Shopping TV | http://shoptvcanada.com/" "mms://ss2.tsw.ca/shoptv1" +pladdurl2 "Canada | Shopping | 200 | Shop TV Canada | Shopping TV | http://shoptvcanada.com/" "mms://ss1.tsw.ca/shoptv2" +pladdurl2 "Canada | Shopping | 200 | Shop TV Canada | Shopping TV | http://shoptvcanada.com/" "mms://ss2.tsw.ca/shoptv2" +pladdurl2 "Canada | Shopping | 200 | Shop TV Canada | Shopping TV | http://shoptvcanada.com/" "mms://ss1.tsw.ca/shoptv1" +pladdurl2 "Canada | Shopping | 200 | Shop TV Canada | Shopping TV | http://shoptvcanada.com/" "mms://ss2.tsw.ca/shoptv1" +pladdurl2 "Canada | Shopping | 200 | Shop TV Canada | Shopping TV | http://shoptvcanada.com/" "mms://ss1.tsw.ca/shoptv2" +pladdurl2 "Canada | Shopping | 200 | Shop TV Canada | Shopping TV | http://shoptvcanada.com/" "mms://ss2.tsw.ca/shoptv2" +pladdurl2 "Canada | Shopping | 200 | Shop TV Canada | Shopping TV | http://shoptvcanada.com/" "mms://ss1.tsw.ca/shoptv1" +pladdurl2 "Canada | Shopping | 200 | Shop TV Canada | Shopping TV | http://shoptvcanada.com/" "mms://ss2.tsw.ca/shoptv1" +pladdurl2 "Canada | Shopping | 200 | Shop TV Canada | Shopping TV | http://shoptvcanada.com/" "mms://ss1.tsw.ca/shoptv2" +pladdurl2 "Canada | Shopping | 200 | Shop TV Canada | Shopping TV | http://shoptvcanada.com/" "mms://ss2.tsw.ca/shoptv2" +pladdurl2 "Canada | Religious | 539 | The Stream | Religious Web TV | http://www.thestreamtv.com/" "http://www.thestreamtv.com/streamtv.m3u" +pladdurl2 "Canada | Religious | 539 | The Stream | Religious Web TV | http://www.thestreamtv.com/" "mms://64.106.201.90/thestreamtvlive" +pladdurl2 "Canada | Unknown | 500 | Toronto TV ch. 1 | Independant webTV station. Chinese | http://www.torontotv.org/" "mms://74.116.200.251:8090/" +pladdurl2 "Canada | Unknown | 500 | Toronto TV ch. 1 | Independant webTV station. Chinese | http://www.torontotv.org/" "mms://72.58.251.249:8090/" +pladdurl2 "Canada | Unknown | 500 | Toronto TV ch. 2 | Independant webTV station | http://www.torontotv.org/" "mms://74.116.200.251:8095/" +pladdurl2 "Canada | Unknown | 500 | Toronto TV ch. 2 | Independant webTV station | http://www.torontotv.org/" "mms://72.58.251.249:8095/" +pladdurl2 "Canada | Unknown | 500 | Toronto TV ch. 3 | Independant webTV station | http://www.torontotv.org/" "mms://74.116.200.251:8085/" +pladdurl2 "Canada | Unknown | 500 | Toronto TV ch. 3 | Independant webTV station | http://www.torontotv.org/" "mms://72.58.251.249:8085/" +pladdurl2 "Canada | Unknown | 500 | Toronto TV ch. 4 | Independant webTV station | http://www.torontotv.org/" "mms://74.116.200.251:8080/" +pladdurl2 "Canada | Unknown | 500 | Toronto TV ch. 4 | Independant webTV station | http://www.torontotv.org/" "mms://72.58.251.249:8080/" +pladdurl2 "Canada | Community | 500 | Toronto TV ch. 5 | Independant webTV station. Community | http://www.torontotv.org/" "mms://74.116.200.251:8090/" +pladdurl2 "Canada | Community | 500 | Toronto TV ch. 5 | Independant webTV station. Community | http://www.torontotv.org/" "mms://72.58.251.249:8090/" +pladdurl2 "Canada | News | 464 | TSN | Sport TV channel with on demand news | http://www.tsn.ca/audio_video/" "http://media.tsn.ca/av/update_hi.wmv" +pladdurl2 "Canada | Local | 220 | TVC9 | Local TV | http://www.cablevision.qc.ca/fr/cable/tvc9.asp" "mms://24.212.0.123/direct" +pladdurl2 "Chile | Religious | 115 | Canal 13 | TV from the Catholic University | http://www.canal13.cl/" "http://streaming.entelchile.net/canal13" +pladdurl2 "Chile | Religious | 115 | Canal 13 Cable | Pontificia Universidad Catolica de Chile | http://www.canal13.cl/" "http://streaming.entelchile.net/canal13_cable" +pladdurl2 "Chile | News | 193 | CDtv | Politics, Live Sessions, Civics shows, News, Classical | http://www.camara.cl" "mms://200.14.66.100/canal_internet" +pladdurl2 "Chile | Unknown | 145 | Chilevision | Located in Santiago | http://www.chilevision.cl" "mms://201.238.232.211/chv" +pladdurl2 "Chile | Unknown | 145 | Chilevision | Located in Santiago | http://www.chilevision.cl" "mms://200.72.11.194/chv" +pladdurl2 "Chile | General | 108 | Iquique Canal 10 | General TV Station from Rancagua | http://www.iquiquetv.cl/" "mms://200.75.21.216:8080" +pladdurl2 "Chile | Religious | 121 | Nuevo Tiempo | Christian TV station | http://www.nuevotiempo.cl/" "mms://www.novotempo.org.br/TVNuevoTiempo-Vivo" +pladdurl2 "Chile | Local | 1000 | RTC | Local TV from Iquique | http://www.municipioiquique.cl/" "mms://200.73.5.162:8080" +pladdurl2 "Chile | Unknown | 220 | Telecanal | Channel 2 from Santiago de Chile | http://www.telecanal.cl/" "http://wmedia3.ifxnw.cl/telecanal" +pladdurl2 "Chile | Unknown | 220 | Telecanal | Channel 2 from Santiago de Chile | http://www.telecanal.cl/" "http://216.241.2.210/telecanal?.wma" +pladdurl2 "Chile | General | 273 | TV Chile | General TV station | http://www.tvchile.cl/" "mms://wmserver1.tvn.cl/tvchile" +pladdurl2 "Chile | National TV | 225 | TV Chile | National TV station | http://www.tvn.cl/" "rtsp://200.29.25.50/broadcast/vivo.rm" +pladdurl2 "Chile | General | 102 | TV mas canal 22 | General TV station | http://www.mas22.cl/" "http://200.27.90.84" +pladdurl2 "Chile | Unknown | 45 | UCVTV | UCV TV, Live from Valparaiso | http://www.ucvtv.cl/" "http://200.29.92.21/ucvtv" +pladdurl2 "Chile | Education | 560 | Universidad del Mar | University channel located in | http://www.antofagastaudelmar.cl/" "/videos/canal/antofagasta_cultura_multifacetica.wmv" +pladdurl2 "Chile | Education | 560 | Universidad del Mar | University channel located in | http://www.antofagastaudelmar.cl/" "/videos/canal/acceso_coviefi.wmv" +pladdurl2 "Chile | Education | 560 | Universidad del Mar | University channel located in | http://www.antofagastaudelmar.cl/" "http://radio.antofagastaudelmar.cl:8470" +pladdurl2 "Chile | Unknown | 321 | VTV2 | Sometimes online | http://www.vtv2.cl/" "mms://atanua.broadcastchile.cl/canal2" +pladdurl2 "China | Movies | 376 | BJ IPTV | Movie channel | http://www.bjiptv.com" "mms://media.bjiptv.com/present" +pladdurl2 "China | General | 327 | CCQTV | General TV station from Chongqing | http://www.ccqtv.com/" "mms://218.201.44.232/ccqtv" +pladdurl2 "China | Unknown | 282 | CCTV E&F | CCTV E&F Esponal & France Program | http://fr.cctv.com/" "mms://live.cctv.com/live5" +pladdurl2 "China | News | 200 | CCTV XW | News channel | http://english.cctv.com" "mms://live.cctv.com/live3" +pladdurl2 "China | Unknown | 120 | CCTV-1 | CCTV-1 features TV plays, galas and | http://english.cctv.com" "mms://winmedia.cctv.com.cn/live1" +pladdurl2 "China | Unknown | 100 | CCTV-2 | | http://www.cctv.com/2006tv/CCTV_2/index.shtml" "mms://live.cctv.com/live2" +pladdurl2 "China | Unknown | 100 | CCTV-2 | | http://www.cctv.com/2006tv/CCTV_2/index.shtml" "mms://winmedia.cctv.com.cn/live2" +pladdurl2 "China | Unknown | 300 | CCTV-4 | Serves overseas audiences and residents in Hong Kong, Macao | http://www.cctv.com/" "mms://72.166.136.132/cctv4-200" +pladdurl2 "China | Unknown | 300 | CCTV-4 | Serves overseas audiences and residents in Hong Kong, Macao | http://www.cctv.com/" "mms://winmedia.cctv.com.cn/live" +pladdurl2 "China | Unknown | 300 | CCTV-4 | Serves overseas audiences and residents in Hong Kong, Macao | http://www.cctv.com/" "mms://live.cctv.com/live8" +pladdurl2 "China | Unknown | 300 | CCTV-4 | Serves overseas audiences and residents in Hong Kong, Macao | http://www.cctv.com/" "mms://4.19.71.132/cctv4-200" +pladdurl2 "China | Unknown | 300 | CCTV-4 | Serves overseas audiences and residents in Hong Kong, Macao | http://www.cctv.com/" "mms://72.166.136.137/cctv4-300" +pladdurl2 "China | Sports | 300 | CCTV-5 (cctv-5 stream 1) | Chinese sports TV channel | http://www.cctv.com/sports/index.shtml" "mms://219.146.10.132/live15" +pladdurl2 "China | Sports | 300 | CCTV-5 (cctv-5 stream 8) | Chinese sports TV channel | http://www.cctv.com/sports/index.shtml" "http://202.102.188.43/zhtv" +pladdurl2 "China | Sports | 300 | CCTV-5 (cctv-5 stream 2) | Chinese sports TV channel | http://www.cctv.com/sports/index.shtml" "mms://media.dzwww.com:8080/video2" +pladdurl2 "China | Sports | 300 | CCTV-5 (cctv-5 stream 3) | Chinese sports TV channel | http://www.cctv.com/sports/index.shtml" "mms://211.148.164.167/media1" +pladdurl2 "China | Sports | 300 | CCTV-5 (cctv-5 stream 4) | Chinese sports TV channel | http://www.cctv.com/sports/index.shtml" "mms://dx.3gty.com/WWW.3GTY.COM_live2" +pladdurl2 "China | Sports | 300 | CCTV-5 (cctv-5 stream 7) | Chinese sports TV channel | http://www.cctv.com/sports/index.shtml" "mms://live1.cnnb.com.cn/tv" +pladdurl2 "China | Unknown | 300 | CCTV-9 | English-language TV channel | http://www.cctv.com" "mms://72.166.136.132/cctv9-300" +pladdurl2 "China | Unknown | 300 | CCTV-9 | English-language TV channel | http://www.cctv.com" "mms://live.cctv.com/live3" +pladdurl2 "China | Unknown | 300 | CCTV-9 | English-language TV channel | http://www.cctv.com" "mms://winmedia.cctv.com.cn/live3" +pladdurl2 "China | Unknown | 300 | CCTV-9 | English-language TV channel | http://www.cctv.com" "mms://live.cctv.com/live3" +pladdurl2 "China | Unknown | 300 | CCTV-9 | English-language TV channel | http://www.cctv.com" "mms://winmedia.cctv.com.cn/live3" +pladdurl2 "China | Unknown | 300 | CCTV-9 | English-language TV channel | http://www.cctv.com" "mms://winmedia.cctv.com.cn/live3" +pladdurl2 "China | Unknown | 300 | LSTV 1 | From Southwest of China-Lishui City | http://www.inlishui.com/" "mms://202.96.114.251/lstv" +pladdurl2 "China | Music | 350 | MTV China | Music TV | http://www.mtv-china.com/" "mms://59.44.46.38/MTV" +pladdurl2 "China | News | 350 | NJTV 1 | News Channel | http://vod.njbg.com.cn/" "http://live.njbg.com.cn:88/NJTV01" +pladdurl2 "China | Unknown | 350 | NJTV 18 | | http://vod.njbg.com.cn/" "http://live.njbg.com.cn:88/NJTV18" +pladdurl2 "China | Unknown | 350 | NJTV 2 | | http://www.njtv.com.cn" "http://live.njbg.com.cn:88/NJTV02" +pladdurl2 "China | Unknown | 350 | NJTV 3 | | http://www.njbg.com.cn/" "http://live.njbg.com.cn:88/NJTV03" +pladdurl2 "China | Unknown | 350 | NJTV 4 | | http://vod.njbg.com.cn/" "http://live.njbg.com.cn:88/NJTV04" +pladdurl2 "China | Unknown | 350 | NJTV 5 | | http://vod.njbg.com.cn/" "http://live.njbg.com.cn:88/NJTV05" +pladdurl2 "China | Unknown | 150 | NTDTV | New Tang Dynasty | http://www.ntdtv.com/" "mms://online.ntdtvcast.com/Stream-Live" +pladdurl2 "China | Unknown | 141 | NTDTV | New Tang Dynasty Television | http://ntdtv.com/" "mms://live.ntdtvcast.com/Stream-Live" +pladdurl2 "China | Unknown | 225 | RETV | Located in Rugao City Jiangsu | http://www.retv.com.cn/" "rtsp://222.184.240.179:554/encoder/retvonline.rm" +pladdurl2 "China | Unknown | 273 | SDTV | Located in Shandong | http://www.sdtv.com.cn/online/index.htm" "http://live.sdtv.com.cn/sdtv" +pladdurl2 "China | Unknown | 150 | SDTV2 (NKTV) | | http://www.sdtv.com.cn/online/index.htm" "http://live.sdtv.com.cn/nktv" +pladdurl2 "China | Unknown | 150 | SDTV2 (NKTV) | | http://www.sdtv.com.cn/online/index.htm" "mms://211.148.197.132/sztv-5" +pladdurl2 "China | Unknown | 200 | SDTV3 (GGTV) | | http://www.sdtv.com.cn/online/index.htm" "http://live.sdtv.com.cn/ggtv" +pladdurl2 "China | Unknown | 200 | SDTV4 (ZHTV) | | http://www.sdtv.com.cn/online/index.htm" "http://live.sdtv.com.cn/zhtv" +pladdurl2 "China | Unknown | 150 | SZTV | | http://www.sztv.com.cn/" "mms://211.148.197.132/sztv-5" +pladdurl2 "China | Unknown | 300 | XATV-2 | TV from Xian City | http://www.xatvs.com/" "mmst://live2.xatvs.com/Station1" +pladdurl2 "China | Unknown | 300 | XATV-2 | TV from Xian City | http://www.xatvs.com/" "mms://live1.xatvs.com/Station2" +pladdurl2 "Colombia | Unknown | 128 | Canal 41 ABN | Located in Bogota | http://www.avivamiento.com" "mms://markoni.netpatio.com/avivamiento/avivamiento128" +pladdurl2 "Colombia | Education | 225 | Canal Cuatro | University TV | http://www.uaovirtual.edu.co" "rtsp://gauss.cuao.edu.co:1555/encoder/uaolive.rm" +pladdurl2 "Colombia | Religious | 100 | CMB | Christian TV station | http://www.cmb.org.co" "mms://markoni.netpatio.com/cmb/cmb100" +pladdurl2 "Colombia | Religious | 100 | CMB | Christian TV station | http://www.cmb.org.co" "mms://markoni.netpatio.com/cmb/cmb56" +pladdurl2 "Colombia | Local | 170 | Nova Television | Local TV from Bogota | http://www.novatelevision.com/" "mms://enriquer.naaggeas.net/video" +pladdurl2 "Colombia | Local | 100 | Tele Medellin | Local TV station from Medellin | http://www.telemedellin.tv/" "mms://200.12.176.10/CanalMedellin" +pladdurl2 "Colombia | Local | 100 | Tele Medellin | Local TV station from Medellin | http://www.telemedellin.tv/" "mms://200.12.176.10/NotiTVMedellin.asf" +pladdurl2 "Colombia | Local | 100 | Teleantioquia | Local TV station from Medellin (EAFIT | http://envivo.eafit.edu.co/" "mms://200.12.176.10/CanalEInternet" +pladdurl2 "Costa rica | General | 300 | Canal 13 | General TV station | http://www.sinart.go.cr/Canal13.htm" "mms://200.122.135.242/canal13" +pladdurl2 "Costa rica | Religious | 141 | FCN TV | Christian family TV from Heredia | http://www.fcntelevision.tv/" "mms://196.40.46.209/fcntv" +pladdurl2 "Costa rica | Music | 100 | Megahits | Music channel from San Jose | http://www.megahits.tv/" "mms://200.122.132.216/Megahits" +pladdurl2 "Costa rica | Unknown | 150 | Repretel 4 | Cartoons | http://www.repretel.com/" "mms://stream01.cablevirtual.com/wmtencoder/crc04-87ioj87ass" +pladdurl2 "Croatia | General | 250 | HTV 1 | General TV station | http://www.hrt.hr/" "http://www.hrt.hr/streams/htv1.ram" +pladdurl2 "Croatia | General | 45 | HTV Sat | General TV station | http://www.hrt.hr/" "http://www.hrt.hr/streams/satelit3.ram" +pladdurl2 "Croatia | Local | 185 | OTV | Local TV from Zagreb | http://www.online.hr/live/" "mms://213.149.32.155/NocnaMora" +pladdurl2 "Croatia | Unknown | 539 | Smart TV | First Croatian Internet-only TV | http://www.smarttv.com.hr/" "mms://wms.mojsite.com:8001/smartidea" +pladdurl2 "Cuba | Unknown | 140 | Cubavision | From Havana. Politics, economy, science and | http://www.cubavision.cubaweb.cu" "http://cubavision.cubasi.cu/Tvcubana" +pladdurl2 "Cuba | News | 145 | TV Cubana | News station | http://www.cubasi.cu" "http://cubavision.cubasi.cu/Tvcubana" +pladdurl2 "Cyprus | Unknown | 143 | BRT-1 TV | Turkisch oriented | http://www.brtk.net/" "mms://bms.brtk.net/brttv" +pladdurl2 "Cyprus | Unknown | 143 | BRT-2 TV | Turkisch oriented | http://www.brtk.net/" "mms://bms.brtk.net/brt2" +pladdurl2 "Cyprus | Unknown | 220 | RIK Sat | Cyprus Broadcasting Corporation | http://www.cybc.com.cy" "http://www.cybc.com.cy/live/CySat.ram" +pladdurl2 "Czech rep. | Unknown | 400 | 24.cz | TV from the Czech parliament | http://www.24cz-tv.cz" "http://88.103.247.22/24cz-400" +pladdurl2 "Czech rep. | Unknown | 400 | 24.cz | TV from the Czech parliament | http://www.24cz-tv.cz" "http://88.103.247.22/24cz-100" +pladdurl2 "Czech rep. | Web TV | 2000 | HDTV (www.HDTV1.cz - první èeská HD televize) | Experimental high bandwidth Web TV | http://www.hdtv1.cz/" "http://server3.streaming.cesnet.cz/hdtv1?WMThinning=0" +pladdurl2 "Czech rep. | Web TV | 2000 | HDTV | Experimental high bandwidth Web TV | http://www.hdtv1.cz/" "http://server3.streaming.cesnet.cz/hdtv1?WMThinning=0" +pladdurl2 "Czech rep. | Weather | 444 | Meteo TV | Weather TV station (Worldwide forecast) | http://www.meteotv.cz/" "http://netshow.atlas.cz/meteotv" +pladdurl2 "Czech rep. | Music | 787 | OCKO TV | Populair music | http://www.ocko.tv/" "http://stream.idnes.cz/ocko-tv" +pladdurl2 "Czech rep. | Unknown | 1024 | PG 24 | PC games Internet channel | http://www.pg24.cz/" "mms://82.99.173.140/PG24-1024" +pladdurl2 "Czech rep. | Unknown | 1024 | PG 24 | PC games Internet channel | http://www.pg24.cz/" "mms://82.99.173.138/PG24-400" +pladdurl2 "Czech rep. | Unknown | 391 | RT1 | Interactive Information TV from Plzen region | http://www.cestyplzenskehokraje.cz/new/video/" "mms://netshow.play.cz/rt1" +pladdurl2 "Czech rep. | Shopping | 512 | Top TV | Shopping and Lifestyle TV | http://www.top-tv.cz/" "mms://bcaste.livebox.cz/tv_toptv?WMBitRate=512000" +pladdurl2 "Czech rep. | Local | 800 | TVB1 | Local TV from BRNO | http://www.tvb1.cz/" "mms://213.211.43.210:49999" +pladdurl2 "Denmark | Unknown | 141 | Folketinget | Parliament TV | http://www.folketinget.dk/" "http://www.direktetv.ft.dk/dyn/extasx.asp?source=media01.webpartner.dk/folketinget03" +pladdurl2 "Denmark | News | 331 | TV 2 News | News TV station | http://tv2.dk" "http://mms-live.media.tele.dk/tv2live2" +pladdurl2 "Dom. rep. | Local | 100 | Cana TV (---La Romana, Rep. Dom.----) | Local TV from Romana | http://www.cana.tv" "mms://66.90.103.191/canatv" +pladdurl2 "Dom. rep. | Unknown | 282 | Canal 10 Yuna Vision | TV station from Bonao, Province Monsenor | http://www.yunavision.com/" "mms://200.88.126.11:8080/Yuna10" +pladdurl2 "Dom. rep. | Unknown | 145 | Canal 23 | | http://www.megamedios.net/canal23.htm" "mms://208.53.131.17/canal23" +pladdurl2 "Dom. rep. | Unknown | 145 | Canal 23 | | http://www.megamedios.net/canal23.htm" "mms://207.210.233.12/canal23" +pladdurl2 "Dom. rep. | Unknown | 45 | Canal 25 | | http://canal25net.tv/" "mms://insabroadcast.tv/canal25" +pladdurl2 "Dom. rep. | News | 150 | CDN Cadena de Noticias 37 | News TV | http://www.elcaribecdn.com/" "mms://win81il.audiovideoweb.com/il81winlive2024" +pladdurl2 "Dom. rep. | Unknown | 100 | ColorVision | Channel 9 | http://www.colorvision.com.do/" "mms://66.98.64.206:80/cv" +pladdurl2 "Dom. rep. | Unknown | 150 | Megavision | | http://www.comunicacionescam.com/" "mms://208.53.131.17/megavisiontv" +pladdurl2 "Dom. rep. | General | 141 | Microvision Canal 10 | General TV station | http://www.microvisioncanal10.net/" "mms://67.19.103.58/microvision" +pladdurl2 "Dom. rep. | General | 53 | Telecentro | General TV station | http://www.telecentro.com.do/" "mms://wms.mojsite.com:8001/smartidea" +pladdurl2 "Dom. rep. | Unknown | 150 | Telepower | | http://www.comunicacionescam.com/" "mms://208.53.131.17/telepowertv/" +pladdurl2 "Dom. rep. | Unknown | 150 | Telepower | | http://www.comunicacionescam.com/" "mms://207.210.233.12/telepower/" +pladdurl2 "Dom. rep. | Unknown | 45 | Teleradio America | Canal 45 | http://www.teleradioamerica.com/canal45/" "http://196.32.128.6/teleradioamerica?MSWMExt=.asf" +pladdurl2 "Dom. rep. | Unknown | 150 | Teleunion | | http://www.comunicacionescam.com/" "mms://208.53.131.17/teleuniontv" +pladdurl2 "Dom. rep. | General | 41 | TRA 45 | General TV station located in Santo Domingo | http://www.teleradioamerica.com/" "mms://196.32.128.6/teleradioamerica" +pladdurl2 "Dom. rep. | Local | 273 | TV Plata (---Puerto Plata---) | Local TV from Puerto Plata | http://tvplata.com/" "mms://208.53.131.17/tvplata" +pladdurl2 "Dom. rep. | General | 150 | Vega TV | General TV station from Santo Domingo | http://www.vegateve.com/" "mms://208.53.131.17/vegatv" +pladdurl2 "Ecuador | Unknown | 45 | Cable Deportes | | http://www.ecuadormedia.com/html/tv/cabledeportes/programacion.html" "pnm://realserver.uio.satnet.net/live/cabledep.rm" +pladdurl2 "Ecuador | News | 45 | Cable Noticias | News station | http://www.ecuadormedia.com/html/tv/cablenoticias/programacion.html" "pnm://realserver.uio.satnet.net/live/cablenot.rm" +pladdurl2 "Ecuador | Local | 83 | ETV Telerama | Local TV | http://www.etvtelerama.com/" "http://www.ecuadormedia.com/tv/telerama/rpm/vivo.rpm" +pladdurl2 "Ecuador | Unknown | 50 | TC Television | | http://www.tctelevision.com/" "pnm://realserver.uio.satnet.net/live/tctv.rm" +pladdurl2 "Ecuador | Unknown | 45 | TCTV | | http://www.ecuadormedia.com/html/tv/tctv/programacion.html" "pnm://realserver.uio.satnet.net/live/tctv.rm" +pladdurl2 "Ecuador | Unknown | 50 | Teleamazonas | | http://www.teleamazonas.com/" "http://www.teleamazonas.com/noticiero.ram" +pladdurl2 "Egypt | Religious | 66 | Aghapy | Christian TV | http://www.aghapy.tv/aghapy/index.php?newlang=english" "mms://66.198.38.144/aghapy" +pladdurl2 "Egypt | News | 88 | Nile News | Recorded news | http://www.nilenews.tv" "http://www.nilenews.tv/Files/AdminFTP/Video/video2.wmv" +pladdurl2 "Egypt | General | 100 | Nile TV | Egypt State Information Service | http://www.sis.gov.eg/" "http://live.sis.gov.eg/tv" +pladdurl2 "Egypt | Religious | 100 | Sat 7 | Satellite channel for the Christians of the Middle East and | http://www.sat7.com/" "http://eu02.egihosting.com/989626" +pladdurl2 "El salvador | General | 100 | Agape TV | General TV station | http://www.agapetv8.com/" "mms://200.85.10.136/agapetv8" +pladdurl2 "El salvador | General | 100 | Canal 12 | General TV station | http://www.canal12.com.sv/" "mms://201.247.107.229/canal12" +pladdurl2 "El salvador | General | 100 | Canal 12 | General TV station | http://www.canal12.com.sv/" "mms://201.247.107.229:9000/canal12.wmv" +pladdurl2 "El salvador | Religious | 273 | Canal 17 | Christian TV station | http://www.tabernaculo.org/" "mms://www.siscompnetwork.com/tabernaculo1" +pladdurl2 "El salvador | General | 273 | Canal 21 | General TV station | http://www.canal21tv.com.sv/" "mms://200.31.161.2:8080" +pladdurl2 "El salvador | Religious | 153 | El Camino | Christian channel | http://www.delcamino.org.sv/" "mms://www.siscompnetwork.com/ELCAMINOTV" +pladdurl2 "Estonia | Religious | 245 | Life TV | Christian channel from Tallinn | http://www.lifetv.ee/" "mms://videoserver.tilde.ee/lifetv3" +pladdurl2 "Estonia | Unknown | 240 | Riigikogu | The parliament of Estonia | http://www.riigikogu.ee/" "mms://media.riigikogu.ee/otse" +pladdurl2 "Estonia | Unknown | 45 | Riigikogu | Live webcasting of Parliament. Not always online - Check | http://www.riigikogu.ee/" "http://www.riigikogu.ee/live/istung2.ram" +pladdurl2 "Finland | Unknown | 350 | YLE news | Finnish Broadcasting Company (YLE) | http://www.yle.fi/yle24/videosali/" "http://ra.yle.fi/ramgen/yle24/video/uusin_rk.rm" +pladdurl2 "France | Satellite TV | 341 | Art Channel | Art Channel is much more than a satellite tv program | http://www.artchannel.info/" "mms://streaming.i2i-technology.com/artChannelBB" +pladdurl2 "France | Unknown | 255 | Arte | German/French culture channel | http://www.arte.tv/" "http://stream.arte-tv.com/ramgen/permanent/c7/info/INFO_FR.rmvb" +pladdurl2 "France | Unknown | 272 | Astro Center | Astrology channel | http://www.astrocenter.fr/" "http://www.viewontv.com/astrocenter/live.wmx" +pladdurl2 "France | Local | 400 | ASTV | Local TV from Grande-Synthe | http://www.telelocaleastv.fr/" "mms://213.251.186.202:81/ASTV" +pladdurl2 "France | News | 450 | BFM TV | News and Entertainment | http://www.bfmtv.fr/" "mms://vipmms9.yacast.net/bfm_bfmtv" +pladdurl2 "France | Unknown | 500 | Boardriders TV | TV station dedicated to boardriding | http://www.boardriderstv.com/" "mms://quik4.impek.tv/brtv" +pladdurl2 "France | Unknown | 500 | Boardriders TV | TV station dedicated to boardriding | http://www.boardriderstv.com/" "http://quik4.impek.tv/brtv" +pladdurl2 "France | Local | 289 | C9 Television | Local channel from Lille | http://www.c9television.fr/" "mms://live.c9television.fr/Live.c9television.fr" +pladdurl2 "France | Local | 398 | Calais TV | Local TV from Calais | http://www.calaistv.fr" "mms://91.121.2.60/direct" +pladdurl2 "France | Music | 258 | Canal TV | Pop music | http://www.canaltv.org/" "http://stream.canaltv.org:11001/;stream.nsv" +pladdurl2 "France | Music | 350 | Canalmoza | African music | http://www.canalmoza.info/" "http://www.impek.tv/go/soul/wm" +pladdurl2 "France | Local | 44 | Clermont1ere | Local television from Clermont Ferrand | http://www.clermont1ere.com/" "mms://a993.l907523003.c9075.e.lm.akamaistream.net/D/993/9075/v0001/reflector:23003" +pladdurl2 "France | Music | 512 | Cybertika Tropical | Music TV (Reggae, Dancehall, Zouk, | http://www.cybertika.com/" "mms://stream1.cybertika.com/tropical" +pladdurl2 "France | Music | 328 | Cybertika Urban | Music TV (Rap, R&B, Hip-Hop, Soul, | http://www.cybertika.com" "mms://stream2.cybertika.com/urban" +pladdurl2 "France | Unknown | 100 | Demain | TV focusing on employment, free enterprise, business and | http://www.demain.fr/" "http://80.74.67.153/ramgen/broadcast/demain.rm" +pladdurl2 "France | General | 210 | Direct 8 | General TV station from the group Bollere | http://www.direct8.fr/live.html" "mms://212.3.240.67/ffnet/212.3.240.70_0.0.115.1" +pladdurl2 "France | Movies | 190 | Disneyweb | Movie channel | http://disneyweb.fr/" "http://62.193.225.66:25252;stream.nsv" +pladdurl2 "France | Local | 259 | Domino TV | Local TV from Rouen | http://dominotv.fr" "mms://stream1.webaxys.net/dominotv" +pladdurl2 "France | Unknown | 382 | Eurosport | Not alway's online. Many recorded items available on | http://www.eurosport.fr/football/mc_vid24226.shtml" "http://a1729.l2168647534.c21686.g.lm.akamaistream.net/D/1729/21686/v0001/reflector:35667" +pladdurl2 "France | Music | 350 | Fazz Music | Jazz music station | http://www.fazz-music.com/" "http://213.186.41.74:8500;stream.nsv" +pladdurl2 "France | News | 400 | France 24 (En) | International news channel | http://www.france24.com/" "mms://live.france24.com/france24_en.wsx" +pladdurl2 "France | News | 400 | France 24 (Fr) | International news channel | http://www.france24.com/" "mms://live.france24.com/france24_fr.wsx" +pladdurl2 "France | News | 100 | Itele | News station | http://www.itele.fr/" "mms://vipmms.itele.fr/cpi_itele" +pladdurl2 "France | Unknown | 380 | Jet TV | Entertainment channel | http://www.jettv.fr" "mms://tf1.yacast.net/tf1_live13" +pladdurl2 "France | News | 341 | LCI | Recorded news | http://tf1.lci.fr/" "http://viptf1.yacast.net/tf1webcast/jtlci/JTLCI.wmv" +pladdurl2 "France | News | 580 | LCI | News TV station (not always live) | http://tf1.lci.fr/" "mms://tf1.yacast.net/tf1_live22" +pladdurl2 "France | News | 580 | LCI | News TV station (not always live) | http://tf1.lci.fr/" "mms://viptf1.yacast.net/tf1webcast/jtlci/JTLCI.wmv" +pladdurl2 "France | National TV | 150 | LCP | Assemblee National. Not always online | http://www.lcpan.fr/" "http://www.lcpan.fr/data/lcp.wvx" +pladdurl2 "France | Music | 350 | MBOATV | Web TV channel broadcasting Live African Music | http://www.mboatv.com/" "mms://213.186.37.85/mboatv" +pladdurl2 "France | Gaming | 850 | Netgaming TV | Gaming TV | http://www.netgaming.tv/" "mms://85.236.101.101/netgamingtv" +pladdurl2 "France | Regional TV | 294 | Normandie TV | Regional TV | http://www.normandie-tv.fr/" "mms://a1251.l252123153.c2521.e.lm.akamaistream.net/D/1251/2521/666/reflector:23153" +pladdurl2 "France | Regional TV | 294 | Normandie TV | Regional TV | http://www.normandie-tv.fr/" "mms://a1251.l252123153.c2521.e.lm.akamaistream.net/D/1251/2521/666/reflector:23153" +pladdurl2 "France | Unknown | 700 | OuepaTV | Dance and disco | http://www.ouepa.com/" "http://213.186.37.177:8020/;stream.nsv" +pladdurl2 "France | Music | 225 | Paradise FM | Music TV | http://paradisefm.net" "mms://paradisefm.net:75/tvplaylist" +pladdurl2 "France | Music | 225 | Paradise FM | Music TV | http://paradisefm.net" "mms://paradisefm.net:75/tvplaylist" +pladdurl2 "France | Local | 360 | Paris Cap | Local TV from Paris | http://www.pariscap.com/" "mms://a1729.l2168647534.c21686.g.lm.akamaistream.net/D/1729/21686/v0001/reflector:55505" +pladdurl2 "France | Local | 565 | Perpignan TV | Local TV from Perpignan | http://www.perpignantv.com/" "mms://stream1.max-tv.be/perpignan" +pladdurl2 "France | Local | 565 | Perpignan TV | Local TV from Perpignan | http://www.perpignantv.com/" "mms://88.191.39.73/perpignantvstream" +pladdurl2 "France | News | 150 | Senat | News Station | http://www.senat.fr" "mms://a1251.l1031033396.c10310.e.lm.akamaistream.net/D/1251/10310/666/reflector:33396" +pladdurl2 "France | News | 150 | Senat | News Station | http://www.senat.fr" "mms://a1251.l1031033396.c10310.e.lm.akamaistream.net/D/1251/10310/666/reflector:33396" +pladdurl2 "France | Unknown | 512 | Sunvibz TV | Raggae-Dancehall, Hip-hop Rn'B channel | http://www.sunvibz.tv/" "http://sunvibz.impek.tv/sunvibz" +pladdurl2 "France | Local | 307 | Tele Alsace | Local TV from Alsace | http://www.telealsace.com/" "mms://a1991.l2229962829.c22299.n.lm.akamaistream.net/D/1991/22299/v0001/reflector:36557" +pladdurl2 "France | Local | 341 | TelEssonne | Local TV from Essonne | http://www.telessonne.fr" "mms://80.245.36.221/live/" +pladdurl2 "France | Local | 250 | TLM | Local channel from Lyon | http://www.tlm.fr/" "mms://213.251.181.150/tlm" +pladdurl2 "France | Local | 250 | TLM | Local channel from Lyon | http://www.tlm.fr/" "mms://69.41.170.46/tlm" +pladdurl2 "France | Local | 60 | TV 8 Mont Blanc | Local TV from the Mont Blanc region | http://tv8montblanc.com" "mms://88.191.38.160:1440/" +pladdurl2 "France | Local | 400 | TV Grenoble | Local TV from Grenoble | http://www.telegrenoble.fr/" "http://movix.sdv.fr:8080/teleg1.asf" +pladdurl2 "France | Music | 200 | Zen TV | Music TV | http://www.zentv.org/" "http://62.193.229.200:8000/;stream.nsv" +pladdurl2 "Georgia | Public TV | 331 | GPB | Public broadcasting | http://www.gpb.ge/" "mms://www.gpb.ge:8080/" +pladdurl2 "Georgia | Unknown | 62 | Rustavi 2 | Independent georgian Broadcasting Company | http://www.rustavi2.com.ge/" "mms://rustavi.avstream.com/rustavilb" +pladdurl2 "Germany | General | 441 | 3Sat | General TV station | http://www.3sat.de/" "mms://ms.mdcs.dtag.de/encoder.zdf.3sat_h" +pladdurl2 "Germany | Sports | 386 | AQUA TV | The watersports magazine | http://www.aqua-tv.de/" "http://www.aqua-tv.de/content/sendung/sendung.wmv" +pladdurl2 "Germany | Unknown | 260 | Arte | German/French culture channel | http://www.arte.tv/de/70.html" "http://stream.arte-tv.com/ramgen/permanent/c7/info/INFO_DE.rmvb" +pladdurl2 "Germany | Unknown | 300 | Astro TV | Astrology | http://www.questico.com/users/astrotv/" "mms://wm.broadcast.tneg.de/AstroTV" +pladdurl2 "Germany | Unknown | 700 | Bahn TV (Bahn TV Live) | Channel dedicated to the traffic | http://www.bahntv-online.de/" "mms://atkon-atkbtvolive-wmv-high.wm.llnwd.net/atkon_atkbtvolive_wmv_high" +pladdurl2 "Germany | Unknown | 700 | Bahn TV | Channel dedicated to the traffic | http://www.bahntv-online.de/" "http://www.bahntv-online.de/btvo/nocontentasx/llnw_btvo_live_high.low" +pladdurl2 "Germany | Shopping | 300 | Bestseller TV | Offers a broad range of products | http://www.bestsellertv.de/" "mms://stream.bestsellertv.satelli-line.de/bestsellertv" +pladdurl2 "Germany | Unknown | 280 | Buergerschaft HH | Hamburger Parliament (sometimes | http://www.hamburgische-buergerschaft.de/cms_de.php?templ=akt_livestream.tpl&sub1=62&sub2=402&cont=1107" "mms://wm.work.de/buehh2" +pladdurl2 "Germany | Religious | 350 | CFC | Christian TV Chiemgau | http://www.cfcev.de/" "http://88.84.128.51:8000/listen.pls" +pladdurl2 "Germany | Unknown | 500 | Del TV | Ice hockey channel | http://www.deltv.org/" "mms://213.155.85.154/del-tv_dsl_broad" +pladdurl2 "Germany | Music | 400 | Deluxe Music TV | Music TV channel without moderation | http://www.deluxemusic.tv/" "http://evisco.net/deluxemusictv" +pladdurl2 "Germany | Unknown | 500 | Der Schmuckkanal | Offers jewellery | http://www.derschmuckkanal.de" "mms://wm.broadcast.tneg.de/derschmuckkanal" +pladdurl2 "Germany | News | 250 | DW-TV | Worldnews channel / Deutsche Welle (not available in the | http://dw-world.de" "mms://a1921.l1434039341.c14340.g.lm.akamaistream.net/D/1921/14340/v0001/reflector:39341" +pladdurl2 "Germany | News | 256 | DW-TV | Worldnews channel / Deutsche Welle (not available in the | http://dw-world.de" "http://195.14.212.230/stream.jsp?format=real&bandbreite=gross&usa=rtsp://a159.v143422.c14342.g.vr.akamaistream.net/ondemand/7/159/14342/v0001/ondemand.dw-world.de/dwtv_video/geol/usa-gross.rm&buli=http://www.dw-world.de/popups/popup_single_mediaplayer_buli_eng" +pladdurl2 "Germany | Local | 270 | Eberswalde | Local TV | http://www.eberswalde.tv/" "mms://80.78.160.41:1031/" +pladdurl2 "Germany | Unknown | 328 | Eins Extra | Live from Mon.-Fri. / 14:00 - 19:00 H (German | http://www.ard-digital.de/" "http://www.tagesschau.de/styles/container/video/style_video_real_live_cover2/0,2803,REShigh,00.ram" +pladdurl2 "Germany | Regional TV | 320 | Elbekanal | Regional TV from Schönebeck | http://www.elbekanal.de/" "http://www.elbekanal.de/ek/sendung.wmv" +pladdurl2 "Germany | Regional TV | 500 | Euro 3 | Regional TV from the Bodensee | http://euro-3.de" "mms://87.106.17.25/EURO 3 Livestream Region Ost" +pladdurl2 "Germany | Unknown | 382 | Eurosport | Recorded streams and live scores | http://www.eurosport.de/eurosportspezial/mc_vid24228.shtml" "mms://a1729.l2168647534.c21686.g.lm.akamaistream.net/D/1729/21687/v0001/reflector:48574" +pladdurl2 "Germany | Local | 330 | Flott-TV | Local TV from Guenzburg | http://www.flott-tv.de/" "http://www.flott-tv.de/reginalfernsehen/FLOTT_DSL.wmv" +pladdurl2 "Germany | Unknown | 400 | Fresh 4U | Astrology | http://www.fresh4u.de" "mms://193.110.68.5/pt" +pladdurl2 "Germany | Shopping | 300 | Gems TV | Interactive shopping TV | http://www.bietbox.de/" "mms://bietbox.herbst.de:1080/bbstream" +pladdurl2 "Germany | Music | 690 | GIGA TV | Computer / Music station | http://giga.de/" "mms://giga.streamed.by.ngz-server.de.esl-tv.net/GIGA" +pladdurl2 "Germany | News | 290 | Hamburg 1 | Recorded news | http://www.hamburg1.de/" "http://boss.streamos.com/wmedia/sportal/hh1/hh24_news.wvx" +pladdurl2 "Germany | General | 45 | Landtag MV | The State-Parliament of Mecklenburg - Vorpommern (not | http://www.landtag-mv.de" "rtsp://video.landtag-mv.de:554/encoder/landtag.rm" +pladdurl2 "Germany | Shopping | 755 | Lastminute TV | Commercial travel channel | http://www.lastminute.tv/" "mms://live.wm.t-bn.de/live/tsi_mms/anixe_tv_1m" +pladdurl2 "Germany | Local | 700 | NOA4 | Norderstedt on air 4. Local TV station | http://www.noa4.tv/" "mms://wt-wm1.wtnet.de/noa4-stream" +pladdurl2 "Germany | Unknown | 880 | NRW TV | TV from Dortmund for Nordrhein-Westfalen | http://www.nrw.tv" "mms://wm.broadcast.tneg.de/nrw_High" +pladdurl2 "Germany | Unknown | 880 | NRW TV | TV from Dortmund for Nordrhein-Westfalen | http://www.nrw.tv" "mms://wm.broadcast.tneg.de/nrw.tv" +pladdurl2 "Germany | News | 330 | n-tv | News TV | http://www.n-tv.de/" "http://stream.n-tv.de/ntvlive" +pladdurl2 "Germany | Local | 214 | Oberlausitz TV | Local TV from Oberlausitz (Ostsachsen): | http://www.oberlausitz.tv/" "mms://85.214.50.147/tv" +pladdurl2 "Germany | News | 1100 | PETN Citychannel | Citynews from Leipzig | http://www.petn.tv/" "http://80.237.157.98/citychannel" +pladdurl2 "Germany | Movies | 1000 | PETN Moviechannel | Movie channel | http://www.petn.tv/" "mms://80.237.157.98/moviechannel" +pladdurl2 "Germany | Music | 1100 | PETN Musicchannel | Music channel | http://www.petn.tv/" "http://80.237.157.98/musicchannel" +pladdurl2 "Germany | Sports | 1100 | PETN Sportschannel | Sports TV | http://www.petn.tv/" "http://80.237.157.98/sportschannel" +pladdurl2 "Germany | News | 452 | Phoenix | News from Bonn, documentaries, debates. Transmission | http://www.phoenix.de" "http://rstreaming.zdf.de/encoder/phoenix.ram" +pladdurl2 "Germany | Local | 240 | RFH | Local TV from Halberstadt | http://www.rfh-tv.de/" "mms://87.106.49.185/RFH Stream" +pladdurl2 "Germany | Shopping | 500 | RTL Shop | Offers a broad range of products | http://www.rtlshop.de/" "mms://streaming.rtl.de/rtlshop" +pladdurl2 "Germany | Unknown | 273 | Ruparty | TV for russian german people | http://www.ruparty.de/" "mms://85.214.21.233/potok" +pladdurl2 "Germany | Sports | 500 | Sportswin | Online sportsbetting | https://www.sportswin.tv/" "mms://wm.broadcast.tneg.de/TelespassDSL" +pladdurl2 "Germany | Sports | 450 | Sportswin TV | Horseracing TV | http://www.raze.tv" "mms://wm.broadcast.tneg.de/TelespassDSL" +pladdurl2 "Germany | Music | 1100 | Streetclip TV | Music and culture channel | http://www.streetclip.tv/" "mms://streetclip.tv:1234" +pladdurl2 "Germany | General | 250 | Thüringer Landtag | Thüringer federal state parliament - | http://www.thueringen.de/tlt/" "mms://streaming.fem.tu-ilmenau.de/landtag_dsl" +pladdurl2 "Germany | Unknown | 500 | Traumpartner TV | Internet dating | http://www.traumpartner.tv/" "mms://streaming.rtl.de/traumpartnertv" +pladdurl2 "Germany | Music | 380 | Tunespoon | Music Videos | http://www.tunespoon.tv/" "mms://141.28.122.100/TuneSpoon" +pladdurl2 "Germany | Local | 500 | TV Berlin | Local TV from Berlin | http://www.tvb.de/" "http://boss.streamos.com/wmedia/sportal/tvb/tvb_aktuell.wvx" +pladdurl2 "Germany | Local | 900 | TV Halle | Local TV from Halle | http://www.tvhalle.de" "mms://217.69.225.138:1113" +pladdurl2 "Germany | Regional TV | 300 | TV Mittelrhein | Regional TV | http://www.tv-mittelrhein.com/" "mms://195.137.213.48:81/TVMITTELRHEIN" +pladdurl2 "Germany | Regional TV | 555 | TV Sauerland (Wochenrückblick KW 04 - 2007) | Regional TV from Sauerland | http://www.sauerland-tv.de/" "http://mediatv.webserver-nrw.de/streaming/2007/wrb-kw04-dsl.wmv" +pladdurl2 "Germany | Regional TV | 555 | TV Sauerland (Wochenrückblick KW 04 - 2007) | Regional TV from Sauerland | http://www.sauerland-tv.de/" "http://mediatv.webserver-colonia.de/streaming/2007/wrb-kw04-dsl.wmv" +pladdurl2 "Germany | Regional TV | 555 | TV Sauerland (Wochenrückblick KW 04 - 2007) | Regional TV from Sauerland | http://www.sauerland-tv.de/" "http://mediatv.fileserver-nrw.de/streaming/2007/wrb-kw04-dsl.wmv" +pladdurl2 "Germany | Regional TV | 555 | TV Sauerland (Oberberg.TV - Heute vor einem Jahr) | Regional TV from Sauerland | http://www.sauerland-tv.de/" "http://mediatv.webserver-nrw.de/streaming/ads/otv-vor1jahr1-dsl.wmv" +pladdurl2 "Germany | Regional TV | 555 | TV Sauerland (Oberberg.TV - Heute vor einem Jahr) | Regional TV from Sauerland | http://www.sauerland-tv.de/" "http://mediatv.webserver-colonia.de/streaming/ads/otv-vor1jahr1-dsl.wmv" +pladdurl2 "Germany | Regional TV | 555 | TV Sauerland (Oberberg.TV - Heute vor einem Jahr) | Regional TV from Sauerland | http://www.sauerland-tv.de/" "http://mediatv.fileserver-nrw.de/streaming/ads/otv-vor1jahr1-dsl.wmv" +pladdurl2 "Germany | Regional TV | 555 | TV Sauerland (Wochenrückblick KW 04 - 2006) | Regional TV from Sauerland | http://www.sauerland-tv.de/" "http://mediatv.webserver-colonia.de/streaming/2006/allabout-kw04-dsl.wmv" +pladdurl2 "Germany | Regional TV | 555 | TV Sauerland (Wochenrückblick KW 04 - 2006) | Regional TV from Sauerland | http://www.sauerland-tv.de/" "http://mediatv.webserver-nrw.de/streaming/2006/allabout-kw04-dsl.wmv" +pladdurl2 "Germany | Regional TV | 555 | TV Sauerland (Wochenrückblick KW 04 - 2006) | Regional TV from Sauerland | http://www.sauerland-tv.de/" "http://mediatv.fileserver-nrw.de/streaming/2006/allabout-kw04-dsl.wmv" +pladdurl2 "Germany | Regional TV | 555 | TV Sauerland (Die Eventbörse in Neuss) | Regional TV from Sauerland | http://www.sauerland-tv.de/" "http://mediatv.webserver-colonia.de/streaming/2006/allabout-eventboerse-neuss-dsl.wmv" +pladdurl2 "Germany | Regional TV | 555 | TV Sauerland (Die Eventbörse in Neuss) | Regional TV from Sauerland | http://www.sauerland-tv.de/" "http://mediatv.webserver-nrw.de/streaming/2006/allabout-eventboerse-neuss-dsl.wmv" +pladdurl2 "Germany | Regional TV | 555 | TV Sauerland (Die Eventbörse in Neuss) | Regional TV from Sauerland | http://www.sauerland-tv.de/" "http://mediatv.fileserver-nrw.de/streaming/2006/allabout-eventboerse-neuss-dsl.wmv" +pladdurl2 "Germany | Regional TV | 555 | TV Sauerland (Ausbildung Maschinen- und Anlagenführer/in) | Regional TV from Sauerland | http://www.sauerland-tv.de/" "http://mediatv.webserver-colonia.de/streaming/2005/genium-norwe-dsl.wmv" +pladdurl2 "Germany | Regional TV | 555 | TV Sauerland (Ausbildung Maschinen- und Anlagenführer/in) | Regional TV from Sauerland | http://www.sauerland-tv.de/" "http://mediatv.webserver-nrw.de/streaming/2005/genium-norwe-dsl.wmv" +pladdurl2 "Germany | Regional TV | 555 | TV Sauerland (Ausbildung Maschinen- und Anlagenführer/in) | Regional TV from Sauerland | http://www.sauerland-tv.de/" "http://mediatv.fileserver-nrw.de/streaming/2005/genium-norwe-dsl.wmv" +pladdurl2 "Germany | Regional TV | 555 | TV Sauerland (Tierische Sendung über die Tier 2006 in Siegen) | Regional TV from Sauerland | http://www.sauerland-tv.de/" "http://mediatv.webserver-colonia.de/streaming/2006/allabout-tiermesse06-dsl.wmv" +pladdurl2 "Germany | Regional TV | 555 | TV Sauerland (Tierische Sendung über die Tier 2006 in Siegen) | Regional TV from Sauerland | http://www.sauerland-tv.de/" "http://mediatv.webserver-nrw.de/streaming/2006/allabout-tiermesse06-dsl.wmv" +pladdurl2 "Germany | Regional TV | 555 | TV Sauerland (Tierische Sendung über die Tier 2006 in Siegen) | Regional TV from Sauerland | http://www.sauerland-tv.de/" "http://mediatv.fileserver-nrw.de/streaming/2006/allabout-tiermesse06-dsl.wmv" +pladdurl2 "Germany | Regional TV | 555 | TV Sauerland (Eventkino Lichtwerk Schmallenberg) | Regional TV from Sauerland | http://www.sauerland-tv.de/" "http://mediatv.webserver-nrw.de/streaming/2006/allabout-lichtwerk-dsl.wmv" +pladdurl2 "Germany | Regional TV | 555 | TV Sauerland (Eventkino Lichtwerk Schmallenberg) | Regional TV from Sauerland | http://www.sauerland-tv.de/" "http://mediatv.webserver-colonia.de/streaming/2006/allabout-lichtwerk-dsl.wmv" +pladdurl2 "Germany | Regional TV | 555 | TV Sauerland (Eventkino Lichtwerk Schmallenberg) | Regional TV from Sauerland | http://www.sauerland-tv.de/" "http://mediatv.fileserver-nrw.de/streaming/2006/allabout-lichtwerk-dsl.wmv" +pladdurl2 "Germany | Regional TV | 555 | TV Sauerland (Wochenrückblick KW 04 - 2007) | Regional TV from Sauerland | http://www.sauerland-tv.de/" "http://mediatv.webserver-nrw.de/streaming/2007/wrb-kw04-dsl.wmv" +pladdurl2 "Germany | Regional TV | 555 | TV Sauerland (Wochenrückblick KW 04 - 2007) | Regional TV from Sauerland | http://www.sauerland-tv.de/" "http://mediatv.webserver-colonia.de/streaming/2007/wrb-kw04-dsl.wmv" +pladdurl2 "Germany | Regional TV | 555 | TV Sauerland (Wochenrückblick KW 04 - 2007) | Regional TV from Sauerland | http://www.sauerland-tv.de/" "http://mediatv.fileserver-nrw.de/streaming/2007/wrb-kw04-dsl.wmv" +pladdurl2 "Germany | Regional TV | 555 | TV Sauerland (Oberberg.TV - Heute vor einem Jahr) | Regional TV from Sauerland | http://www.sauerland-tv.de/" "http://mediatv.webserver-nrw.de/streaming/ads/otv-vor1jahr1-dsl.wmv" +pladdurl2 "Germany | Regional TV | 555 | TV Sauerland (Oberberg.TV - Heute vor einem Jahr) | Regional TV from Sauerland | http://www.sauerland-tv.de/" "http://mediatv.webserver-colonia.de/streaming/ads/otv-vor1jahr1-dsl.wmv" +pladdurl2 "Germany | Regional TV | 555 | TV Sauerland (Oberberg.TV - Heute vor einem Jahr) | Regional TV from Sauerland | http://www.sauerland-tv.de/" "http://mediatv.fileserver-nrw.de/streaming/ads/otv-vor1jahr1-dsl.wmv" +pladdurl2 "Germany | Regional TV | 555 | TV Sauerland (Wochenrückblick KW 04 - 2006) | Regional TV from Sauerland | http://www.sauerland-tv.de/" "http://mediatv.webserver-colonia.de/streaming/2006/allabout-kw04-dsl.wmv" +pladdurl2 "Germany | Regional TV | 555 | TV Sauerland (Wochenrückblick KW 04 - 2006) | Regional TV from Sauerland | http://www.sauerland-tv.de/" "http://mediatv.webserver-nrw.de/streaming/2006/allabout-kw04-dsl.wmv" +pladdurl2 "Germany | Regional TV | 555 | TV Sauerland (Wochenrückblick KW 04 - 2006) | Regional TV from Sauerland | http://www.sauerland-tv.de/" "http://mediatv.fileserver-nrw.de/streaming/2006/allabout-kw04-dsl.wmv" +pladdurl2 "Germany | Regional TV | 555 | TV Sauerland (Sport - Internationales Damenskispringen Meinerzhagen) | Regional TV from Sauerland | http://www.sauerland-tv.de/" "http://mediatv.webserver-colonia.de/streaming/2005/allabout-sport-damenskispringen-dsl.wmv" +pladdurl2 "Germany | Regional TV | 555 | TV Sauerland (Sport - Internationales Damenskispringen Meinerzhagen) | Regional TV from Sauerland | http://www.sauerland-tv.de/" "http://mediatv.webserver-nrw.de/streaming/2005/allabout-sport-damenskispringen-dsl.wmv" +pladdurl2 "Germany | Regional TV | 555 | TV Sauerland (Sport - Internationales Damenskispringen Meinerzhagen) | Regional TV from Sauerland | http://www.sauerland-tv.de/" "http://mediatv.fileserver-nrw.de/streaming/2005/allabout-sport-damenskispringen-dsl.wmv" +pladdurl2 "Germany | Regional TV | 555 | TV Sauerland (Pow(d)er Week 2005) | Regional TV from Sauerland | http://www.sauerland-tv.de/" "http://mediatv.webserver-colonia.de/streaming/2005/experience-powderweek2005-dsl.wmv" +pladdurl2 "Germany | Regional TV | 555 | TV Sauerland (Pow(d)er Week 2005) | Regional TV from Sauerland | http://www.sauerland-tv.de/" "http://mediatv.webserver-nrw.de/streaming/2005/experience-powderweek2005-dsl.wmv" +pladdurl2 "Germany | Regional TV | 555 | TV Sauerland (Pow(d)er Week 2005) | Regional TV from Sauerland | http://www.sauerland-tv.de/" "http://mediatv.fileserver-nrw.de/streaming/2005/experience-powderweek2005-dsl.wmv" +pladdurl2 "Germany | Regional TV | 555 | TV Sauerland (Tropical Banana Festival 30.07.2005) | Regional TV from Sauerland | http://www.sauerland-tv.de/" "http://mediatv.webserver-colonia.de/streaming/2005/nachtsicht-tropicalbanana-dsl.wmv" +pladdurl2 "Germany | Regional TV | 555 | TV Sauerland (Tropical Banana Festival 30.07.2005) | Regional TV from Sauerland | http://www.sauerland-tv.de/" "http://mediatv.webserver-nrw.de/streaming/2005/nachtsicht-tropicalbanana-dsl.wmv" +pladdurl2 "Germany | Regional TV | 555 | TV Sauerland (Tropical Banana Festival 30.07.2005) | Regional TV from Sauerland | http://www.sauerland-tv.de/" "http://mediatv.fileserver-nrw.de/streaming/2005/nachtsicht-tropicalbanana-dsl.wmv" +pladdurl2 "Germany | Regional TV | 555 | TV Sauerland | Regional TV from Sauerland | http://www.sauerland-tv.de/" "http://mediatv.webserver-colonia.de/streaming/2005/nachtsicht-jazz-luedenscheid-dsl.wmv" +pladdurl2 "Germany | Regional TV | 555 | TV Sauerland | Regional TV from Sauerland | http://www.sauerland-tv.de/" "http://mediatv.webserver-nrw.de/streaming/2005/nachtsicht-jazz-luedenscheid-dsl.wmv" +pladdurl2 "Germany | Regional TV | 555 | TV Sauerland | Regional TV from Sauerland | http://www.sauerland-tv.de/" "http://mediatv.fileserver-nrw.de/streaming/2005/nachtsicht-jazz-luedenscheid-dsl.wmv" +pladdurl2 "Germany | Regional TV | 555 | TV Sauerland (Singlenacht in Lüdenscheid 09.04.2005) | Regional TV from Sauerland | http://www.sauerland-tv.de/" "http://mediatv.webserver-colonia.de/streaming/2005/nachtsicht-singlenacht-luedenscheid-dsl.wmv" +pladdurl2 "Germany | Regional TV | 555 | TV Sauerland (Singlenacht in Lüdenscheid 09.04.2005) | Regional TV from Sauerland | http://www.sauerland-tv.de/" "http://mediatv.webserver-nrw.de/streaming/2005/nachtsicht-singlenacht-luedenscheid-dsl.wmv" +pladdurl2 "Germany | Regional TV | 555 | TV Sauerland (Singlenacht in Lüdenscheid 09.04.2005) | Regional TV from Sauerland | http://www.sauerland-tv.de/" "http://mediatv.fileserver-nrw.de/streaming/2005/nachtsicht-singlenacht-luedenscheid-dsl.wmv" +pladdurl2 "Germany | Regional TV | 555 | TV Sauerland (Chapter 3 - Sandboard WM 2004) | Regional TV from Sauerland | http://www.sauerland-tv.de/" "http://mediatv.webserver-colonia.de/streaming/2005/ote3-sandwm-dsl.wmv" +pladdurl2 "Germany | Regional TV | 555 | TV Sauerland (Chapter 3 - Sandboard WM 2004) | Regional TV from Sauerland | http://www.sauerland-tv.de/" "http://mediatv.webserver-nrw.de/streaming/2005/ote3-sandwm-dsl.wmv" +pladdurl2 "Germany | Regional TV | 555 | TV Sauerland (Chapter 3 - Sandboard WM 2004) | Regional TV from Sauerland | http://www.sauerland-tv.de/" "http://mediatv.fileserver-nrw.de/streaming/2005/ote3-sandwm-dsl.wmv" +pladdurl2 "Germany | Regional TV | 350 | TV Suedbaden | Regional Television from Freiburg | http://www.funkhaus-freiburg.de/" "mms://132.230.1.29:8080" +pladdurl2 "Germany | News | 300 | WDR | The main news programs of the Westdeutscher Rundfunk are shown | http://www.wdr.de/themen/global/webmedia/" "http://www.wdr.de/wdrlive/media/wdrfs-gross.ram" +pladdurl2 "Germany | Regional TV | 517 | WM TV | Regional TV for Münsterland / Münster | http://www.wmtv-online.de/webtv/dsl/vidstart2.html" "http://www.wmtv-online.de/webtv/dsl/vid1.wmv" +pladdurl2 "Germany | Music | 500 | Wuerfelzucker.tv | German music | http://www.wuerfelzucker.tv/" "mms://wm.broadcast.tneg.de/Wuerfelzucker" +pladdurl2 "Germany | Local | 650 | WWTV | Local TV from Wied | http://www.wwtv.de/" "http://www.wwtv.de/sendungen/sendung_DSL.wmv" +pladdurl2 "Germany | Unknown | 625 | XEN.ON | Campus Television | http://www.xenonline.de/" "mms://show.webshoptv.de/webshoptv" +pladdurl2 "Germany | Unknown | 151 | XXL Radio | Dance / House / Techno / Trance | http://www.xxl-radio.de" "http://s2.xxl-radio.de:8020/;stream.nsv" +pladdurl2 "Germany | Public TV | 300 | ZDF | On of the main public TV stations of Germany | http://www.zdfinfokanal.de" "mms://ms.mdcs.dtag.de/encoder.zdf.zdf_h" +pladdurl2 "Greece | Unknown | 50 | Astra TV | | http://www.astratv.gr/" "http://astratv.ath.cx:1091" +pladdurl2 "Greece | Regional TV | 44 | Delta TV | Regional TV from Eastern Macedonia and Thrace | http://www.deltatv.gr/" "mms://80.85.24.78:8080" +pladdurl2 "Greece | National TV | 225 | ERT Sat | National TV Station | http://ert.ntua.gr/index1.htm" "http://ert.ntua.gr/tv.ram" +pladdurl2 "Greece | General | 141 | Inet | General TV station | http://tvradio.ert.gr/profile/netnew.asp" "mms://194.177.200.37/TV" +pladdurl2 "Greece | Religious | 45 | Lyxnos | TV from the Orthodox Bisdom in Patras | http://www.i-m-patron.gr/lyxnos/" "http://vista.streamguys.com/lixnostv" +pladdurl2 "Greece | National TV | 331 | Mad TV | TV station broadcasting Greek and international | http://www.mad.gr/" "mms://media.mad.gr/madtv" +pladdurl2 "Greece | National TV | 331 | Mad TV | TV station broadcasting Greek and international | http://www.mad.gr/" "mms://media.mad.gr/madlivevideo" +pladdurl2 "Greece | Religious | 83 | Nikaia Church (Live Bible on F.A.C.P Nikaia) | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "mms:\\\\nikaia.serverroom.us\\nikaia" +pladdurl2 "Greece | Religious | 83 | Nikaia Church (Live Bible on F.A.C.P Nikaia) | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "http://energy10.egihosting.com/859653" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "..\\media\\spots\\Test - 001 - Spot-1.wmv" +pladdurl2 "Greece | Religious | 83 | Nikaia Church (Live Bible on F.A.C.P Nikaia) | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "mms:\\\\nikaia.serverroom.us\\nikaia" +pladdurl2 "Greece | Religious | 83 | Nikaia Church (Live Bible on F.A.C.P Nikaia) | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "http://energy10.egihosting.com/859653" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "..\\media\\hymn\\TH-08-01.wmv" +pladdurl2 "Greece | Religious | 83 | Nikaia Church (Live Bible on F.A.C.P Nikaia) | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "mms:\\\\nikaia.serverroom.us\\nikaia" +pladdurl2 "Greece | Religious | 83 | Nikaia Church (Live Bible on F.A.C.P Nikaia) | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "http://energy10.egihosting.com/859653" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "..\\media\\hymn\\TH-08-02.wmv" +pladdurl2 "Greece | Religious | 83 | Nikaia Church (Live Bible on F.A.C.P Nikaia) | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "mms:\\\\nikaia.serverroom.us\\nikaia" +pladdurl2 "Greece | Religious | 83 | Nikaia Church (Live Bible on F.A.C.P Nikaia) | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "http://energy10.egihosting.com/859653" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "..\\media\\hymn\\TH-08-03.wmv" +pladdurl2 "Greece | Religious | 83 | Nikaia Church (Live Bible on F.A.C.P Nikaia) | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "mms:\\\\nikaia.serverroom.us\\nikaia" +pladdurl2 "Greece | Religious | 83 | Nikaia Church (Live Bible on F.A.C.P Nikaia) | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "http://energy10.egihosting.com/859653" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "..\\media\\spots\\Test - 001 - Spot-1.wmv" +pladdurl2 "Greece | Religious | 83 | Nikaia Church (Live Bible on F.A.C.P Nikaia) | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "mms:\\\\nikaia.serverroom.us\\nikaia" +pladdurl2 "Greece | Religious | 83 | Nikaia Church (Live Bible on F.A.C.P Nikaia) | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "http://energy10.egihosting.com/859653" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "..\\media\\hymn\\TH-08-04.wmv" +pladdurl2 "Greece | Religious | 83 | Nikaia Church (Live Bible on F.A.C.P Nikaia) | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "mms:\\\\nikaia.serverroom.us\\nikaia" +pladdurl2 "Greece | Religious | 83 | Nikaia Church (Live Bible on F.A.C.P Nikaia) | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "http://energy10.egihosting.com/859653" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "..\\media\\hymn\\TH-08-05.wmv" +pladdurl2 "Greece | Religious | 83 | Nikaia Church (Live Bible on F.A.C.P Nikaia) | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "mms:\\\\nikaia.serverroom.us\\nikaia" +pladdurl2 "Greece | Religious | 83 | Nikaia Church (Live Bible on F.A.C.P Nikaia) | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "http://energy10.egihosting.com/859653" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "..\\media\\hymn\\TH-08-06.wmv" +pladdurl2 "Greece | Religious | 83 | Nikaia Church (Live Bible on F.A.C.P Nikaia) | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "mms:\\\\nikaia.serverroom.us\\nikaia" +pladdurl2 "Greece | Religious | 83 | Nikaia Church (Live Bible on F.A.C.P Nikaia) | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "http://energy10.egihosting.com/859653" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "..\\media\\spots\\Test - 001 - Spot-1.wmv" +pladdurl2 "Greece | Religious | 83 | Nikaia Church (Live Bible on F.A.C.P Nikaia) | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "mms:\\\\nikaia.serverroom.us\\nikaia" +pladdurl2 "Greece | Religious | 83 | Nikaia Church (Live Bible on F.A.C.P Nikaia) | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "http://energy10.egihosting.com/859653" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "..\\media\\hymn\\TH-08-07.wmv" +pladdurl2 "Greece | Religious | 83 | Nikaia Church (Live Bible on F.A.C.P Nikaia) | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "mms:\\\\nikaia.serverroom.us\\nikaia" +pladdurl2 "Greece | Religious | 83 | Nikaia Church (Live Bible on F.A.C.P Nikaia) | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "http://energy10.egihosting.com/859653" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "..\\media\\hymn\\TH-08-08.wmv" +pladdurl2 "Greece | Religious | 83 | Nikaia Church (Live Bible on F.A.C.P Nikaia) | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "mms:\\\\nikaia.serverroom.us\\nikaia" +pladdurl2 "Greece | Religious | 83 | Nikaia Church (Live Bible on F.A.C.P Nikaia) | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "http://energy10.egihosting.com/859653" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "..\\media\\hymn\\TH-08-09.wmv" +pladdurl2 "Greece | Religious | 83 | Nikaia Church (Live Bible on F.A.C.P Nikaia) | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "mms:\\\\nikaia.serverroom.us\\nikaia" +pladdurl2 "Greece | Religious | 83 | Nikaia Church (Live Bible on F.A.C.P Nikaia) | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "http://energy10.egihosting.com/859653" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "..\\media\\spots\\Test - 001 - Spot-1.wmv" +pladdurl2 "Greece | Religious | 83 | Nikaia Church (Live Bible on F.A.C.P Nikaia) | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "mms:\\\\nikaia.serverroom.us\\nikaia" +pladdurl2 "Greece | Religious | 83 | Nikaia Church (Live Bible on F.A.C.P Nikaia) | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "http://energy10.egihosting.com/859653" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "..\\media\\hymn\\TH-08-10.wmv" +pladdurl2 "Greece | Religious | 83 | Nikaia Church (Live Bible on F.A.C.P Nikaia) | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "mms:\\\\nikaia.serverroom.us\\nikaia" +pladdurl2 "Greece | Religious | 83 | Nikaia Church (Live Bible on F.A.C.P Nikaia) | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "http://energy10.egihosting.com/859653" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "..\\media\\hymn\\TH-08-11.wmv" +pladdurl2 "Greece | Religious | 83 | Nikaia Church (ÁðïóôïëéêÞ Åêêëçóßá ôçò ÐåíôçêïóôÞò Íéêáßáò) | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "http:\\\\eu02.egihosting.com\\947323" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "mms:\\\\70.85.72.122\\nikaia" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "mms:\\\\nikaiachurch.serverroom.us\\nikaia" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "..\\media\\spots\\Test - 001 - Spot-1.wmv" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "http:\\\\eu02.egihosting.com\\947323" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "mms:\\\\70.85.72.122\\nikaia" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "mms:\\\\nikaiachurch.serverroom.us\\nikaia" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "..\\media\\hymn\\TH-08-01.wmv" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "http:\\\\eu02.egihosting.com\\947323" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "mms:\\\\70.85.72.122\\nikaia" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "mms:\\\\nikaiachurch.serverroom.us\\nikaia" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "..\\media\\hymn\\TH-08-02.wmv" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "http:\\\\eu02.egihosting.com\\947323" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "mms:\\\\70.85.72.122\\nikaia" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "mms:\\\\nikaiachurch.serverroom.us\\nikaia" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "..\\media\\hymn\\TH-08-03.wmv" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "http:\\\\eu02.egihosting.com\\947323" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "mms:\\\\70.85.72.122\\nikaia" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "mms:\\\\nikaiachurch.serverroom.us\\nikaia" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "..\\media\\spots\\Test - 001 - Spot-1.wmv" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "http:\\\\eu02.egihosting.com\\947323" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "mms:\\\\70.85.72.122\\nikaia" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "mms:\\\\nikaiachurch.serverroom.us\\nikaia" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "..\\media\\hymn\\TH-08-04.wmv" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "http:\\\\eu02.egihosting.com\\947323" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "mms:\\\\70.85.72.122\\nikaia" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "mms:\\\\nikaiachurch.serverroom.us\\nikaia" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "http:\\\\eu02.egihosting.com\\947323" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "..\\media\\hymn\\TH-08-05.wmv" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "http:\\\\eu02.egihosting.com\\947323" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "mms:\\\\70.85.72.122\\nikaia" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "mms:\\\\nikaiachurch.serverroom.us\\nikaia" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "..\\media\\hymn\\TH-08-06.wmv" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "http:\\\\eu02.egihosting.com\\947323" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "mms:\\\\70.85.72.122\\nikaia" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "mms:\\\\nikaiachurch.serverroom.us\\nikaia" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "..\\media\\spots\\Test - 001 - Spot-1.wmv" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "http:\\\\eu02.egihosting.com\\947323" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "mms:\\\\70.85.72.122\\nikaia" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "mms:\\\\nikaiachurch.serverroom.us\\nikaia" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "..\\media\\hymn\\TH-08-07.wmv" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "http:\\\\eu02.egihosting.com\\947323" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "mms:\\\\70.85.72.122\\nikaia" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "mms:\\\\nikaiachurch.serverroom.us\\nikaia" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "..\\media\\hymn\\TH-08-08.wmv" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "http:\\\\eu02.egihosting.com\\947323" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "mms:\\\\70.85.72.122\\nikaia" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "mms:\\\\nikaiachurch.serverroom.us\\nikaia" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "..\\media\\hymn\\TH-08-09.wmv" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "http:\\\\eu02.egihosting.com\\947323" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "mms:\\\\70.85.72.122\\nikaia" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "mms:\\\\nikaiachurch.serverroom.us\\nikaia" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "..\\media\\spots\\Test - 001 - Spot-1.wmv" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "http:\\\\eu02.egihosting.com\\947323" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "mms:\\\\70.85.72.122\\nikaia" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "mms:\\\\nikaiachurch.serverroom.us\\nikaia" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "..\\media\\hymn\\TH-08-10.wmv" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "http:\\\\eu02.egihosting.com\\947323" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "mms:\\\\70.85.72.122\\nikaia" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "mms:\\\\nikaiachurch.serverroom.us\\nikaia" +pladdurl2 "Greece | Religious | 83 | Nikaia Church | Free Apostolic Church Of Pentecost | http://nikaia-church.gr/" "..\\media\\hymn\\TH-08-11.wmv" +pladdurl2 "Greece | Music | 273 | OPA TV | Music Videos and movies | http://www.opatv.com/" "mms://media.opaentertainment.com/tv" +pladdurl2 "Greece | Unknown | 100 | Parliament TV | Live from the Greek Parliament | http://www.parliament.gr/" "mms://mediaserver.otenet.gr/parliament" +pladdurl2 "Greece | General | 172 | Thraki Net (ThrakiNet TV (Thrace)) | General TV station located at | http://news.thrakinet.tv/" "mms://live.onestreaming.com/thrakinet" +pladdurl2 "Greece | General | 172 | Thraki Net (ThrakiNet TV (Thrace)) | General TV station located at | http://news.thrakinet.tv/" "http://live.onestreaming.com/thrakinet" +pladdurl2 "Greece | General | 172 | Thraki Net (ThrakiNet TV (Thrace)) | General TV station located at | http://news.thrakinet.tv/" "rtsp://live.onestreaming.com/thrakinet" +pladdurl2 "Greece | Unknown | 350 | TV Nea Makri | | http://tv.neamakri.net/" "http://www.radiocast.gr:9000/;file.nsv" +pladdurl2 "Honduras | News | 250 | Canal 6 | News Station | http://www.noti6.com" "mms://201.220.137.139:8080/" +pladdurl2 "Honduras | Religious | 100 | JBN TV | Christian TV channel | http://www.jbntv.org/" "http://video2.mashter.com:8056/;stream.nsv" +pladdurl2 "Honduras | News | 141 | Maya TV | News from Honduras | http://www.maya-tv.com/" "mms://207.44.132.27/mayatv" +pladdurl2 "Honduras | News | 141 | Maya TV | News from Honduras | http://www.maya-tv.com/" "mms://nuestraraza.com/maya-tv" +pladdurl2 "Hungary | General | 470 | ATV | General TV station | http://www.atv.hu" "mms://on.line.hu/ATV_live" +pladdurl2 "Hungary | General | 300 | Duna II Autonomia | General TV station | http://www.dunatv.hu/autonomiatvrol/" "mms://wms1.hungary.com/autonomia/live" +pladdurl2 "Hungary | News | 350 | DUNA TV | Newsarchive from Hungary available on website | http://www.dunatv.hu" "mms://wms1.hungary.com/dunatv/live" +pladdurl2 "Hungary | Music | 400 | E-Klub | Dance Music | http://allnight.e-klub.hu/" "mms://217.173.42.42/EKLUB" +pladdurl2 "Hungary | Unknown | 478 | Esküvö TV | Wedding TV | http://www.partytv.hu/" "mms://217.173.42.42/ESKUVOTV" +pladdurl2 "Hungary | Web TV | 1000 | Fix TV | Web TV | http://www.fixtv.hu" "mms://www.fixtv.hu/fixdsl" +pladdurl2 "Hungary | Unknown | 120 | FLP TV | | http://magyarportal.hu/" "mms://uni1.mavip.streamaudio.com/FLP_TV" +pladdurl2 "Hungary | Unknown | 120 | FLP TV | | http://magyarportal.hu/" "mms://1.uni1.mavip.streamaudio.com/FLP_TV" +pladdurl2 "Hungary | Unknown | 140 | Full Arts TV | | http://www.fullarts.hu/" "mms://uni1.mavip.streamaudio.com/FullArts_TV" +pladdurl2 "Hungary | Unknown | 140 | Full Arts TV | | http://www.fullarts.hu/" "mms://1.uni1.mavip.streamaudio.com/FullArts_TV" +pladdurl2 "Hungary | Unknown | 286 | Gotthard TV | TV from the city Szentgotthard | http://www.gotthardtv.hu/" "http://www.gotthardtv.hu:8000/listen.pls" +pladdurl2 "Hungary | Unknown | 273 | Halom TV | TV station from the city of Szazhalombatta | http://www.halomtv.hu/" "mms://vilagtv.battanet.hu:8080" +pladdurl2 "Hungary | News | 300 | HIR TV (Hir TV) | News TV | http://www.hirtv.hu/" "mms://streamer.hirtv.net/hirtv.asf" +pladdurl2 "Hungary | General | 700 | Hotspot | General music TV channel | http://www.hotspot-tv.net/" "mms://hotspot-tv.net:90/hotspotlive" +pladdurl2 "Hungary | Unknown | 177 | Kolcsey TV | | http://www.kolcseytv.hu" "http://leftover.mconet.hu:8000/listen.pls" +pladdurl2 "Hungary | Local | 290 | M1 Mateszalka | Local cable TV station from Mateszalka | http://www.m1tv.hu/" "mms://www.podcasting.gtk.hu:90/m1tv" +pladdurl2 "Hungary | Music | 100 | M1 TV | National TV with news , entertainment, music, film and | http://www.hirado.hu/nettv.php" "http://video.hirado.hu/videok/mtv/notavailable3.jpg" +pladdurl2 "Hungary | Music | 100 | M2 TV | National TV with news , entertainment, music, film and | http://www.hirado.hu" "http://video.hirado.hu/videok/mtv/notavailable3.jpg" +pladdurl2 "Hungary | Unknown | 180 | MM VTV | Mosonmagyarovar Varosi Televizio | http://www.mmvtv.hu/" "http://195.228.227.118:8000/listen.pls" +pladdurl2 "Hungary | Local | 350 | NY TV | Local TV from Nyireghaza | http://www.nyiregyhazitv.hu/" "mms://stream.giganet.hu/nytvonline?MSWMExt=.asf" +pladdurl2 "Hungary | General | 200 | Pecs TV | General TV from Pecs | http://www.pecstv.hu/archivum/" "http://212.40.65.153:8000/listen.pls" +pladdurl2 "Hungary | Local | 120 | Sopron TV | Local TV from Sopron | http://www.soprontv.hu/" "mms://213.222.171.74:8090/" +pladdurl2 "Hungary | General | 500 | Supernet Piros | General Internet TV station | http://www.szupernet.tv/" "mms://live1.szupernet.tv/piros" +pladdurl2 "Hungary | Local | 450 | SZTV | Local TV from Szombathely | http://www.tvszombathely.hu/" "mms://www.sztarnet.hu:90/sztv" +pladdurl2 "Hungary | Unknown | 250 | Varosi TV | TV from Szeged | http://www.vtvszeged.hu/site/index.php" "mms://213.163.4.195:8080/" +pladdurl2 "Hungary | General | 100 | Zenit TV | General TV station | http://www.zenittv.hu/" "mms://81.0.67.4/zenittv" +pladdurl2 "Hungary | Cable TV | 273 | Zuglo TV | Cable TV station from Budapest | http://www.zuglotv.hu/" " mms://www.sztarnet.hu:90/zuglotv_live" +pladdurl2 "Iceland | Unknown | 330 | Althingi | A live broadcasting of the Icelandic senate. Only when | http://www.althingi.is/vefur/mp.html" "mms://fjalar.althingi.is/beint" +pladdurl2 "India | Music | 400 | B4U | Bollywood music | http://www.b4utv.com" "mms://122.208.11.2/xsreamvr_ch5" +pladdurl2 "India | Unknown | 273 | CNBC TV18 | Business TV | http://www.moneycontrol.com/" "mms://a1873.l2639649579.c26396.g.lm.akamaistream.net/D/1873/26396/v0001/reflector:49579" +pladdurl2 "India | News | 50 | DD news | News station | http://www.ddinews.gov.in/" "http://164.100.51.209/DDNews" +pladdurl2 "India | National TV | 45 | Doordarshan | National TV Station | http://www.ddindia.com/" "rtsp://164.100.51.207/broadcast/DDLive?start=" +pladdurl2 "India | News | 96 | GSTV | Gujarati language news | http://www.gstvnews.com/" "http://www.gstvnews.com/rms/NEWS/NEWS.WMV" +pladdurl2 "India | News | 200 | IBN 7 | News channel | http://www.ibnlive.com/" "mms://a1091.l2639552042.c26395.g.lm.akamaistream.net/D/1091/26395/v0001/reflector:52042" +pladdurl2 "India | News | 250 | IBN Live | News channel | http://www.ibnlive.com/" "mms://a150.l2584248272.c25842.g.lm.akamaistream.net/D/150/25842/v0001/reflector:48272" +pladdurl2 "India | News | 250 | IBN Live | News channel | http://www.ibnlive.com/" "mms://216.185.51.162/IBN_vidhigh" +pladdurl2 "India | News | 250 | IBN Live | News channel | http://www.ibnlive.com/" "mms://216.185.51.162/IBN_Vid" +pladdurl2 "India | News | 250 | IBN Live | News channel | http://www.ibnlive.com/" "mms://216.185.43.131/IBN_vid" +pladdurl2 "India | News | 250 | IBN Live | News channel | http://www.ibnlive.com/" "mms://216.185.43.131/IBN_vidhigh" +pladdurl2 "India | Religious | 300 | Jesus Calls | Christian TV channel | http://www.numtv.com/jesuscalls/test/check.asp" "mms://38.119.36.227/JC English_300k" +pladdurl2 "India | News | 225 | NetGuruIndia | Nice broadcast of News in multiple languages (eg | http://www.netguruindia.com/vnews/newsindex.asp" "http://www.netguruindia.com/vnews/enews.ram" +pladdurl2 "India | General | 273 | Raj TV | General TV station | http://www.rajtvnet.in" "mms://207.44.228.100/RajjTv" +pladdurl2 "India | Religious | 273 | Sanskar TV | Spiritual channel | http://www.sanskartv.info/" "mms://61.8.138.171:8081/Live/Sanskar%20Tv.wmv" +pladdurl2 "India | Religious | 100 | Satsang TV | Spiritual channel | http://www.sanskartv.info/" "mms://61.8.138.174:8082/D:/Live/Live.wmv" +pladdurl2 "India | Unknown | 100 | Zee TV | | http://www.zeetelevision.com/" "mms://idesitvdotcom.mooo.com/zeetv-3029402n-idesitvdotcom" +pladdurl2 "India | Unknown | 100 | Zee TV | | http://www.zeetelevision.com/" "mms://idesitvdotcom.mooo.com/atnbangla-idesitvdotcom" +pladdurl2 "Indonesia | News | 50 | Liputan 6 | Recorded news | http://www.liputan6.com/" "http://video.liputan6.com/files/shows/spress1b.rm" +pladdurl2 "Indonesia | Public TV | 331 | TRI TV | Public Internet TV only -Indonesia & English | http://tritv.net/" "mms://68.178.205.217/broadcast" +pladdurl2 "Iran | Unknown | 273 | Al Kawthar TV | | http://www.alkawthartv.ir/" "mms://62.220.122.12/alkawthar" +pladdurl2 "Iran | Satellite TV | 273 | Alalam | Satellite television station in Arabic offering | http://www.alalam.ir" "mms://62.220.122.6/alalam" +pladdurl2 "Iran | Education | 273 | Amouzesh | Educational TV (IRIB) | http://www.irib.ir" "mms://62.220.122.12/amouzesh" +pladdurl2 "Iran | Education | 273 | Amouzesh | Educational TV (IRIB) | http://www.irib.ir" "mms://62.220.122.9/amouzesh" +pladdurl2 "Iran | Unknown | 45 | Channel 1 | TV station is located in the USA | http://www.channelonetv.com/" "rtsp://Stream641.PackDeal.Com/Channel_1" +pladdurl2 "Iran | Unknown | 110 | Didar Global TV | TV station located in Hamilton (ON) in Persian | http://www.didarglobaltv.com/" "MMS://Stream240.PackDeal.Com/Didar-Cable" +pladdurl2 "Iran | Unknown | 110 | Didar Global TV | TV station located in Hamilton (ON) in Persian | http://www.didarglobaltv.com/" "mms://Stream240.PackDeal.Com/Didar-Cable" +pladdurl2 "Iran | Unknown | 110 | Didar Global TV | TV station located in Hamilton (ON) in Persian | http://www.didarglobaltv.com/" "mms://Stream240.PackDeal.Com:88/Didar-Cable" +pladdurl2 "Iran | Unknown | 110 | Didar Global TV | TV station located in Hamilton (ON) in Persian | http://www.didarglobaltv.com/" "Didar-Cable.asx" +pladdurl2 "Iran | News | 450 | Iran NTV (Simay-Azadi) | News station | http://www.iranntv.com/" "mms://wm4bv001.servecast.com/globecast_wmlz_voi450k" +pladdurl2 "Iran | News | 450 | Iran NTV (Simay-Azadi) ( IrannTV ) | News station | http://www.iranntv.com/" "mms://470.servecast.com/globecast_wmlz_voi300k" +pladdurl2 "Iran | News | 450 | Iran NTV (Simay-Azadi) ( IrannTV ) | News station | http://www.iranntv.com/" "mms://wm4bv001.servecast.com/globecast_wmlz_voi300k" +pladdurl2 "Iran | News | 450 | Iran NTV (Simay-Azadi) ( IrannTV ) | News station | http://www.iranntv.com/" "mms://play970.servecast.com/globecast_wmlz_voi45k" +pladdurl2 "Iran | News | 450 | Iran NTV (Simay-Azadi) ( IrannTV ) | News station | http://www.iranntv.com/" "mms://play661.servecast.com/globecast_wmlz_voi45k" +pladdurl2 "Iran | National TV | 273 | Irib TV1 | National TV Station with various programmes | http://www.irib.ir/" "mms://62.220.122.4/tv1" +pladdurl2 "Iran | National TV | 273 | Irib TV1 | National TV Station with various programmes | http://www.irib.ir/" "mms://62.220.119.89/tv1" +pladdurl2 "Iran | National TV | 273 | Irib TV1 | National TV Station with various programmes | http://www.irib.ir/" "mms://62.220.122.4/tv1" +pladdurl2 "Iran | National TV | 100 | Irib TV2 | National TV station with various programs | http://tv2.irib.ir/" "mms://62.220.122.4/tv2" +pladdurl2 "Iran | National TV | 100 | Irib TV2 | National TV station with various programs | http://tv2.irib.ir/" "mms://62.220.119.89/tv2" +pladdurl2 "Iran | National TV | 100 | Irib TV2 | National TV station with various programs | http://tv2.irib.ir/" "mms://62.220.119.89/tv2" +pladdurl2 "Iran | National TV | 273 | Irib TV3 | National TV Station with various programmes | http://www.irib.ir/" "mms://62.220.122.4/tv3" +pladdurl2 "Iran | National TV | 273 | Irib TV3 | National TV Station with various programmes | http://www.irib.ir/" "mms://62.220.122.4/tv3" +pladdurl2 "Iran | National TV | 273 | Irib TV3 | National TV Station with various programmes | http://www.irib.ir/" "mms://62.220.119.89/tv3" +pladdurl2 "Iran | National TV | 273 | Irib TV3 | National TV Station with various programmes | http://www.irib.ir/" "mms://live.iransima.ir/irib3" +pladdurl2 "Iran | National TV | 270 | Irib TV4 | National TV station full of documentaries and scientific | http://tv4.irib.ir/" "mms://62.220.122.4/tv4" +pladdurl2 "Iran | National TV | 270 | Irib TV4 | National TV station full of documentaries and scientific | http://tv4.irib.ir/" "mms://62.220.119.89/tv4" +pladdurl2 "Iran | Unknown | 100 | Irib TV5 | | http://tv5.irib.ir/" "mms://62.220.122.12/tv5" +pladdurl2 "Iran | Unknown | 100 | Irib TV5 | | http://tv5.irib.ir/" "mms://62.220.122.12/tv5" +pladdurl2 "Iran | Unknown | 100 | Irib TV5 | | http://tv5.irib.ir/" "mms://62.220.119.89/tv5" +pladdurl2 "Iran | News | 273 | Irinn | News TV station | http://www.irinn.ir/" "mms://62.220.122.15/khabar" +pladdurl2 "Iran | Unknown | 273 | Jam e Jam 1 | Jamejam1 Broadcasting around Europe and asia. For | http://www.jame-jam.ir/" "mms://62.220.122.6/jj1" +pladdurl2 "Iran | Unknown | 273 | Jam e Jam 2 | Jam e Jam 2 available in America and asia | http://www.jame-jam.ir/" "mms://62.220.122.6/jj2" +pladdurl2 "Iran | Public TV | 273 | Jam e Jam 3 | Islamic Republic of Iran Broadcasting | http://www.irib.ir/" "mms://62.220.122.6/jj3" +pladdurl2 "Iran | General | 222 | Markazi TV | General TV station | http://www.markazitv.com/" "MarkaziTV-DSL.asx" +pladdurl2 "Iran | Religious | 141 | Mohabat TV (Mohabat) | Persian christian channel | http://www.mohabat.tv" "mms://209.208.69.71/mohabat" +pladdurl2 "Iran | Religious | 141 | Mohabat TV (Mohabat) | Persian christian channel | http://www.mohabat.tv" "mms://209.208.69.70/mohabat" +pladdurl2 "Iran | News | 273 | News TV | Khabar news TV | http://www.irib.ir" "mms://62.220.122.15/khabar" +pladdurl2 "Iran | Unknown | 100 | Pars TV | | http://www.parstvnetwork.com/" "MMS://Stream200.PackDeal.Com/ParsTV-Live" +pladdurl2 "Iran | Unknown | 100 | Pars TV | | http://www.parstvnetwork.com/" "mms://Stream200.PackDeal.Com/ParsTV-Live" +pladdurl2 "Iran | Unknown | 100 | Pars TV | | http://www.parstvnetwork.com/" "mms://Stream200.PackDeal.Com:88/ParsTV-Live" +pladdurl2 "Iran | Unknown | 100 | Pars TV | | http://www.parstvnetwork.com/" "ParsTV-Live.asx" +pladdurl2 "Iran | Unknown | 273 | Quran TV | | http://qurantv.irib.ir/" "mms://62.220.122.12/quran" +pladdurl2 "Iran | Unknown | 273 | Sahar TV1 | | http://www.irib.ir/" "mms://62.220.122.6/sahar" +pladdurl2 "Iran | Unknown | 273 | Sahar TV2 | | http://www.irib.ir" "mms://62.220.122.6/sahar" +pladdurl2 "Iran | Unknown | 222 | Salaam TV | Islamic channel | http://www.salaamtv.com/" "SalaamTV-Cable.asx" +pladdurl2 "Iran | Unknown | 220 | XTV | | http://www.iranxtv.com/" "XTV-Cable.asx" +pladdurl2 "Iraq | Community | 100 | Ahlulbayt Satellite | Community Access TV | http://www.ahlulbayt.tv/" "http://66.34.130.27/wmtencoder/live.wmv" +pladdurl2 "Iraq | National TV | 273 | Alforat TV | National TV Station | http://www.alforattv.net/" "http://212.6.39.243:8080" +pladdurl2 "Iraq | Unknown | 102 | Iraqi Media Net | | http://www.iraqimedianet.net/" "mms://66.199.250.34/IMN" +pladdurl2 "Iraq | Unknown | 250 | KBSV | Assyrian TV station | http://www.betnahrain.org/kbsv/kbsv.htm" "mms://207.212.197.130/DLiveEvents" +pladdurl2 "Iraq | Unknown | 250 | KBSV | Assyrian TV station | http://www.betnahrain.org/kbsv/kbsv.htm" "mms://207.212.197.130/DLiveEvents" +pladdurl2 "Ireland | Unknown | 1120 | Dail Eireann | Live Webcasts of the Houses of the Oireachtas | http://www.oireachtas.ie/viewdoc.asp?fn=/documents/livewebcast/Web-Live.htm&CatID=83&m=w" "mms://live1.heanet.ie/dail_Broadband" +pladdurl2 "Ireland | News | 100 | RTE | Recorded news | http://www.rte.ie/news/" "http://dynamic.rte.ie/quickaxs/9news.smil" +pladdurl2 "Ireland | Unknown | 1120 | Seanad | Live Webcasts of the Houses of the Oireachtas (the | http://www.oireachtas.ie/viewdoc.asp?fn=/documents/livewebcast/Web-Live.htm&CatID=83&m=w" "http://live.heanet.ie/oireachtas/seanad_broadband.asx " +pladdurl2 "Israel | General | 1000 | Channel 10 | General TV station | http://10.tv/" "mms://media2.013.net/013tv3" +pladdurl2 "Israel | General | 1000 | Channel 10 | General TV station | http://10.tv/" "mms://tenWZA.walla.tv/10" +pladdurl2 "Israel | News | 240 | Channel 10 News | News TV station. 20:00-21:00 main news - 22:45 or | http://news.walla.co.il/ts.cgi?tsscript=ch10" "mms://tenin.walla.tv/10" +pladdurl2 "Israel | Music | 432 | Clip TV | Music TV | http://www.cliptv.co.il" "mms://s07wm.castup.net/993620003-52.wmv" +pladdurl2 "Israel | Unknown | 150 | Hasulam TV | Hebrew TV about wisdom of kabbalah and tora | http://www.hasulam.co.il/" "mms://213.8.172.132/tv1" +pladdurl2 "Israel | Unknown | 90 | IBA Channel 3 | Ch. 3 relays from the Knesset. See program schedule | http://www.knesset.gov.il/broadcast/heb/screen.asp" "http://212.143.66.233/knessetlive" +pladdurl2 "Israel | News | 300 | Israel Plus TV | News, Entertaining programs , Films and serials in | http://www.israel-plus.tv/" "mms://213.8.138.42/zahavru" +pladdurl2 "Israel | Unknown | 225 | Kabbalah | Bnei baruch - israel brings you the wisdom of kabbalah - | http://www.kabbalah.info/engkab/live_broadcast.php" "http://switch3.castup.net/cunet/gm.asp?ClipMediaID=160780" +pladdurl2 "Israel | Unknown | 93 | Knesset TV | Live view into the political arena of Israel | http://knesset.gov.il/broadcast/heb/BroadcastScreen.aspx" "http://212.143.66.233/knessetlive" +pladdurl2 "Israel | Unknown | 350 | Layla | Israeli night life channel | http://www.layla.co.il/" "mms://mz13.mediazone.co.il/layla_live" +pladdurl2 "Israel | Religious | 232 | Machonmeir | Religious lectures in Hebrew | http://www.machonmeir.org.il/" "mms://212.150.241.251:8000/machonmeir" +pladdurl2 "Israel | Education | 330 | The Academic Channel | University TV channel from Haifa | http://channel.haifa.ac.il/" "mms://132.74.60.141/dve2" +pladdurl2 "Israel | Education | 330 | The Academic Channel | University TV channel from Haifa | http://channel.haifa.ac.il/" "mms://128.139.216.150/academic" +pladdurl2 "Israel | Unknown | 500 | TTVV | Experimental TV | http://www.ttvv.tv/" "mms://mms.ttvv.tv/ScreenSaver" +pladdurl2 "Italy | News | 273 | 24 Ore TV | 24/7 live economical and financial news and | http://www.ilsole24ore.com/" "mms://62.196.2.90/24oretv" +pladdurl2 "Italy | Satellite TV | 320 | 3 Channel | Satellite channel (Sky Canale 872) | http://www.3channel.it/" "mms://84.233.254.2/3Channel" +pladdurl2 "Italy | General | 242 | All Music | General music TV station | http://www.reteallmusic.it/" "http://live.mediaserver.kataweb.it/retea" +pladdurl2 "Italy | Web TV | 280 | Antenna 6 | Web TV | http://www.antenna6.tv/" "mms://81.25.97.50/antenna6" +pladdurl2 "Italy | Local | 220 | Antenna Sicilia | Local TV | http://www.antennasicilia.it/" "rtsp://www.antennasicilia.it/encoder/as.rm" +pladdurl2 "Italy | Unknown | 45 | Camera dei Deputati | Live from Montecitorio | http://www.radioradicale.it/" "http://video-4.radioradicale.it/ramgen/camera.rm" +pladdurl2 "Italy | Local | 273 | Canale 10 | Local TV from Marcianise (CE) | http://www.canaledieci.net/" "mms://www.canaledieci.net/Channel10" +pladdurl2 "Italy | Local | 200 | Canale 66 | Local TV from Szczecin | http://www.canale66.com/" "mms://212.48.126.114/canale66" +pladdurl2 "Italy | News | 520 | CFN / CNBC | Financial news from Milan | http://www.cfn.it/" "mms://cnf1.alice.cdn.interbusiness.it/uns__uns/cnf1.alice.cdn.interbusiness.it/cnf1" +pladdurl2 "Italy | News | 520 | CFN / CNBC | Financial news from Milan | http://www.cfn.it/" "mms://cnf.alice.cdn.interbusiness.it/uns__uns/cnf.alice.cdn.interbusiness.it/cnf" +pladdurl2 "Italy | News | 520 | CLASS NEWS | All-news TV from Milan | http://www.classcity.it/class_city/contenuti/classcity.htm" "mms://classnews1.alice.cdn.interbusiness.it/uns__uns/classnews1.alice.cdn.interbusiness.it/classnews1" +pladdurl2 "Italy | News | 520 | CLASS NEWS | All-news TV from Milan | http://www.classcity.it/class_city/contenuti/classcity.htm" "mms://classnews.alice.cdn.interbusiness.it/uns__uns/classnews.alice.cdn.interbusiness.it/classnews" +pladdurl2 "Italy | Music | 242 | Deejay TV | Populair music | http://www.deejay.it" "http://213.92.19.12/deejaytv?url=42403142123117R1911" +pladdurl2 "Italy | Unknown | 45 | EBS | Live broadcasting on the Net | http://www.radioradicale.it/" "http://video-4.radioradicale.it/ramgen/euro.rm" +pladdurl2 "Italy | News | 1128 | Exformat | Film, fiction and news | http://www.exformat.com/" "mms://85.18.94.61:8080/" +pladdurl2 "Italy | National TV | 341 | Futura TV | National TV related to RAI | http://www.futuratv.rai.it/" "mms://rntlivewm.rai.it/_futuratv_" +pladdurl2 "Italy | Unknown | 35 | GRP | Giornale RadioTelevisivo Poemonte | http://www.grp.it/" "mms://streaming.grp.it/GRPLive" +pladdurl2 "Italy | Unknown | 350 | Impresa Live | Chamber of Commerce of Milan | http://www.impresalive.tv/" "http://217.169.117.43/icci_live" +pladdurl2 "Italy | Unknown | 200 | LA 8 | | http://www.la9.it/" "mms://84.233.254.2/La8" +pladdurl2 "Italy | Unknown | 312 | LA 9 | | http://www.la9.it/" "mms://84.233.254.2/La9_Sat" +pladdurl2 "Italy | Local | 220 | LA9 Sat | Local TV from Padova | http://www.la9.it/" "mms://84.233.254.2/La9_Sat" +pladdurl2 "Italy | Regional TV | 273 | Lazio TV | Regional TV from Lazio | http://www.laziotv.com/" "mms://80.21.25.190:8081" +pladdurl2 "Italy | Local | 75 | Lira TV (LIRATV) | Local TV from Salerno | http://www.liratv.it/" "http://151.55.234.140:8080" +pladdurl2 "Italy | Music | 100 | Magic TV | Music TV station | http://www.magictv.tv/" "mms://streaming-1.intelcom.sm/magictv" +pladdurl2 "Italy | Local | 50 | Msat 1 | Local TV from Modica (Sicily) | http://www.mediterranei.it/" "mms://video.mediterranei.it:1407/" +pladdurl2 "Italy | Music | 270 | Omega TV | Trance Hardtrance music | http://www.omgtv.net" "http://www.omgtv.net/trance.m3u" +pladdurl2 "Italy | Local | 200 | Onda TV | Local TV from Messinese | http://www.ondatv.it" "mms://85.41.200.123:8080/" +pladdurl2 "Italy | Satellite TV | 350 | Play TV | Satellite channel (Sky Canale 869) | http://www.playtvitalia.it/" "mms://85.18.98.225:8000/" +pladdurl2 "Italy | Local | 350 | PNBox TV | Local TV from Pordenone | http://www.pnbox.tv/" "mms://217.169.117.43/pordenone_play" +pladdurl2 "Italy | Regional TV | 520 | Primocanale | Regional television from Liguria | http://www.primocanale.it/" "mms://iptv.primocanale.it/diretta" +pladdurl2 "Italy | Music | 150 | QOOB TV (MTV Qoob) | Alternative music and video art | http://www.qoob.tv/" "http://it.qoob.tv/swf/streamingtv_nocontrols.swf" +pladdurl2 "Italy | Local | 140 | Quarto Canale TV | Local TV from Pagani (Salerno) | http://www.quartocanaletv.it/" "http://212.48.126.114/quartocanale" +pladdurl2 "Italy | Music | 100 | Radio Italia | Music TV station with Italian music | http://www.radioitalia.it/" "mms://radioitalia.wm.p1.str3.com/vditalia" +pladdurl2 "Italy | Music | 150 | Radio SNJ | Interviews and music | http://www.radiosnj.com/" "http://ourstream.redirectme.net/tv" +pladdurl2 "Italy | News | 150 | Rai | Recorded Italian public television news | http://rai.it/" "http://rntsmil.rai.it/ram/ultimotg1.ram" +pladdurl2 "Italy | Sports | 100 | Rai Sport | Recorded sports update | http://www.raisport.rai.it/" "http://rntsmil.rai.it/ram/sport/ultimi/ultimo_notiziario_sportivo.ram" +pladdurl2 "Italy | Unknown | 290 | Rai Utile | Stream with various subjects that are being broadcast by | http://www.raiutile.rai.it/" "http://213.233.34.132:9005/" +pladdurl2 "Italy | News | 232 | Repubblica | News. Video only available from 10:00 and 13:00 (local | http://www.repubblica.it/" "http://live.mediaserver.kataweb.it/repubblicaradiotv" +pladdurl2 "Italy | Local | 50 | RMK TV | Local TV from Sciacca (AG) | http://www.rmk.it/" "mms://rmkweb.cjb.net:8080/" +pladdurl2 "Italy | Unknown | 348 | ROMAuno | TV from Rome | http://www.romauno.tv/" "mms://213.156.33.209/RomaunoTV" +pladdurl2 "Italy | Music | 300 | RTL 102.5 | Populair music | http://www.rtl.it/" "mms://151.1.245.36/rtl102.5vs/" +pladdurl2 "Italy | Unknown | 60 | RTS TV | Tele Radio salento | http://www.rtstv.it/" "MMS://88.39.200.198:1048" +pladdurl2 "Italy | Unknown | 245 | RTV 38 | TV network that has coverage in Tuscany, Liguria, Umbria, | http://www.rtv38.com/rtv38.html" "http://83.103.91.206:9090/rtv38?MSWMExt=.asf" +pladdurl2 "Italy | Unknown | 45 | Senato della Repubblica | Located at Palazzo Madama | http://www.radioradicale.it/" "rtsp://video-1.radioradicale.it:7070/encoder/senato.rm" +pladdurl2 "Italy | General | 80 | Sicilia TV | General Television station | http://www.siciliatv.org/" "mms://217.133.101.252:8080" +pladdurl2 "Italy | General | 539 | Sky life TG24 | General TV station with news | http://www.skylife.it/html/skylife/tg24/" "mms://live.skylife.it/SkyTg24" +pladdurl2 "Italy | General | 273 | Tef Channel | General TV station | http://www.italianet.tv/" "mms://88.40.221.114:8080" +pladdurl2 "Italy | General | 270 | Tele D1 | General TV station | http://www.d1television.it/" "http://stream.mediaonline.it/teled1" +pladdurl2 "Italy | Local | 311 | Tele Liguria Sud | Local television from La Spezia with Sport and | http://www.teleliguriasud.it/" "mms://videostream.teleliguriasud.it:8080/" +pladdurl2 "Italy | Sports | 140 | Telecapri | Sport channel with soccer | http://www.telecaprisport.it/" "mms://live.wm.p1.str3.com/000999_bc_v365_telecaprisport_mi" +pladdurl2 "Italy | Local | 220 | Telecolor | Local TV station | http://www.telecolor.it/" "rtsp://www.lasicilia.it/encoder/telecolor.rm" +pladdurl2 "Italy | Local | 90 | Telemolise | Local station from Compobasso. Recorded streams | http://www.telemolise.com/" "mms://wmlive.telemolise.com/liveadsl" +pladdurl2 "Italy | Local | 90 | Telemolise | Local station from Compobasso. Recorded streams | http://www.telemolise.com/" "mms://wmlive.telemolise.com/live" +pladdurl2 "Italy | Local | 289 | Teleregione | Local TV from Barletta | http://www.teleregionecolor.it/" "mms://home.intelwork.net:8080/treg" +pladdurl2 "Italy | Regional TV | 225 | Telesirio | Regional tv station | http://www.telesirio.it/" "rtsp://89.97.5.20:554/encoder/live.rm" +pladdurl2 "Italy | Local | 387 | Teletruria | Local TV of Arezzo | http://www.flynet.tv/noflynet/index.htm" "mms://83.147.65.2/TeletruriaLive" +pladdurl2 "Italy | News | 190 | TG7 | Recorded news | http://www.virgilio.it/" "mms://vmedia.tin.it/la7/TGLA7-180K.wmv" +pladdurl2 "Italy | News | 190 | TG7 | Recorded news | http://www.virgilio.it/" "mms://vmedia.tin.it/la7/TGLA7-50K.wmv" +pladdurl2 "Italy | News | 273 | TGS | ROME TGS VIOLINA national news, regional news culture and | http://www.videolina.it/" "mms://212.131.249.134/Videolina" +pladdurl2 "Italy | Unknown | 45 | Tizianasat | | http://www.tizianalotto.it/" "mms://195.62.238.59:1113" +pladdurl2 "Italy | Religious | 50 | TRBC | Catholic channel | http://www.immacolata.com/" "http://immacolata.dyndns.org:3278/TRBC" +pladdurl2 "Italy | Local | 40 | TRSP | Local TV from Vasto | http://www.trsp.it/" "mms://81.73.21.60:1103/" +pladdurl2 "Italy | News | 50 | TV Mediterraneo | Located in Modica. Recorded news available on | http://www.mediterranei.it/" "mms://video.mediterranei.it:1407" +pladdurl2 "Italy | News | 50 | TV Mediterraneo | Located in Modica. Recorded news available on | http://www.mediterranei.it/" "http://www.mediterraneosat.it/audio_video/satnews.wmv" +pladdurl2 "Italy | General | 550 | TV Oggi | General TV station | http://www.tvoggisalerno.it/" "http://85.18.170.70:8080" +pladdurl2 "Italy | Religious | 100 | TV Padre Pio | Religious TV channel | http://www.teleradiopadrepio.it" "mms://padrepio.wm.p1.str3.com/001004_bc_v365_teleradiopadrepio_high_mi" +pladdurl2 "Italy | Religious | 100 | TV Padre Pio | Religious TV channel | http://www.teleradiopadrepio.it" "http://padrepio.wm.p1.str3.com/001004_bc_v365_teleradiopadrepio_high_mi" +pladdurl2 "Italy | Religious | 100 | TV Padre Pio | Religious TV channel | http://www.teleradiopadrepio.it" "mms://padrepio.wm.p1.str3.com/001004_bc_v365_teleradiopadrepio_low_mi" +pladdurl2 "Italy | Religious | 100 | TV Padre Pio | Religious TV channel | http://www.teleradiopadrepio.it" "http://padrepio.wm.p1.str3.com/001004_bc_v365_teleradiopadrepio_low_mi" +pladdurl2 "Italy | Unknown | 220 | TVA | Television station located in Vicenza | http://www.vicenzacity.com" "rtsp://tvonline.vicenzacity.com/broadcast/live.rm?embed=true" +pladdurl2 "Italy | Regional TV | 218 | TVR Teleitalia | Regional TV station from Toscane | http://www.tvrteleitalia.it/" "mms://83.149.151.203:9005/" +pladdurl2 "Italy | Unknown | 100 | Vatican TV | Only transmitting during some parts of the day when | http://www.radiovaticana.org/" "http://www.vatican.va/news_services/television/multimedia/vatican_high.ram" +pladdurl2 "Italy | Local | 273 | Videolina | Local TV station, located in Cagliari | http://www.videolina.it/" "http://212.131.249.134/Videolina" +pladdurl2 "Jamaica | Music | 90 | Rascast | Music TV (Reggaeton Music) | http://www.rascast.com/" "http://87.74.46.23:8004/;RAScast_Media.nsv" +pladdurl2 "Japan | News | 300 | FNN | News From The Fuji News Network | http://www.fnn-news.com/" "http://www.fnn-news.com/realvideo/smil/news_300_e.ram" +pladdurl2 "Japan | General | 300 | Impress TV | General TV station | http://impress.tv" "mms://impresstv-wmt.stream.co.jp/impresstv-bb" +pladdurl2 "Japan | Unknown | 250 | JAL TV | Japanese Airlines TV | http://www.jal.co.jp/broadband/" "http://www.jal.co.jp/cgi-bin/jal/jaltv/bbtv_asx.cgi?chno=1" +pladdurl2 "Japan | News | 300 | Mid Live | Market News | http://impress.tv/fi/index.htm" "mms://mid.stream.co.jp/mid-im" +pladdurl2 "Japan | General | 500 | Odoroku TV (live 512K) | General entertainment | http://odoroku.tv/" "mms://202.90.181.8/tandm500" +pladdurl2 "Japan | General | 500 | Odoroku TV (live 512K) | General entertainment | http://odoroku.tv/" "mms://202.90.178.134/tandm500" +pladdurl2 "Japan | General | 500 | Odoroku TV (live 56K) | General entertainment | http://odoroku.tv/" "mms://202.90.181.8/tandm56-2" +pladdurl2 "Japan | General | 500 | Odoroku TV (live 56K) | General entertainment | http://odoroku.tv/" "mms://202.90.178.134/tandm56-2" +pladdurl2 "Japan | Music | 300 | Oh!sama TV Ch. 1 | Music channel provided by King | http://www.ohsama.tv" "mms://wms9live.pod.tv/king_ch01/video" +pladdurl2 "Japan | Music | 300 | Oh!sama TV Ch. 2 | Music channel provided by King | http://www.ohsama.tv/" "mms://wms9live.pod.tv/king_ch02/video" +pladdurl2 "Japan | Unknown | 56 | POD TV | | http://www.pod.tv" "mms://dca.live.pod.tv/tandm56-2" +pladdurl2 "Japan | Shopping | 285 | QVC | (Home Shopping) Offers a broad range of products | http://qvc.jp" "mms://ecst.qvc.jp/Live" +pladdurl2 "Japan | Music | 300 | Sony Music | Populair music | http://www.sonymusic.co.jp/" "mms://morrich.gekimedia.net/MainStream500" +pladdurl2 "Japan | News | 225 | TBS News | Tokyo Broadcasting System, Inc. News archive available on | http://news.tbs.co.jp/3snewsi/" "http://www.tbs.co.jp/news_mainprogram/asf/1_18.asf" +pladdurl2 "Japan | Unknown | 300 | TFMI | | http://www.tfmi.co.jp/" "mms://tfmi-wmt.gekimedia.net/tfmi-channel" +pladdurl2 "Japan | News | 280 | Yomiuri | The Daily Yomiuri News | http://www.yomiuri.co.jp/" "mms://wmt.stream.co.jp/yomiuri/result/project14/vyuu02w.wmv" +pladdurl2 "Japan | News | 280 | Yomiuri | The Daily Yomiuri News | http://www.yomiuri.co.jp/" "mms://wmt.stream.co.jp/yomiuri/result/project14/vyuu03w.wmv" +pladdurl2 "Japan | News | 280 | Yomiuri | The Daily Yomiuri News | http://www.yomiuri.co.jp/" "mms://wmt.stream.co.jp/yomiuri/result/project14/vyuu04w.wmv" +pladdurl2 "Japan | News | 280 | Yomiuri | The Daily Yomiuri News | http://www.yomiuri.co.jp/" "mms://wmt.stream.co.jp/yomiuri/result/project14/vyuu05w.wmv" +pladdurl2 "Japan | News | 280 | Yomiuri | The Daily Yomiuri News | http://www.yomiuri.co.jp/" "mms://wmt.stream.co.jp/yomiuri/result/project14/vyuu06w.wmv" +pladdurl2 "Japan | News | 280 | Yomiuri | The Daily Yomiuri News | http://www.yomiuri.co.jp/" "mms://wmt.stream.co.jp/yomiuri/result/project14/vyuu07w.wmv" +pladdurl2 "Japan | News | 280 | Yomiuri | The Daily Yomiuri News | http://www.yomiuri.co.jp/" "mms://wmt.stream.co.jp/yomiuri/result/sports/sports1.wmv" +pladdurl2 "Japan | News | 280 | Yomiuri | The Daily Yomiuri News | http://www.yomiuri.co.jp/" "mms://wmt.stream.co.jp/yomiuri/result/sports/sports4.wmv" +pladdurl2 "Japan | News | 280 | Yomiuri | The Daily Yomiuri News | http://www.yomiuri.co.jp/" "mms://wmt.stream.co.jp/yomiuri/result/sports/sports3.wmv" +pladdurl2 "Japan | News | 280 | Yomiuri | The Daily Yomiuri News | http://www.yomiuri.co.jp/" "mms://wmt.stream.co.jp/yomiuri/result/sports/sports2.wmv" +pladdurl2 "Japan | News | 280 | Yomiuri | The Daily Yomiuri News | http://www.yomiuri.co.jp/" "mms://wmt.stream.co.jp/yomiuri/result/geino/geino1.wmv" +pladdurl2 "Japan | News | 280 | Yomiuri | The Daily Yomiuri News | http://www.yomiuri.co.jp/" "mms://wmt.stream.co.jp/yomiuri/result/geino/geino4.wmv" +pladdurl2 "Japan | News | 280 | Yomiuri | The Daily Yomiuri News | http://www.yomiuri.co.jp/" "mms://wmt.stream.co.jp/yomiuri/result/geino/geino3.wmv" +pladdurl2 "Japan | News | 280 | Yomiuri | The Daily Yomiuri News | http://www.yomiuri.co.jp/" "mms://wmt.stream.co.jp/yomiuri/result/geino/geino2.wmv" +pladdurl2 "Jordan | News | 100 | Jordan TV | News, entertainment, documentaries, cultural and | http://www.jrtv.jo/" "mms://213.139.61.14/tv" +pladdurl2 "Jordan | News | 100 | Jordan TV | News, entertainment, documentaries, cultural and | http://www.jrtv.jo/" "mms://62.220.119.89/jj2" +pladdurl2 "Jordan | News | 150 | Jordan TV | News, entertainment, documentaries, cultural and | http://www.jrtv.jo/" "rtsp://fortress.ituner.com/broadcast/jrtv/encoder/tv.rm" +pladdurl2 "Kazakhstan | Religious | 259 | CNL | Christian TV channel | http://www.cnl.info/" "mms://193.40.0.77/cnl" +pladdurl2 "Korea, south | Unknown | 225 | Andong MBC | | http://www.andongmbc.co.kr/" "http://andong.pusanweb.co.kr/andonglive" +pladdurl2 "Korea, south | Religious | 273 | C3TV | Christian Internet Broadcasting | http://c3tv.com/" "mms://211.63.212.50/live" +pladdurl2 "Korea, south | Unknown | 143 | CBS | | http://www.cbs.co.kr/" "mms://vod.cbs.co.kr/cbs_tv_live_162" +pladdurl2 "Korea, south | Religious | 140 | CGNTV | Christian Gospel channel | http://www.cgntv.net/" "mms://cdn7.cgntv.net/live200" +pladdurl2 "Korea, south | Unknown | 253 | CJB | | http://www.cjb.co.kr/" "mms://live.cjb.co.kr/cjb_live" +pladdurl2 "Korea, south | Unknown | 300 | EBS Sat | TV station located in Seoul | http://www.ebs.co.kr/" "http://219.240.37.17:8080/L-TV_300k" +pladdurl2 "Korea, south | Unknown | 100 | GN MBC | | http://www.gnmbc.co.kr/" "mms://211.171.235.142/tvs" +pladdurl2 "Korea, south | General | 350 | GTB SBS | General TV station | http://www.igtb.co.kr/" "mms://211.218.111.165/GTBLive824" +pladdurl2 "Korea, south | General | 350 | GTB SBS | General TV station | http://www.igtb.co.kr/" "mms://211.218.111.165/GTBLive325" +pladdurl2 "Korea, south | General | 350 | GTB SBS | General TV station | http://www.igtb.co.kr/" "mms://211.218.111.165/GTBLive323" +pladdurl2 "Korea, south | General | 350 | GTB SBS | General TV station | http://www.igtb.co.kr/" "mms://211.218.111.165/GTBLive322" +pladdurl2 "Korea, south | General | 350 | GTB SBS | General TV station | http://www.igtb.co.kr/" "mms://211.218.111.165/GTBLive326" +pladdurl2 "Korea, south | General | 350 | GTB SBS | General TV station | http://www.igtb.co.kr/" "mms://211.218.111.165/GTBLive319" +pladdurl2 "Korea, south | General | 350 | GTB SBS | General TV station | http://www.igtb.co.kr/" "mms://211.218.111.165/GTBLive031" +pladdurl2 "Korea, south | General | 350 | GTB SBS | General TV station | http://www.igtb.co.kr/" "mms://211.218.111.165/GTBLive030" +pladdurl2 "Korea, south | General | 350 | GTB SBS | General TV station | http://www.igtb.co.kr/" "mms://211.218.111.165/GTBLive029" +pladdurl2 "Korea, south | General | 350 | GTB SBS | General TV station | http://www.igtb.co.kr/" "mms://211.218.111.165/GTBLive032" +pladdurl2 "Korea, south | General | 350 | GTB SBS | General TV station | http://www.igtb.co.kr/" "mms://211.218.111.165/GTBLive207" +pladdurl2 "Korea, south | General | 350 | GTB SBS | General TV station | http://www.igtb.co.kr/" "mms://211.218.111.165/GTBLive125" +pladdurl2 "Korea, south | General | 350 | GTB SBS | General TV station | http://www.igtb.co.kr/" "mms://211.218.111.165/GTBLive129" +pladdurl2 "Korea, south | General | 350 | GTB SBS | General TV station | http://www.igtb.co.kr/" "mms://211.218.111.165/GTBLive130" +pladdurl2 "Korea, south | General | 350 | GTB SBS | General TV station | http://www.igtb.co.kr/" "mms://211.218.111.165/GTBLive128" +pladdurl2 "Korea, south | General | 350 | GTB SBS | General TV station | http://www.igtb.co.kr/" "mms://211.218.111.165/GTBLive127" +pladdurl2 "Korea, south | General | 350 | GTB SBS | General TV station | http://www.igtb.co.kr/" "mms://211.218.111.165/GTBLive126" +pladdurl2 "Korea, south | General | 350 | GTB SBS | General TV station | http://www.igtb.co.kr/" "mms://211.218.111.165/GTBLive131" +pladdurl2 "Korea, south | General | 350 | GTB SBS | General TV station | http://www.igtb.co.kr/" "mms://211.218.111.165/GTBLive132" +pladdurl2 "Korea, south | General | 350 | GTB SBS | General TV station | http://www.igtb.co.kr/" "mms://211.218.111.165/GTBLive133" +pladdurl2 "Korea, south | National TV | 150 | KBS 1 | International TV station located in seoul | http://www.kbs.co.kr/" "mms://livet.kbs.co.kr/news_1tv?free_sports/" +pladdurl2 "Korea, south | National TV | 150 | KBS 2 | International TV station located in Seoul | http://www.kbs.co.kr/" "mms://livet.kbs.co.kr/news_2tv?free_sports" +pladdurl2 "Korea, south | Unknown | 190 | KCTV | | http://www.kctvjeju.com/" "mms://media1.kctvjeju.com/live05?WMContentBitrate=300000" +pladdurl2 "Korea, south | National TV | 300 | KTV | Korean National Visual Media and Publishing Center | http://www.ktv.go.kr/" "mms://onair.ktv.go.kr/ktv" +pladdurl2 "Korea, south | Unknown | 350 | Masan MBC | Masan Munhwa Boardcasting Cooperation (not always | http://www.masanmbc.co.kr" "http://210.114.220.120/masanmbctv" +pladdurl2 "Korea, south | Unknown | 200 | MBN | Business and Economy Television | http://www.mbn.co.kr/" "mms://mbnlive.dreamxlive.net/mkimbn200" +pladdurl2 "Korea, south | Religious | 242 | PBC | Catholic TV Channel | http://www.pbc.co.kr/" "mms://219.240.83.254/tvlive" +pladdurl2 "Korea, south | Religious | 242 | PBC | Catholic TV Channel | http://www.pbc.co.kr/" "mms://219.240.83.254/fmlivev" +pladdurl2 "Korea, south | Unknown | 300 | Taejon MBC TV | | http://www.tjmbc.co.kr/" "mms://VOD.tjmbc.co.kr/818becbd1b" +pladdurl2 "Korea, south | Unknown | 200 | TBC | Taegu Broadcasting Cooperation | http://www.tbc.co.kr/" "mms://203.251.80.180/tbc_tv/" +pladdurl2 "Korea, south | Unknown | 200 | TBC | Taegu Broadcasting Cooperation | http://www.tbc.co.kr/" "mms://203.251.80.184/tbc_tv/" +pladdurl2 "Korea, south | Unknown | 200 | Wow TV | | http://wowtv.co.kr/" "mms://wowtv.lgcdn.com/gold_live200k" +pladdurl2 "Korea, south | News | 200 | YTN | 24-hour news and current affairs | http://www.ytn.co.kr/" "mms://www.ytninternet.co.kr/ytn5926_200k" +pladdurl2 "Kosovo | Local | 141 | Gazeta Besa | Local TV in Albanian language | http://gazetabesa.com/" "mms://70.85.72.122/besa" +pladdurl2 "Kurdistan | General | 250 | Kurdistan TV | General Television station | http://www.kurdistan.tv/" "http://stream.crossmediaventures.com/KTV_High?MSWMExt=.asf" +pladdurl2 "Kurdistan | Music | 241 | MMC | Kurdish music | http://www.mmc.tv/" "http://wm.streampower.be/Mesopotamiatv?MSWMExt=.asf" +pladdurl2 "Kurdistan | Community | 250 | ROJ TV | TV station for the Kurdish community located in | http://www.roj.tv/" "http://wm.streampower.be/roj_tv" +pladdurl2 "Kuwait | Unknown | 85 | Alkarbalaeia | | http://www.alkarbalaeia.net/" "rtsp://www.alkarbalaeia.net/broadcast/live.rm" +pladdurl2 "Latvia | Sports | 240 | Eurosports | Fighting sports | http://www.eurosports.lv/" "mms://media.stv.lv/stvwsx" +pladdurl2 "Latvia | Music | 300 | STV | Music, news, culture and other information. Internet TV | http://www.stv.lv/" "mms://media.stv.lv/all" +pladdurl2 "Latvia | News | 900 | TV 24 | News channel | http://www.tv24.lv/" "mms://217.198.224.70:8888" +pladdurl2 "Latvia | News | 900 | TV 24 | News channel | http://www.tv24.lv/" "mms://217.198.224.70:9999" +pladdurl2 "Lebanon | News | 128 | Al Manar | Hezbollah's news TV (not always available) | http://www.wa3ad.org/" "mms://209.172.60.145/live" +pladdurl2 "Lebanon | News | 128 | Al Manar | Hezbollah's news TV (not always available) | http://www.wa3ad.org/" "mms://209.172.60.145/live01" +pladdurl2 "Lithuania | Local | 503 | STV | Local TV station | http://www.stv.lt/" "mms://86.38.160.185:82" +pladdurl2 "Luxemburg | General | 200 | Tango TV | General TV station. TTV is a new chain of television in | http://www.ttv.lu/index.php?option=antenne&action=live" "mms://212.66.75.8:8000" +pladdurl2 "Macedonia | News | 45 | A1 | Evening news | http://media.a1.com.mk/members/" "http://media.a1.com.mk/members/vesti.ram" +pladdurl2 "Macedonia | Weather | 80 | A1 Meteo | Recorded weather forecast | http://media.a1.com.mk/members/" "http://media.a1.com.mk/members/vesti/vreme80.rm" +pladdurl2 "Macedonia | News | 45 | Kanal 5 | Daily updated evening newscasts from the privately owned | http://www.kanal5.com.mk/" "http://217.16.69.22/12.wmv" +pladdurl2 "Macedonia | News | 35 | TV TELMA | Daily recorded news broadcast from Macedonia | http://www.telma.com.mk/" "rtsp://212.110.95.76/telma/vesti.rm" +pladdurl2 "Malaysia | Unknown | 118 | Cyberjaya TV | Live streaming from Malaysia's ICT hub | http://www.cyberjayatv.net/" "mms://202.168.64.4/CTV?WMContentBitrate=150000" +pladdurl2 "Malaysia | Sports | 273 | RTM TV1 | Sports, news, entertainment, movie, drama and | http://www.rtm.net.my/" "http://61.6.163.26/rtm1" +pladdurl2 "Malaysia | Public TV | 273 | RTM TV2 | Public service broadcaster | http://www.rtm.net.my/" "http://61.6.163.26/rtm2" +pladdurl2 "Malta | Unknown | 300 | Net TV | A private TV station viewing starts 07.00 to 24.00 | http://www.di-ve.com/" "mms://194.158.37.70/net" +pladdurl2 "Malta | Unknown | 93 | Net TV | A private TV station viewing starts 07.00 to 24.00 | http://www.nettv.com.mt/" "mms://www.nettv.com.mt:1980/nettv" +pladdurl2 "Malta | Local | 220 | Smash TV | Local TV from Paola | http://www.smashmalta.com/" "mms://217.145.4.13/SmashTV" +pladdurl2 "Malta | General | 300 | Super 1 | General TV station | http://www.super1.com" "mms://corona.maltanet.net/one" +pladdurl2 "Malta | National TV | 348 | TVM | Malta's national television station (not always | http://www.pbs.com.mt" "http://winmedia.di-ve.com/TVM" +pladdurl2 "Mexico | Government | 50 | Aguascalientes TV | Government TV from Aguascalientes | http://www.aguascalientes.gob.mx" "rtsp://207.248.119.251/encoder/tv.rm" +pladdurl2 "Mexico | Local | 273 | Canal 10 | Local TV from Cancun. Not always online! | http://www.canal10cancun.com/" "mms://PROMOVISION.MYVNC.COM:8080" +pladdurl2 "Mexico | Unknown | 226 | Canal 11 TV | On Demand-television, interviews, talkshows, | http://oncetv-ipn.net/index.php" "http://201.134.200.244:8080/ramgen/encoder/once.rm" +pladdurl2 "Mexico | Unknown | 100 | Canal 22 | Located in Mexico, D.F | http://www.canal22.org.mx/" "mms://168.255.107.254:80/wmedia/canal22.wmv" +pladdurl2 "Mexico | Local | 153 | Canal 44 | Local TV from Cd. Juarez, Chihuahua | http://www.canal44.com/" "mms://216.14.30.114/canal44" +pladdurl2 "Mexico | Education | 53 | Canal 53 (UANL-TV) | University Autonoma de Nuevo Leon | http://www.uanl.mx/" "mms://148.234.6.42/canal 53" +pladdurl2 "Mexico | Unknown | 212 | Canal del Congreso | Live view into the Mexican Congress | http://www.canaldelcongreso.gob.mx/" "mms://stream2.terra.es/wm2live1" +pladdurl2 "Mexico | Unknown | 100 | CLTV | Live from 11:00 am to 01 am ET | http://www.cancunlivetv.com" "mms://200.79.244.96:8080/" +pladdurl2 "Mexico | Education | 100 | EDU Canal 11 | Educational TV (not always online) | http://dgtve.sep.gob.mx/tve/red_edusat/TVeducativa/en_linea.htm" "mms://mediaserver.sep.gob.mx:80/wmedia/canal11.wmv" +pladdurl2 "Mexico | Education | 100 | EDU Canal 12 | Educational TV (not always online) | http://dgtve.sep.gob.mx/tve/red_edusat/TVeducativa/en_linea.htm" "mms://mediaserver.sep.gob.mx:80/wmedia/canal12.wmv" +pladdurl2 "Mexico | Education | 100 | EDU Canal 13 | Educational TV (not always online) | http://dgtve.sep.gob.mx/tve/red_edusat/TVeducativa/en_linea.htm" "mms://mediaserver.sep.gob.mx:80/wmedia/canal13.wmv" +pladdurl2 "Mexico | Education | 100 | EDU Canal 14 | Educational TV (not always online) | http://dgtve.sep.gob.mx/tve/red_edusat/TVeducativa/en_linea.htm" "mms://mediaserver.sep.gob.mx:80/wmedia/canal14.wmv" +pladdurl2 "Mexico | Education | 100 | EDU Canal 15 | Educational TV (not always online) | http://dgtve.sep.gob.mx/tve/red_edusat/TVeducativa/en_linea.htm" "mms://mediaserver.sep.gob.mx:80/wmedia/canal15.wmv" +pladdurl2 "Mexico | Education | 100 | EDU Canal 16 | Educational TV (not always online) | http://dgtve.sep.gob.mx/tve/red_edusat/TVeducativa/en_linea.htm" "mms://mediaserver.sep.gob.mx:80/wmedia/canal16.wmv" +pladdurl2 "Mexico | Education | 100 | EDU Canal 18 | Educational TV (not always online) | http://dgtve.sep.gob.mx/tve/red_edusat/TVeducativa/en_linea.htm" "mms://mediaserver.sep.gob.mx:80/wmedia/canal18.wmv" +pladdurl2 "Mexico | Education | 270 | EDU Canal 22 | Educational TV (not always online) | http://dgtve.sep.gob.mx/tve/red_edusat/TVeducativa/en_linea.htm" "mms://mediaserver.sep.gob.mx:80/wmedia/canal22.wmv" +pladdurl2 "Mexico | Local | 350 | Grupo FM TV | Local television from Veracruz | http://www.grupofm.com/" "mms://70.85.59.52/grupofm" +pladdurl2 "Mexico | News | 100 | Imagen | News and culture Television | http://www.imagen.com.mx" "http://www.imagen.com.mx/imagentv.ram" +pladdurl2 "Mexico | Unknown | 191 | Mexiquense | Television station located in Toluca | http://www.edomex.gob.mx" "rtsp://televisionmexiquense.edomexico.gob.mx/broadcast/television.rm" +pladdurl2 "Mexico | Religious | 35 | Monte Maria | Christian TV channel | http://www.montemaria.org/" "rtsp://216.9.32.3/broadcast/live.rm" +pladdurl2 "Mexico | News | 100 | Noticieros Televisa | Recorded news | http://www.esmas.com/noticierostelevisa/" "http://m.esmas.com:8080/ramgen/real/Noticiero/noticiero.smi?usehostname" +pladdurl2 "Mexico | News | 80 | Noticieros Televisa | News station | http://www.noticierostelevisa.com/" "http://m.esmas.com:8080/ramgen/real/Noticiero/noticiero.smi?usehostname" +pladdurl2 "Mexico | Sports | 259 | OchoTV | Free television with music, spectacles, news and sports | http://www.ochotv.com/" "mms://201.130.192.49:8000/" +pladdurl2 "Mexico | National TV | 150 | ONCE TV IPN | TV channel of Politecnic National Institute IPN from | http://www.oncetv.ipn.mx/" "http://201.134.200.244:8080/ramgen/encoder/once.rm" +pladdurl2 "Mexico | Unknown | 273 | PSN | Pacific Spanish Network | http://www.tusuperestacion.com/" "mms://streaming.tusuperestacion.com:8080/" +pladdurl2 "Mexico | General | 40 | RTV | Veracruz State Goverment Television, News, Education, Sports | http://www.rtv.org.mx/" "rtsp://200.79.7.137/broadcast/tv.rm" +pladdurl2 "Mexico | Unknown | 132 | SCJN | Supreme Court of Justice | http://www.scjn.gob.mx" "mms://200.57.144.93/SCJNSesiones" +pladdurl2 "Mexico | Education | 150 | Sicom | Educational TV (estado de puebla) | http://www.sicom.edu.mx/" "rtsp://realvitor.sicomnet.edu.mx:554/broadcast/live.rm" +pladdurl2 "Mexico | Local | 30 | TV Acapulco | Local TV station from Acapulco | http://www.tvacapulco.com/" "http://www.streaming.net.mx/tvacapulco.ram" +pladdurl2 "Mexico | Unknown | 110 | TV Activa | | http://www.tvactiva.com/" "http://www.tvactiva.com:9500/listen.pls" +pladdurl2 "Mexico | Unknown | 141 | TV de la Frontera | Canal 5 from Chihuahua | http://www.xejtv.com" "http://64.62.164.200/siscodi-siscodi-250" +pladdurl2 "Mexico | Music | 300 | TV de Mente | Rock music | http://www.tvdemente.com.mx" "rtsp://streaming.tvdemente.com.mx:554/broadcast/envivo_1.rm" +pladdurl2 "Mexico | Education | 270 | Universidad Canal 1 | University TV from Monterrey | http://ruv.itesm.mx/" "rtsp://200.23.149.201/uvlive1.smi" +pladdurl2 "Mexico | Music | 450 | VideoRola | Music TV | http://www.videorola.com.mx/" "rtsp://200.52.193.75:554/encoder/videorola.rm?cloakport=6060,554,7070" +pladdurl2 "Mongolia | News | 100 | TV 9 | News TV | http://www.tv9.mn/" "rtsp://202.180.220.16:554/broadcast/mn.rm" +pladdurl2 "Mozambique | Local | 40 | TV Mana | Local TV from Maputo | http://www.manasat.com/php/manasat/modules.php?name=Tv_Mana_Mocambique_Online" "http://194.79.31.247/Africa" +pladdurl2 "Mozambique | Local | 40 | TV Mana | Local TV from Maputo | http://www.manasat.com/php/manasat/modules.php?name=Tv_Mana_Mocambique_Online" "http://194.79.31.247/MANASATEU128" +pladdurl2 "Nepal | General | 273 | Nepal 1 TV | General TV station | http://www.nepal1tv.com/" "mms://64.62.166.162/nepal" +pladdurl2 "Netherlands | Unknown | 500 | 101 TV | Various programs | http://portal.omroep.nl/nederland4" "http://cgi.omroep.nl/cgi-bin/wmlive?bnn101tv-sb.asx" +pladdurl2 "Netherlands | News | 523 | AT5 | Local news from Amsterdam | http://www.at5.nl/videoall.asp" "mms://at5.streamonline.nl/at5" +pladdurl2 "Netherlands | News | 500 | Business Class | Recorded business news | http://www.rtl.nl/financien/businessclass/" "mms://82.201.41.3/businessclass/laatste_uitzending.wmv" +pladdurl2 "Netherlands | Unknown | 200 | DDS | Experimental TV, not always online | http://live.dds.nl/" "http://live.dds.nl/1.ram" +pladdurl2 "Netherlands | Unknown | 81 | DDS | Experimental TV | http://live.nu/" "http://live.dds.nl/4.ram" +pladdurl2 "Netherlands | Web TV | 800 | Dier en natuur TV | Web TV. Selection of AVRO animal | http://www.avrodierennatuurtv.nl/" "http://wm1.avro.jet-stream.nl/avro=live802" +pladdurl2 "Netherlands | Education | 391 | ETV | Local educational TV from Rotterdam | http://www.etv.nl" "mms://mediastream.intermax.nl/etv-live" +pladdurl2 "Netherlands | Religious | 791 | Geloven (NCRV) | Christian TV | http://www.ncrv.nl/geloven" "http://livemedia2.omroep.nl/ncrv_geloven-bb" +pladdurl2 "Netherlands | Unknown | 800 | Hilversum best (Hilversum Best) | Various programs from all time | http://portal.omroep.nl/hilversumbest/best" "mms://livemedia2.omroep.nl/nos_hilversumbest-bb" +pladdurl2 "Netherlands | Unknown | 800 | Hilversum best (Hilversum Best) | Various programs from all time | http://portal.omroep.nl/hilversumbest/best" "mms://livemedia.omroep.nl/nos_hilversumbest-bb" +pladdurl2 "Netherlands | Children | 500 | KRO - Kindertijd | Program for children | http://kindertijd.kro.nl/" "http://cgi.omroep.nl/cgi-bin/wmlive?krokindertijd-sb.asx" +pladdurl2 "Netherlands | Unknown | 700 | KRO (opvoeden doe je zo) | Programs about child | http://opvoedendoejezo.kro.nl/" "mms://livemedia2.omroep.nl/kroopvoeden-bb" +pladdurl2 "Netherlands | Movie trailers | 750 | Maxx-xs | Movie Trailers | http://www.maxx-xs.nl/" "mms://62.204.69.103/home_channel" +pladdurl2 "Netherlands | Movie trailers | 750 | Maxx-xs | Movie Trailers | http://www.maxx-xs.nl/" "mms://62.204.69.104/home_channel" +pladdurl2 "Netherlands | Web TV | 800 | Museum TV | Web TV. Selection of items from the Dutch Art | http://www.museumtv.nl/" "http://wm1.avro.jet-stream.nl/avro=live801" +pladdurl2 "Netherlands | Education | 800 | Nederland-e (Nederland E) | Educational channel (Omroep.nl) | http://www.omroep.nl/themakanaal/player/nederland-e.html" "mms://livemedia2.omroep.nl/teleacnederlande-bb" +pladdurl2 "Netherlands | Education | 800 | Nederland-e (Nederland E) | Educational channel (Omroep.nl) | http://www.omroep.nl/themakanaal/player/nederland-e.html" "mms://livemedia.omroep.nl/teleacnederlande-bb" +pladdurl2 "Netherlands | Children | 1550 | Nickelodeon | TV for children | http://www.nickelodeon.nl/" "http://streams.mtvnetworks.nl/cgi-bin/reflector.cgi?stream=nick_high" +pladdurl2 "Netherlands | News | 500 | NOS Jeugd journaal | News For Kids | http://www.nos.nl/jeugdjournaal/voorpagina/" "http://cgi.omroep.nl/cgi-bin/streams?/tv/nos/jeugdjournaal/bb.laatste.asf;embed=1" +pladdurl2 "Netherlands | News | 450 | NOS Journaal | Recordings of the NOS News | http://www.nos.nl/nosjournaal/archief/" "http://cgi.omroep.nl/cgi-bin/streams?/tv/nos/journaal/bb.laatste.asf" +pladdurl2 "Netherlands | News | 450 | NOS Journaal | Recordings of the NOS News | http://www.nos.nl/nosjournaal/archief/" "http://cgi.omroep.nl/cgi-bin/streams?/nos/nieuws/tv-journaal_20u.wmv" +pladdurl2 "Netherlands | News | 800 | NOS Journaal | NOS news 24/7 365! | http://www.nos.nl/nosjournaal/archief" "mms://livemedia2.omroep.nl/nosjournaal24-bb" +pladdurl2 "Netherlands | Unknown | 542 | NostalgieNet | Nostalgic TV material | http://www.nostalgienet.nl/" "mms://213.75.12.108/encoder11" +pladdurl2 "Netherlands | Religious | 800 | Omega TV (Omega TV) | Christian channel | http://www.omegatv.nl" "mms://livemedia2.omroep.nl/eoomega-bb" +pladdurl2 "Netherlands | Religious | 800 | Omega TV (Omega TV) | Christian channel | http://www.omegatv.nl" "mms://livemedia.omroep.nl/eoomega-bb" +pladdurl2 "Netherlands | Regional TV | 147 | Omroep Gelderland | Regional TV station | http://www.omroepgelderland.nl/" "http://ms.stream.garnierprojects.com/tvgelderland?MSWMExt=.asf" +pladdurl2 "Netherlands | Regional TV | 1119 | Omroep Zeeland | Regional Television | http://www.omroepzeeland.nl/" "mms://stream.zeelandnet.nl/omroepzeeland" +pladdurl2 "Netherlands | Local | 152 | Oog TV | Local TV from Groningen | http://www.oogtv.nl/" "http://wm1.gemgron.jet-stream.nl/oogtv=live1" +pladdurl2 "Netherlands | Unknown | 320 | PI6ATV | Amateur TV repeater from Ijsselstein | http://www.pi6atv.com/" "mms://live0.pi6atv.com/pi6atv" +pladdurl2 "Netherlands | Unknown | 320 | PI6ATV | Amateur TV repeater from Ijsselstein | http://www.pi6atv.com/" "http://live0.pi6atv.com/pi6atv" +pladdurl2 "Netherlands | Unknown | 791 | Politiek 24 | Political TV | http://www.nos.nl/gfx/politiek24/" "http://livemedia2.omroep.nl/nospolitiek24-bb" +pladdurl2 "Netherlands | Regional TV | 331 | Regio 22 | Regional TV based in Hoorn | http://www.regio22.nl/" "mms://regio22.streamonline.nl/regio22" +pladdurl2 "Netherlands | Local | 320 | RNN7 TV | Local TV from Zuid Holland | http://www.rnn7.nl/" "http://streamers.at.sara.garnierprojects.com/rnn7" +pladdurl2 "Netherlands | News | 800 | RTLZ | Live financial news (only during office times, GMT) | http://www.rtl.nl/financien/rtlz/video/" "http://rtlztv.rtl.nl/rtlzbroad?MSWMExt=.asf" +pladdurl2 "Netherlands | News | 800 | RTLZ | Live financial news (only during office times, GMT) | http://www.rtl.nl/financien/rtlz/video/" "http://rtlztv.rtl.nl/rtlznarrow" +pladdurl2 "Netherlands | Music | 310 | RTV Channel | RTV Channel is the music entertainment industry online | http://www.rtvchannel.tv/" "mms://www.rtvchannel.tv:8080" +pladdurl2 "Netherlands | Regional TV | 300 | RTV Drenthe | Regional TV from Drenthe | http://www.rtvdrenthe.nl/" "mms://rtvvideo.tmade.nl" +pladdurl2 "Netherlands | Regional TV | 270 | RTV Noord | Regional TV from Groningen | http://www.tvnoord.nl/home/home_video.asp" "mms://media.rtvnoord.nl/tvrtvnoord" +pladdurl2 "Netherlands | Regional TV | 270 | RTV Noord | Regional TV from Groningen | http://www.tvnoord.nl/home/home_video.asp" "mms://media.exception.nl/tvrtvnoord" +pladdurl2 "Netherlands | Regional TV | 400 | RTV Noord Holland | Regional TV station which broadcasts the NOS | http://www.rtvnh.nl" "mms://stream.rtvnh.nl/TVNH/" +pladdurl2 "Netherlands | Regional TV | 520 | RTV Oost | Regional TV station | http://www.rtvoost.nl/" "mms://media.rtvoost.nl/TVOost" +pladdurl2 "Netherlands | Local | 530 | RTV West | Local TV from Zuid-Holland | http://www.rtvwest.nl" "http://live-wm.residentie.net/tvwest?MSWMExt=.asf" +pladdurl2 "Netherlands | General | 750 | Sport TV | General sports channel | http://www.tv.sport.nl/" "mms://rr.ubf.jet-stream.nl/nocnsf=channel1" +pladdurl2 "Netherlands | Sports | 750 | Sport TV | Basketball sports channel | http://www.tv.sport.nl/" "mms://rr.ubf.jet-stream.nl/nocnsf=channel2" +pladdurl2 "Netherlands | Sports | 750 | Sport TV | Hockey sports channel | http://www.tv.sport.nl/" "mms://rr.ubf.jet-stream.nl/nocnsf=channel4" +pladdurl2 "Netherlands | Sports | 750 | Sport TV | Korfbal sports channel | http://www.tv.sport.nl/" "mms://rr.ubf.jet-stream.nl/nocnsf=channel5" +pladdurl2 "Netherlands | Sports | 750 | Sport TV | Volleyball sports channel | http://www.tv.sport.nl/" "mms://rr.ubf.jet-stream.nl/nocnsf=channel6" +pladdurl2 "Netherlands | Sports | 750 | Sport TV | Waterpolo sports channel | http://www.tv.sport.nl/" "mms://rr.ubf.jet-stream.nl/nocnsf=channel7" +pladdurl2 "Netherlands | Sports | 750 | Sport TV | Handbal sports channel | http://www.tv.sport.nl/" "mms://rr.ubf.jet-stream.nl/nocnsf=channel3" +pladdurl2 "Netherlands | Children | 450 | Sugababes TV | Web-based TV for youngsters | http://www.sbtv.nl/" "mms://STREAM-lb.biboptv.nl/SugababesTV" +pladdurl2 "Netherlands | Shopping | 780 | Tien | Commercial TV station | http://www.tien.tv/" "http://www.garnierstreamingmedia.com/asx/talpastream1.asp" +pladdurl2 "Netherlands | Music | 1500 | TMF | The Music Factory (only available in The | http://www.tmf.nl" "mms://213.75.12.78/tmf_high" +pladdurl2 "Netherlands | Music | 800 | Tros Sterren | Dutch music | http://www.sterren.nl/" "mms://livemedia2.omroep.nl/trossterrennl-bb" +pladdurl2 "Netherlands | Regional TV | 500 | TV Limburg | Regional TV from Limburg | http://www.tvl.nl/" "http://194.187.44.69/tvl?MSWMExt=.asf" +pladdurl2 "Netherlands | Regional TV | 530 | TV West | Regional TV from Zuid-Holland | http://www.rtvwest.nl" "http://live-wm.residentie.net/tvwest?MSWMExt=.asf" +pladdurl2 "Netherlands | Unknown | 791 | Vara Humor | Humoristic TV | http://omroep.vara.nl/HumorTV.1618.0.html" "http://cgi.omroep.nl/cgi-bin/wmlive?varahumor-bb.asx" +pladdurl2 "Netherlands | Documentaries | 800 | VPRO (geschiedenis) | Documentaries and historic TV | http://geschiedenis.vpro.nl/" "mms://livemedia.omroep.nl/vprogeschiedenis-bb" +pladdurl2 "Netherlands | Sports | 740 | Wheelz TV | Web TV (racing sports) | http://www.wheelztv.nl/" "http://www.garnierstreamingmedia.com/asx/Wheelz.asp" +pladdurl2 "Netherlands | Unknown | 250 | WorldMadeChannel | Interactive TV channel broadcasting home video & | http://www.worldmadechannel.tv/eng/sheld1.php" "mms://streams.hosting.nob.nl/wmc" +pladdurl2 "Netherlands | Children | 1000 | Zapperz TV | TV for the younger generation | http://www.zapperz.nl" "http://zapperz.streaming.true.nl/zapperzlive" +pladdurl2 "Netherlands | Community | 800 | Zazaro TV | TV channel dedicated to the urban community and youth | http://www.zazaro.com/ztv/" "http://wm1.streamzilla.jet-stream.nl/zazaro=live" +pladdurl2 "Netherlands | Community | 800 | Zazaro TV | TV channel dedicated to the urban community and youth | http://www.zazaro.com/ztv/" "mms://wm1.streamzilla.jet-stream.nl/zazaro/fashion trailer.wmv" +pladdurl2 "New zealand | Weather | 256 | One News | Weather forecast | http://tvnz.co.nz/" "mms://media.tvnz.co.nz/news/2006/flyby1_128k.wmv?http://images.tvnz.co.nz/tvnz_video/windows/weather/flyby1_128k.asx" +pladdurl2 "New zealand | Religious | 384 | Shine TV (Shine TV) | National Christian Television | http://www.shinetv.co.nz/" "mms://ac1.streaming.net.nz/shinetv-384" +pladdurl2 "New zealand | Religious | 384 | Shine TV (Shine TV) | National Christian Television | http://www.shinetv.co.nz/" "mms://ac1-bak.streaming.net.nz/shinetv-384" +pladdurl2 "New zealand | Religious | 384 | Shine TV (Shine TV) | National Christian Television | http://www.shinetv.co.nz/" "mms://ac2-bak.streaming.net.nz/shinetv-384" +pladdurl2 "New zealand | Religious | 384 | Shine TV (Shine TV) | National Christian Television | http://www.shinetv.co.nz/" "mms://ac1.streaming.net.nz/shinetv-128" +pladdurl2 "New zealand | Religious | 384 | Shine TV (Shine TV) | National Christian Television | http://www.shinetv.co.nz/" "mms://ac1-bak.streaming.net.nz/shinetv-128" +pladdurl2 "New zealand | Religious | 384 | Shine TV (Shine TV) | National Christian Television | http://www.shinetv.co.nz/" "mms://ac2-bak.streaming.net.nz/shinetv-128" +pladdurl2 "Nicaragua | News | 102 | Canal 2 | Leading Network in Nicaragua with recorded news | http://www.canal2tv.com" "mms://Televicentro1.serverroom.us/televicentro" +pladdurl2 "Nicaragua | Unknown | 200 | Canal 8 | Second leading television network from Managua, Nicaragua, | http://www.telenica.com.ni/" "mms://200.9.190.246:8080/" +pladdurl2 "Nicaragua | Unknown | 200 | Canal 8 | Second leading television network from Managua, Nicaragua, | http://www.telenica.com.ni/" "http://www.telenica.com.ni//multimedia/videos/ninde1.wmv" +pladdurl2 "Nicaragua | Unknown | 200 | Canal 8 | Second leading television network from Managua, Nicaragua, | http://www.telenica.com.ni/" " http://www.telenica.com.ni//multimedia/videos/ninde4.wmv" +pladdurl2 "Nicaragua | Unknown | 200 | Canal 8 | Second leading television network from Managua, Nicaragua, | http://www.telenica.com.ni/" "http://www.telenica.com.ni//multimedia/videos/ninde5.wmv" +pladdurl2 "Niger | News | 50 | RTN Tele Sahel | Recorded news | http://www.ortn-niger.com/tsa.php" "http://www.ortn-niger.com/video/jtsa1.wmv" +pladdurl2 "Nigeria | Religious | 148 | Loveworld | Christian TV station | http://www.loveworldchristiannetwork.org" "mms://70.85.72.122/besa" +pladdurl2 "Nigeria | Religious | 148 | Loveworld | Christian TV station | http://www.loveworldchristiannetwork.org" "mms://69.9.165.66:8018" +pladdurl2 "Norway | News | 300 | NRK | Recorded news broadcasts available | http://www1.nrk.no/nett-tv/forside" "mms://media00.nrk.no/mms2/nydi/AutoEnc/mn1840.wmv" +pladdurl2 "Norway | Religious | 500 | TV Visjon Norge | Christian TV | http://www.visjonnorge.com/" "http://wm-live.crossnet.net/Visjonnorge" +pladdurl2 "Oman | National TV | 45 | TV Oman | National TV Station. Check schedule for live | http://www.oman-tv.gov.om/tveng/default.asp" "mms://82.178.28.24/MOIvideo" +pladdurl2 "Pakistan | General | 100 | GEO TV | General TV station | http://www.pakistanvision.com/site/" "rtsp://208.53.138.63:7070/pv/smil/live/tv2.smil" +pladdurl2 "Pakistan | Unknown | 500 | IIPC | Islamitic TV channel | http://www.iipc.tv/" "mms://202.69.56.46/test" +pladdurl2 "Pakistan | Unknown | 100 | PTV 1 | | http://www.pakistanvision.com/" "rtsp://real1.pakistanvision.tv:7070/pv/smil/live/tv1.smil" +pladdurl2 "Pakistan | Movies | 102 | PTV 2 | Pakistani Entertainment, watch movies, songs, talkshows, | http://www.pakistanvision.com/" "rtsp://real1.pakistanvision.tv:7070/pv/smil/live/tv2.smil" +pladdurl2 "Palestinia | Unknown | 50 | Alameel TV | | http://www.alamal-tv.com/" "mms://212.33.124.20:8080/" +pladdurl2 "Palestinia | Satellite TV | 225 | PSCTV | Palestinian Satellite TV | http://www.psctv.com/" "http://www.psctv.com:8080/ramgen/encoder/live.rm" +pladdurl2 "Panama | Religious | 141 | Hosanna TV | Christian television station broadcasting from 6 am EST | http://www.hosannavision.com/" "mms://markoni.netpatio.com/hosanna/hosanna" +pladdurl2 "Panama | Unknown | 45 | TVN | Live from Panama City (not always online) | http://www.tvn-2.com" "mms://201.224.59.114/tvnlive" +pladdurl2 "Panama | Unknown | 45 | TVN | Live from Panama City (not always online) | http://www.tvn-2.com" "mms://cwimedia1.cwpanama.net/tvnlive" +pladdurl2 "Peru | General | 80 | Frequencia Latina | General TV station from Lima. Not always | http://www.frecuencialatina.com.pe/" "mms://media.frecuencialatina.com/FRECUENCIA" +pladdurl2 "Peru | General | 90 | Tevesur Canal 9 | General TV Station from Cusco | http://www.tevesur.com/" "mms://200.121.57.182:8080/" +pladdurl2 "Peru | News | 100 | TNP | Peru`s national TV station mainly featuring News,Talk,cultural | http://www.tnp.com.pe/" "rtsp://216.244.140.172:554/broadcast/video7.rm" +pladdurl2 "Philippines | Sports | 273 | ESPN | Sports TV | http://www.espnstar.com/" "mms://221.10.254.208/ESPN" +pladdurl2 "Philippines | Sports | 273 | ESPN | Sports TV | http://www.espnstar.com/" "mms://218.69.107.45/ESPN/live" +pladdurl2 "Philippines | Sports | 273 | ESPN | Sports TV | http://www.espnstar.com/" "mms://218.67.245.5/ESPN" +pladdurl2 "Philippines | Sports | 273 | ESPN | Sports TV | http://www.espnstar.com/" "mms://218.67.245.12/espn" +pladdurl2 "Philippines | Sports | 273 | ESPN | Sports TV | http://www.espnstar.com/" "mms://live2.xatvs.com/Station1" +pladdurl2 "Philippines | Sports | 273 | ESPN | Sports TV | http://www.espnstar.com/" "mms://live1.xatvs.com/Station1" +pladdurl2 "Philippines | Unknown | 128 | The Old Path | Live from Manila | http://www.theoldpath.tv/" "http://64.151.87.201/livefrommedia3" +pladdurl2 "Philippines | Unknown | 115 | Truth Caster | Discussion of truths about our present milieu, | http://www.truthcaster.com/" "http://64.151.87.201/truthcaster" +pladdurl2 "Philippines | Public TV | 75 | UNTV | Balanced, quality programming, value-laden shows, and public | http://www.untvweb.com/video/index.aspx" "http://64.151.87.201/untvfromnetwork2" +pladdurl2 "Poland | Music | 150 | 4Fun TV | Music TV | http://telewizja.4fun.tv/" "mms://80.253.104.87:8082" +pladdurl2 "Poland | General | 350 | Interia | General TV station | http://interia.pl/" "rtsp://streamlive.interia.pl/interiatv400" +pladdurl2 "Poland | Music | 240 | Iteria TV | Populair music | http://www.interia.pl" "http://streamlive.interia.pl/interiatv400" +pladdurl2 "Poland | Unknown | 140 | ITV | Live from Warsaw | http://www.itv.net.pl/" "mms://stream.mni.pl/ITV" +pladdurl2 "Poland | Shopping | 207 | Podroze TV | Commercial travel channel | http://www.podroze.tv" "mms://stream3.radiopol.com/podrozetv" +pladdurl2 "Poland | General | 256 | Polsat | General TV station | http://www.polsat.com.pl/" "mms://80.253.104.85:8082" +pladdurl2 "Poland | Music | 200 | RFM Maxxx TV | Populair music | http://rmfmaxxx.pl/" "mms://89.185.239.4/rmfmaxxx_tv200" +pladdurl2 "Poland | Music | 200 | RFM Maxxx TV | Populair music | http://rmfmaxxx.pl/" "mms://195.28.78.54/rmfmaxxx_tv200" +pladdurl2 "Poland | Unknown | 50 | SEJM | Parliament | http://www.sejm.gov.pl/" "rtsp://195.187.137.125/broadcast/m_sejm.rm" +pladdurl2 "Poland | Unknown | 144 | Toya TV | TV from Lodz | http://www.toya.net.pl" "http://moya.toya.net.pl/images/wmv/internetowe-poszukiwania01.wmv" +pladdurl2 "Poland | Weather | 196 | Toya TV | Weather forecast for Lodz | http://www.toya.net.pl" "http://www.toya.net.pl/~lokalny/multimedia/pogoda.wmv" +pladdurl2 "Poland | Local | 1400 | Toya TV | Local TV | http://moya.toya.net.pl/" "mms://217.113.224.22/TVToya" +pladdurl2 "Poland | Regional TV | 248 | TTK | Regional Program from Tarnow | http://www.star.com.pl" "mms://stream.star.net.pl:8080/" +pladdurl2 "Poland | News | 93 | TV Biznes | News and Business TV | http://www.tvbiznes.pl/?p=14" "http://212.126.28.45:886/tv200_wmp.asf" +pladdurl2 "Poland | News | 500 | TV Polonia | Recorded news available on website | http://www.tvp.pl/" "mms://80.253.104.84:8081" +pladdurl2 "Poland | Religious | 200 | TV Trwam | Religious TV channel | http://www.radiomaryja.pl/" "mms://195.94.205.211/Trwam" +pladdurl2 "Poland | Web TV | 200 | TVFLY | Web TV with pop and hip hop video clips | http://www.tvfly.com/" "mms://tvfly.server-tv.com/TVFLY" +pladdurl2 "Poland | Unknown | 500 | TVN GRA | Call TV with interactive games, quizes and more | http://tvngra.pl/" "mms://stream.onet.pl/tvngra.asf" +pladdurl2 "Poland | Unknown | 440 | TVP Cultura | Culture Television | http://ww6.tvp.pl/4101.dzialy" "mms://80.253.104.94:8081/" +pladdurl2 "Poland | Music | 225 | Wapster TV | Populair music | http://www.wapster.pl/" "mms://nadajnik.wapster.pl/wapstertv" +pladdurl2 "Poland | News | 335 | WPTV Biznes (WPTV - Biznes) | Financial and business news | http://wptv.wp.pl/biznes.html" "http://i.wp.pl/a/f/wmv/11263/load.wmv" +pladdurl2 "Poland | News | 335 | WPTV Biznes (WPTV - Biznes) | Financial and business news | http://wptv.wp.pl/biznes.html" "mms://av.wp.pl/wptv-biznes" +pladdurl2 "Poland | General | 335 | WPTV Entertainment (WPTV - Rozrywka) | General entertainment. Recorded streams | http://wptv.wp.pl/rozrywka.html" "http://i.wp.pl/a/f/wmv/11265/lad.wmv" +pladdurl2 "Poland | General | 335 | WPTV Entertainment (WPTV - Rozrywka) | General entertainment. Recorded streams | http://wptv.wp.pl/rozrywka.html" "mms://av.wp.pl/wptv-rozrywka" +pladdurl2 "Poland | Unknown | 335 | WPTV Erotyka (WPTV - Erotyka) | Erotic channel | http://wptv.wp.pl/erotyka.html" "http://i.wp.pl/a/f/wmv/11265/lad.wmv" +pladdurl2 "Poland | Unknown | 335 | WPTV Erotyka (WPTV - Erotyka) | Erotic channel | http://wptv.wp.pl/erotyka.html" "mms://av.wp.pl/wptv-erotyka" +pladdurl2 "Poland | News | 335 | WPTV News (WPTV - News) | News station | http://wptv.wp.pl/news.html" "http://i.wp.pl/a/f/wmv/11265/lad.wmv" +pladdurl2 "Poland | News | 335 | WPTV News (WPTV - News) | News station | http://wptv.wp.pl/news.html" "mms://av.wp.pl/wptv-news" +pladdurl2 "Portugal | Unknown | 270 | Canal Parlamento | Live from the Portugese Parliament | http://www.canal.parlamento.pt/" "mms://80.251.166.34/live" +pladdurl2 "Portugal | Religious | 128 | Mana Sat | Christian channel | http://www.manasat.com/" "mms://wma2.globcos.ch/MANASATEU128" +pladdurl2 "Portugal | Religious | 128 | Mana Sat | Christian channel | http://www.manasat.com/" "mms://wma2.globcos.ch/MANASATEU32" +pladdurl2 "Portugal | Religious | 86 | Mana Sat 2 | Christian channel | http://www.manasat.com/" "http://194.79.31.247/MANASAT2EU" +pladdurl2 "Portugal | Religious | 86 | Mana Sat 2 | Christian channel | http://www.manasat.com/" "http://194.79.31.247/MANASATEU32" +pladdurl2 "Portugal | General | 45 | RTP | General TV station | http://www.rtp.pt" "rtsp://64.224.17.174:554/encoder/webacores.net/rtpa" +pladdurl2 "Portugal | General | 900 | RTP International | General TV station | http://www.rtp.pt/rtpi/" "http://us-stream-csc05.terra.com/jtvmib_enrtphi" +pladdurl2 "Portugal | News | 612 | TV Ciencia | Recorded news | http://www.tvciencia.pt/ctvc01.asp?action=prog&pl=rpl&sp=256" "mms://video-wm.tvciencia.pt/video/tvcnews_256.wmv" +pladdurl2 "Portugal | Unknown | 150 | TV Net | TV station from Lissabon | http://www.tvnet.com.pt/" "mms://wm-live.abacast.com/tvnet-video1-250" +pladdurl2 "Portugal | News | 35 | TVI | News station | http://www.tvi.iol.pt/mediacenter/media_live.php?live=2" "rtsp://mcmreal.mediacapital.pt/encoder/itv1.rm" +pladdurl2 "Portugal | Unknown | 350 | Yourvida | Astrology | http://www.yourvida.com/" "mms://media.stream-music.net/yourvida" +pladdurl2 "Portugal | Unknown | 350 | Yourvida | Astrology | http://www.yourvida.com/" "mms://media.stream-music.net/yourvida1" +pladdurl2 "Puerto rico | Unknown | 93 | CDM | Located in Cadena De Miligro | http://cdminternacional.com/" "mms://38.114.38.10:80/cdminternacional?MSWMExt=.asf" +pladdurl2 "Puerto rico | Religious | 100 | Mega TV | Christian TV station | http://www.megatvpr.com/" "http://st.unored.com/megatv" +pladdurl2 "Puerto rico | Community | 300 | Motivando TV | Community TV from San Juan | http://www.motivando.com" "http://st7.unored.com/motivandotv" +pladdurl2 "Puerto rico | Religious | 100 | NCN | Christian family TV | http://www.ncntelevision.com/" "mms://64.117.39.5:4557/" +pladdurl2 "Puerto rico | Religious | 45 | Pabellon de Victoria | Christian TV station | http://www.pvictoria.com/" "mms://st5.unored.com/pvictoria" +pladdurl2 "Puerto rico | Unknown | 50 | SBN | Senda Broadcasting Network | http://www.sbnnetwork.com/" "mms://st5.unored.com/sbn" +pladdurl2 "Puerto rico | Unknown | 34 | Tele Triunfo | TV from Guayama, San Juan | http://www.teletriunfo.com/" "http://st3.unored.com/ttriunfo" +pladdurl2 "Puerto rico | Religious | 144 | Teleadoracion | Christian channel | http://www.teleadoracion.com/" "http://st.unored.com/teleadoracion" +pladdurl2 "Puerto rico | Unknown | 45 | Televicentro | TV station licensed by the Federal Communications | http://www.televicentropr.com/" "mms://wms.wapa.tv/tv100k" +pladdurl2 "Puerto rico | Unknown | 45 | Televicentro | TV station licensed by the Federal Communications | http://www.televicentropr.com/" "mms://wms.wapa.tv/tv56k" +pladdurl2 "Puerto rico | Unknown | 45 | Televicentro | TV station licensed by the Federal Communications | http://www.televicentropr.com/" "mms://mm.zonai.com/doppler" +pladdurl2 "Puerto rico | Music | 141 | Videomax | Reggaeton music from San Juan | http://www.linkeao.com/" "http://ns1.linkeao.com/videomax" +pladdurl2 "Qatar | Sports | 50 | Al Dawri | Sports TV | http://wwitv.com/unknown.htm" "mms://216.93.170.69/live" +pladdurl2 "Qatar | Unknown | 50 | Al Jazeera | English version of Al Jazeera | http://english.aljazeera.net" "http://europe.real.com:80/smil/aljazeera_us_lo.smil" +pladdurl2 "Romania | General | 252 | Antena 1 | General TV station. Archived news available | http://www.antena1.ro/s/webcast/live_f.php" "mms://82.76.253.22/Antena1Live" +pladdurl2 "Romania | News | 376 | Antena 3 | Recorded news available on website | http://www.antena3.ro/" "mms://82.76.253.18/antena3" +pladdurl2 "Romania | Gaming | 757 | Arena TV | Gaming TV | http://www.arenatv.ro/" "mms://86.35.0.238/ArenaTVstream3a" +pladdurl2 "Romania | Gaming | 757 | Arena TV | Gaming TV | http://www.arenatv.ro/" "mms://194.126.177.177/ArenaTVstream4a" +pladdurl2 "Romania | Music | 500 | Atomic TV | Populair music | http://www.atomictvd.ro/" "mms://86.55.13.70:8300/" +pladdurl2 "Romania | Unknown | 247 | DDTV | | http://www.ddtv.home.ro/" "mms://82.76.12.224:8081/" +pladdurl2 "Romania | News | 374 | Money Channel | Financial news | http://new.themoneychannel.ro/" "mms://streaming.tmctv.ro" +pladdurl2 "Romania | General | 350 | OTV | National TV with political debates and general | http://www.oglinda.home.ro/" "mms://82.76.12.224:8080/" +pladdurl2 "Romania | Music | 620 | Party TV | Music TV | http://www.partytv.ro/" "mms://193.138.97.102:8090" +pladdurl2 "Romania | General | 262 | Realitatea | General TV station | http://www.realitatea.net/" "http://85.186.156.226:8090/realitatea.asf" +pladdurl2 "Romania | National TV | 150 | TVRi (International) | National TV station | http://www.tvr.ro/tv/tvri" "rtsp://212.54.100.35/broadcast/live.rm" +pladdurl2 "Romania | General | 273 | TvRM | General TV station | http://www.tvrm.ro/" "mms://library.radio3net.ro/tvrm" +pladdurl2 "Russian fed. | Unknown | 300 | MIR TV | | http://www.mirtv.ru/" "mms://213.232.226.11/MIRTV_300" +pladdurl2 "Russian fed. | Unknown | 300 | MIR TV | | http://www.mirtv.ru/" "http://www.mirtv.ru/video/1.wmv" +pladdurl2 "Russian fed. | News | 80 | Nash Dom | Recorded news | http://old.pnz.ru/" "http://old.pnz.ru/video/news1.rpm" +pladdurl2 "Russian fed. | Education | 300 | Rambler TV (\"Rambler ÒåëåÑåòü\") | Educational TV | http://www.rambler-tv.ru/online/" "mms://stream02.rambler.ru:80/rambler-tv" +pladdurl2 "Russian fed. | Education | 300 | Rambler TV (\"Rambler ÒåëåÑåòü\") | Educational TV | http://www.rambler-tv.ru/online/" "mms://stream02.rambler.ru/rambler-tv" +pladdurl2 "Russian fed. | News | 350 | RBC TV | Russian news Business TV | http://www.rbc-tv.ru/" "mms://tv.gldn.net/rbc" +pladdurl2 "Russian fed. | News | 230 | RTR Planeta | Television series, news and culture | http://www.rtr-planeta.com/" "mms://video.rfn.ru/rtr-planeta" +pladdurl2 "Russian fed. | Music | 800 | RTVi Muz TV | Music TV with clips | http://tv.rtvi.com/" "http://music.rtvi.ru/bin/asx.pl?br=high" +pladdurl2 "Russian fed. | Music | 800 | RTVi Muz TV | Music TV with clips | http://tv.rtvi.com/" "http://music.rtvi.ru/bin/asx.pl" +pladdurl2 "Russian fed. | Education | 273 | SGU TV | Lectures and classes of the university. 24 hours | http://www.sgutv.ru/" "mms://www.sgutv.ru:7300/" +pladdurl2 "Russian fed. | Education | 273 | SGU TV | Lectures and classes of the university. 24 hours | http://www.sgutv.ru/" "mms://www.sgutv.ru/hsgutv" +pladdurl2 "Russian fed. | Music | 270 | Special Radio | Rock music | http://www.specialradio.ru" "mms://81.13.20.10/sr_video" +pladdurl2 "Russian fed. | National TV | 141 | TBN | National TV station | http://www.tbnrussia.org/" "mms://195.182.144.26:3049/" +pladdurl2 "Russian fed. | Documentaries | 800 | TV + | Current affairs, documentaries, lifestyle and sport | http://www.tv-plus.ru/" "mms://217.174.250.209/TV+" +pladdurl2 "Russian fed. | General | 295 | TV RB | General TV station | http://www.tv-rb.ru/" "mms://media.tv-rb.ru:8080/" +pladdurl2 "Russian fed. | News | 250 | TV SME | News TV from Moscow | http://tvsme.ru/" "http://mms.tvsme.ru/high" +pladdurl2 "Russian fed. | General | 250 | Vesti 24 | State Television | http://www.vesti24.ru/" "http://video.rfn.ru/vesti_24" +pladdurl2 "Russian fed. | Music | 116 | Wim TV 1 | New music videos | http://www.wimstream.com/" "mms://194.135.105.209/tv1" +pladdurl2 "Russian fed. | Music | 116 | Wim TV 2 | New music videos | http://www.wimstream.com/" "mms://194.135.105.209/tv2" +pladdurl2 "Russian fed. | Music | 116 | Wim TV 3 | New music videos | http://www.wimstream.com/" "mms://194.135.105.209/tv3" +pladdurl2 "Russian fed. | Music | 116 | Wim TV 4 | New music videos | http://www.wimstream.com/" "mms://194.135.105.209/tv4" +pladdurl2 "Russian fed. | General | 331 | Zahav TV | General TV station | http://www.zahav.ru/" "mms://213.8.138.42/zahavru" +pladdurl2 "Saudi arabia | Unknown | 100 | Alekbariya | | http://www.alekhbariya.tv" "http://easylink.playstream.com/winlive/Tv-ch2b.wvx" +pladdurl2 "Saudi arabia | Unknown | 50 | Iqraa TV | Islamic channel | http://www.iqraa-tv.net/" "rtsp://us.nbn.nilehelpdesk.com/broadcast/iqraa/iqraa.smil" +pladdurl2 "Saudi arabia | Unknown | 100 | Islah TV | Political programming (Saudi opposition based in the | http://www.islahi.co.uk/" "mms://66.172.3.142/3" +pladdurl2 "Saudi arabia | General | 225 | SAT TV | State television (from the Royal Embassy in Washington | http://www.saudiembassy.net/" "http://www.saudiembassy.net/Media/..\\Realvdo\\live.ram" +pladdurl2 "Saudi arabia | General | 141 | Saudi 1 | General TV station | http://www.saudi1.tv" "mms://70.85.8.26/Saudi1" +pladdurl2 "Serbia&mont. | News | 100 | B92 | News headlines | http://www.b92.net/" "http://www.b92.net/tv/program/stream.ram" +pladdurl2 "Serbia&mont. | General | 100 | RTS Uzivo | State Television | http://www.rts.co.yu" "http://www.rts.co.yu/rts1uzivo.ram" +pladdurl2 "Serbia&mont. | General | 100 | RTS1 | General TV station with sports and news | http://www.rts.co.yu/" "http://www.rts.co.yu/rts1uzivo.ram" +pladdurl2 "Serbia&mont. | General | 100 | RTS2 | State Television | http://www.rts.co.yu/" "http://www.rts.co.yu/rts2uzivo.ram" +pladdurl2 "Serbia&mont. | News | 273 | RTV Pink | Private news station with archived news | http://www.rtvpink.com/" "mms://beotelmedia.beotel.net/rtvpink" +pladdurl2 "Slovakia | News | 330 | TA3 | News channel | http://www.ta3.com/sk/archiv/" "http://wmv.the.sk/ta3live" +pladdurl2 "Slovenia | Unknown | 1400 | Paprika | Privat TV station with entertainment | http://www.paprika.tv/" "mms://wmedia.siol.net/paprika/live" +pladdurl2 "Slovenia | Music | 1200 | Play TV | Music TV station | http://www.playtv.tv/" "mms://212.18.63.144/playtv" +pladdurl2 "Slovenia | Regional TV | 450 | TV Koper | Regional Television | http://www.rtvslo.si/modload.php?&c_mod=static&c_menu=1053499437" "rtsp://helix10.rtvslo.si/broadcast/kp1.rm" +pladdurl2 "Slovenia | Unknown | 800 | TV Pika | Slovenian Interactive TV | http://www.tvpika.net/" "mms://wmedia.siol.net/tvpika/live" +pladdurl2 "Slovenia | National TV | 225 | TV SLO 1 | National TV station | http://www.rtvslo.si" "rtsp://helix10.rtvslo.si/broadcast/slo1.rm" +pladdurl2 "South africa | Religious | 150 | Divine Truth | Christian channel | http://www.divinetruth.tv/" "mms://win90va.audiovideoweb.com/va90winlive2051" +pladdurl2 "South africa | Unknown | 45 | SABC News | Uploaded: 18:00H South African time (utc/gmt +2) | http://www.sabcnews.co.za" "http://real01.sabcnews.com/sabc3_19h00_video.ram" +pladdurl2 "Spain | Music | 150 | Andalucía TV | Live, programmes from Andalucia: news, music, | http://www.canalsur.es/" "rtsp://emision.canalsur.es/encoder/andaluciatv.rm" +pladdurl2 "Spain | Local | 100 | Aragon Television | Local TV from Aragon | http://www.aragontelevision.es" "mms://217.75.226.246/cartv_tv" +pladdurl2 "Spain | Unknown | 200 | ATEI | TV Educativa Iberoamericana | http://www.ateiamerica.com/" "http://wm.mad.interhost.com/virtualeduca" +pladdurl2 "Spain | Unknown | 200 | ATEI | TV Educativa Iberoamericana | http://www.ateiamerica.com/" "http://wm.mad.interhost.com/ateiod/emipre.wmv" +pladdurl2 "Spain | Local | 512 | Barcelona TV | Local TV (shows a webcamview of Barcelona when it is | http://www.barcelonatv.com/" "http://213.27.152.61/btv" +pladdurl2 "Spain | Local | 300 | Cadena Local | Local TV from Madrid | http://www.localmediatv.com/" "mms://wm.mad.interhost.com/cadenalocal" +pladdurl2 "Spain | Local | 300 | Cadena Local | Local TV from Madrid | http://www.localmediatv.com/" "http://wm.mad.interhost.com/cadenalocal" +pladdurl2 "Spain | Local | 300 | Cadena Local | Local TV from Madrid | http://www.localmediatv.com/" "mms://wm.mad.interhost.com/demanda/w0010015/webpages/congre.wmv" +pladdurl2 "Spain | Local | 300 | Cadena Local | Local TV from Madrid | http://www.localmediatv.com/" "mms://wm.mad.interhost.com/cadenalocal" +pladdurl2 "Spain | Local | 300 | Cadena Local | Local TV from Madrid | http://www.localmediatv.com/" "http://wm.mad.interhost.com/cadenalocal" +pladdurl2 "Spain | Local | 300 | Cadena Local | Local TV from Madrid | http://www.localmediatv.com/" "mms://wm.mad.interhost.com/demanda/w0010015/webpages/congre.wmv" +pladdurl2 "Spain | Local | 300 | Cadena Local | Local TV from Madrid | http://www.localmediatv.com/" "mms://wm.mad.interhost.com/cadenalocal" +pladdurl2 "Spain | Local | 300 | Cadena Local | Local TV from Madrid | http://www.localmediatv.com/" "http://wm.mad.interhost.com/cadenalocal" +pladdurl2 "Spain | Local | 300 | Cadena Local | Local TV from Madrid | http://www.localmediatv.com/" "mms://wm.mad.interhost.com/demanda/w0010015/webpages/congre.wmv" +pladdurl2 "Spain | Local | 300 | Cadena Local | Local TV from Madrid | http://www.localmediatv.com/" "mms://wm.mad.interhost.com/cadenalocal" +pladdurl2 "Spain | Local | 300 | Cadena Local | Local TV from Madrid | http://www.localmediatv.com/" "http://wm.mad.interhost.com/cadenalocal" +pladdurl2 "Spain | Local | 300 | Cadena Local | Local TV from Madrid | http://www.localmediatv.com/" "mms://wm.mad.interhost.com/demanda/w0010015/webpages/congre.wmv" +pladdurl2 "Spain | Local | 300 | Cadena Local | Local TV from Madrid | http://www.localmediatv.com/" "mms://wm.mad.interhost.com/cadenalocal" +pladdurl2 "Spain | Local | 300 | Cadena Local | Local TV from Madrid | http://www.localmediatv.com/" "http://wm.mad.interhost.com/cadenalocal" +pladdurl2 "Spain | Local | 300 | Cadena Local | Local TV from Madrid | http://www.localmediatv.com/" "mms://wm.mad.interhost.com/demanda/w0010015/webpages/congre.wmv" +pladdurl2 "Spain | Local | 300 | Cadena Local | Local TV from Madrid | http://www.localmediatv.com/" "mms://wm.mad.interhost.com/cadenalocal" +pladdurl2 "Spain | Local | 300 | Cadena Local | Local TV from Madrid | http://www.localmediatv.com/" "http://wm.mad.interhost.com/cadenalocal" +pladdurl2 "Spain | Local | 300 | Cadena Local | Local TV from Madrid | http://www.localmediatv.com/" "mms://wm.mad.interhost.com/demanda/w0010015/webpages/congre.wmv" +pladdurl2 "Spain | Local | 300 | Cadena Local | Local TV from Madrid | http://www.localmediatv.com/" "mms://wm.mad.interhost.com/cadenalocal" +pladdurl2 "Spain | Local | 300 | Cadena Local | Local TV from Madrid | http://www.localmediatv.com/" "http://wm.mad.interhost.com/cadenalocal" +pladdurl2 "Spain | Local | 300 | Cadena Local | Local TV from Madrid | http://www.localmediatv.com/" "mms://wm.mad.interhost.com/demanda/w0010015/webpages/congre.wmv" +pladdurl2 "Spain | Local | 300 | Cadena Local | Local TV from Madrid | http://www.localmediatv.com/" "mms://wm.mad.interhost.com/cadenalocal" +pladdurl2 "Spain | Local | 300 | Cadena Local | Local TV from Madrid | http://www.localmediatv.com/" "http://wm.mad.interhost.com/cadenalocal" +pladdurl2 "Spain | Local | 300 | Cadena Local | Local TV from Madrid | http://www.localmediatv.com/" "mms://wm.mad.interhost.com/demanda/w0010015/webpages/congre.wmv" +pladdurl2 "Spain | Local | 300 | Cadena Local | Local TV from Madrid | http://www.localmediatv.com/" "mms://wm.mad.interhost.com/cadenalocal" +pladdurl2 "Spain | Local | 300 | Cadena Local | Local TV from Madrid | http://www.localmediatv.com/" "http://wm.mad.interhost.com/cadenalocal" +pladdurl2 "Spain | Local | 300 | Cadena Local | Local TV from Madrid | http://www.localmediatv.com/" "mms://wm.mad.interhost.com/demanda/w0010015/webpages/congre.wmv" +pladdurl2 "Spain | Local | 300 | Cadena Local | Local TV from Madrid | http://www.localmediatv.com/" "mms://wm.mad.interhost.com/cadenalocal" +pladdurl2 "Spain | Local | 300 | Cadena Local | Local TV from Madrid | http://www.localmediatv.com/" "http://wm.mad.interhost.com/cadenalocal" +pladdurl2 "Spain | Local | 300 | Cadena Local | Local TV from Madrid | http://www.localmediatv.com/" "mms://wm.mad.interhost.com/demanda/w0010015/webpages/congre.wmv" +pladdurl2 "Spain | Local | 300 | Cadena Local | Local TV from Madrid | http://www.localmediatv.com/" "mms://wm.mad.interhost.com/cadenalocal" +pladdurl2 "Spain | Local | 300 | Cadena Local | Local TV from Madrid | http://www.localmediatv.com/" "http://wm.mad.interhost.com/cadenalocal" +pladdurl2 "Spain | Local | 300 | Cadena Local | Local TV from Madrid | http://www.localmediatv.com/" "mms://wm.mad.interhost.com/demanda/w0010015/webpages/congre.wmv" +pladdurl2 "Spain | Local | 300 | Cadena Local | Local TV from Madrid | http://www.localmediatv.com/" "mms://wm.mad.interhost.com/cadenalocal" +pladdurl2 "Spain | Local | 300 | Cadena Local | Local TV from Madrid | http://www.localmediatv.com/" "http://wm.mad.interhost.com/cadenalocal" +pladdurl2 "Spain | Local | 300 | Cadena Local | Local TV from Madrid | http://www.localmediatv.com/" "mms://wm.mad.interhost.com/demanda/w0010015/webpages/congre.wmv" +pladdurl2 "Spain | General | 200 | Canal 29 | General TV station from Vallalodid | http://www.tvcyl.es/" "mms://video.ono.com/tvcyl_c29" +pladdurl2 "Spain | Unknown | 162 | Canal Latino | TV from Las Palmas (Gran Canaria) | http://www.canallatino.tv" "mms://208.53.131.17/canal69" +pladdurl2 "Spain | Religious | 100 | Cetelmon | Christian TV from La Paz | http://www.cetelmon.tv" "http://wagner.serveisweb.com/CE027" +pladdurl2 "Spain | News | 102 | CNN+ | News station | http://www.plus.es/codigo/noticias/noticias.asp" "mms://a1014.l1401540961.c14015.e.lm.akamaistream.net/D/1014/14015/v0001/reflector:40961" +pladdurl2 "Spain | Unknown | 221 | Congreso | Spanish congress | http://www.congreso.es/" "mms://stream2.terra.es/wm2live1" +pladdurl2 "Spain | Local | 100 | EJIDO TV | Local TV from El EJido (Almaria) | http://www.ejidotv.com/" "mms://emision.ejidotv.com:8080/" +pladdurl2 "Spain | Unknown | 248 | El Independiente | TV from Las Palmas (Gran Canaria) | http://www.elindependientedecanarias.com/" "http://wagner.serveisweb.com/TI012?MSWMExt=.asf" +pladdurl2 "Spain | Unknown | 350 | ETB Sat | Basque television, with several programmes in the Basque | http://www.eitb.com/" "http://www.eitb.com/media/etbsat.asp" +pladdurl2 "Spain | Unknown | 350 | ETB Sat | Basque television, with several programmes in the Basque | http://www.eitb.com/" "mms://a217.l881320216.c8813.e.lm.akamaistream.net/D/217/8813/v0001/reflector:20216" +pladdurl2 "Spain | Religious | 100 | Fuego TV | Christian TV station | http://www.fuegotv.eu/" "mms://82.165.237.21:1450/fuegotv" +pladdurl2 "Spain | General | 45 | Granollers TV | General TV station | http://www.granollerstv.com" "mms://pluto.justedit.es/granollerstvlive" +pladdurl2 "Spain | Local | 300 | Guadalajara | Local TV from Guadalajara | http://www.guadalajara.tv/" "mms://217.76.128.22/ba0427.tele" +pladdurl2 "Spain | Local | 141 | Localia TV | Localia TV, a spanish TV local network, with more than | http://www.radiohuesca.com/asp/localia.asp" "http://streaming.wdreams.com/localiatv" +pladdurl2 "Spain | Local | 52 | MIRAm | Local TV from Barcelona | http://www.miramtv.com/" "mms://84.77.246.117:1254/" +pladdurl2 "Spain | Unknown | 248 | Ojos Solidarios | TV from Las Palmas (Gran Canaria) | http://www.ojossolidarios.com/" "mms://wagner.serveisweb.com/OS004" +pladdurl2 "Spain | Local | 250 | Onda Jerez | Local TV of Jerez de la Frontera | http://www.ondajerez.tv" "http://62.43.246.14/Onda-250k" +pladdurl2 "Spain | Local | 250 | Onda Jerez | Local TV of Jerez de la Frontera | http://www.ondajerez.tv" "http://62.43.246.14/Onda-100k" +pladdurl2 "Spain | Local | 171 | Pleamar TV | Local TV from Cadiz | http://www.pleamartv.com/" "http://www.pleamar.tv:8050/;file.nsv" +pladdurl2 "Spain | Unknown | 100 | RTV Insular | TV from Las Palmas (Gran Canaria) | http://www.rtvinsular.com/" "mms://wagner.serveisweb.com/TI013" +pladdurl2 "Spain | Unknown | 96 | Solidaria TV | Family channel | http://www.solidariatv.com/" "mms://solidariatv.interrogacaodigital.net/solidariatv" +pladdurl2 "Spain | Unknown | 141 | Tele Taxi | Videclips of spanish artists and comercials. Located in | http://www.teletaxitv.com/" "mms://213.151.102.115/teletaxitv" +pladdurl2 "Spain | General | 271 | Telecinco | General TV station (recorded news) | http://www.informativos.telecinco.es/videotitulares.htm" "mms://media.telecinco.es/telecinco/informativos/informativos_ba/boletin.wmv" +pladdurl2 "Spain | General | 242 | Telecorazon | General TV station | http://www.telecorazon.com/" "mms://video.ono.com/telecorazon?WMBitrate=512000" +pladdurl2 "Spain | Unknown | 127 | Telecuruna | TV station located in Galicia | http://www.telecoruna.com/" "mms://212.51.45.238:1045/television" +pladdurl2 "Spain | Sports | 190 | Telemadrid Sat | Entertainment, music, sports and news | http://www.telemadrid.es/" " mms://a504.l1904842503.c19048.g.lm.akamaistream.net/D/504/19048/v0001/reflector:42503" +pladdurl2 "Spain | Unknown | 141 | Telemystic | TV this dedicated to the world of the occultism and | http://www.telemystic.com/" "mms://213.139.27.246/mystic" +pladdurl2 "Spain | Local | 273 | Teletoledo | Local TV from Toledo | http://www.teletoledo.tv/" "mms://217.76.128.22/ba0447.ttoledo" +pladdurl2 "Spain | Local | 100 | Television Estepona | Local TV from Malaga | http://www.radiotelevisionestepona.com/" "mms://217.76.128.22/ba0217.ainte" +pladdurl2 "Spain | Local | 100 | Tosiriar TV | Local TV | http://www.tosiriartv.com" "mms://wm.ofmin.com/tosiriartv" +pladdurl2 "Spain | Local | 141 | TV Azul | Local TV from Tenerife | http://www.eldia.es/azultelevision/" "mms://83.175.206.50/AZULTELEVISION" +pladdurl2 "Spain | General | 190 | TV Burgos | General TV station | http://www.tvcyl.es/" "mms://video.ono.com/tvcyl_tvb" +pladdurl2 "Spain | Local | 100 | TV Ferrol | Local TV station from Galicia | http://www.tvferrol.es" "mms://213.149.231.20/tvf" +pladdurl2 "Spain | General | 190 | TV Leon | General TV station | http://www.tvcyl.es" "mms://video.ono.com/tvcyl_tvl" +pladdurl2 "Spain | Local | 141 | TV Mas | Local TV from the Canary Islands | http://www.tvmas-palomas.com/" "mms://84.20.4.142/tvmas" +pladdurl2 "Spain | General | 180 | TV Salamanca | General TV station | http://www.tvcyl.es/" "mms://video.ono.com/tvcyl_tvsa" +pladdurl2 "Spain | General | 210 | TV Segovia | General TV station | http://www.tvcyl.es/" "mms://video.ono.com/tvcyl_tvsg" +pladdurl2 "Spain | Unknown | 90 | TV Zamora | TV from the province of Zamora | http://www.tvcyl.es/" "mms://video.ono.com/tvcyl_tvza" +pladdurl2 "Spain | Unknown | 116 | TVG | Live from Galicia | http://www.tvg.es/" "mms://85.91.64.23/Television" +pladdurl2 "Spain | Unknown | 116 | TVG | Live from Galicia | http://www.tvg.es/" "mms://85.91.64.23/Television" +pladdurl2 "Spain | Unknown | 190 | TVVI (Emisión en directo de TVVi (Televisión Valenciana Internacional)) | Canal Autonomico Valencia | http://www.canalgv.com" "mms://hechicera.cap.gva.es/tvvi?canalgv" +pladdurl2 "Spain | Unknown | 190 | TVVI (Emisión en directo de TVVi (Televisión Valenciana Internacional)) | Canal Autonomico Valencia | http://www.canalgv.com" "mms://cache2.gva.es/tvvi?canalgv" +pladdurl2 "Spain | Unknown | 190 | TVVI (Emisión en directo de TVVi (Televisión Valenciana Internacional)) | Canal Autonomico Valencia | http://www.canalgv.com" "mms://cache.gva.es/tvvi?canalgv" +pladdurl2 "Spain | Unknown | 450 | UPV TV | Universitat Politècnica de València | http://www.upv.es/" "mms://mediaserver01.upv.es/TelePoli" +pladdurl2 "Spain | Unknown | 450 | UPV TV | Universitat Politècnica de València | http://www.upv.es/" "mms://mediaserver01.upv.es/TelePoliADSL" +pladdurl2 "Spain | Education | 200 | URJC | TV from the University Rey Juan Carlos | http://www.urjc.es/" "mms://marx.urjc.es/urjc" +pladdurl2 "Spain | Local | 512 | Valencia TeVe | Local TV from Valencia | http://www.valenciateve.com/" "mms://video.ono.com/valencia?WMBitrate=512000" +pladdurl2 "Spain | Unknown | 220 | Videncia TV | Various streams; cooking recipies and | http://www.ono.com/" "mms://video.ono.com/videnciatv?WMBitrate=300000" +pladdurl2 "Sri lanka | Unknown | 340 | See TV | | http://www.seetv.com.au/" "http://124.254.73.250/fstv" +pladdurl2 "Sri lanka | General | 273 | Sri TV | General TV station (based in Italy) | http://www.sritv.it/" "mms://89.97.246.251:80" +pladdurl2 "Sri lanka | Music | 241 | Swarnavahini | Music and entertainment | http://www.swarnavahini.lk/" "mms://220.247.224.106/eap" +pladdurl2 "Sri lanka | News | 45 | TV TTN | Recorded news from the Tamil Television Network | http://www.lankasri.tv/" "http://www.lankasritv.com/ntt.wmv" +pladdurl2 "Suriname | Education | 100 | ATV | Information, education and entertainment | http://www.atv.sr" "mms://206.61.40.113/" +pladdurl2 "Sweden | Music | 270 | Canal 7 | Oriental music videos | http://www.canal7.se" "mms://213.80.127.1/Canal7_p" +pladdurl2 "Sweden | Religious | 350 | DKNET | Christian TV station | http://www.dknet.tv/" "mms://wm-live.crossnet.net/dknettv" +pladdurl2 "Sweden | Local | 750 | Dorotea TV | Local TV station from Dorotea, Lapland, | http://www.dorotea.tv/" "mms://dorotea.tv/live" +pladdurl2 "Sweden | Religious | 512 | Kanal 10 | Christian TV station | http://www.kanal10.se" "mms://wm-live.crossnet.net/kanal10" +pladdurl2 "Sweden | Music | 135 | The Voice | Populair music | http://www.thevoicetv.se" "mms://62.41.73.152/Public_SWE" +pladdurl2 "Sweden | Music | 450 | ZTV | Populair music | http://www.ztv.se/" "http://212.112.175.181/ztv_live" +pladdurl2 "Sweden | Music | 450 | ZTV | Populair music | http://www.ztv.se/" "http://mtgnewmed-live1.wm.llnwd.net/mtgnewmed_live11" +pladdurl2 "Switzerland | Unknown | 200 | FSOE | Forum for South-Eastern Europe | http://www.balkaninfo.net/" "http://www.balkansecurity.com:8080/ramgen/broadcast/tv.rm" +pladdurl2 "Switzerland | Local | 143 | H1TV | Local TV from Hittnauer | http://www.kabelnetz.ch/" "mms://video.kabelnetz.ch:8082" +pladdurl2 "Switzerland | Regional TV | 540 | Leman Bleu | Regional TV Station from Geneva | http://www.lemanbleu.ch" "mms://212.203.114.83:8080" +pladdurl2 "Switzerland | Regional TV | 291 | Tele M1 | Regional TV station from Aargau | http://www.tele-m1.ch/" "mms://wms01.green.ch/telem1" +pladdurl2 "Switzerland | Unknown | 291 | Tele Tell | TV for Central Switzerland | http://www.teletell.ch/" "mms://stream.green.ch/teletell" +pladdurl2 "Switzerland | Unknown | 100 | Tele Ticino | Italian speaking TV station | http://www.teleticino.ch/" "mms://212.161.144.25/Teleticino" +pladdurl2 "Switzerland | News | 500 | Telebasel | News TV | http://www.telebasel.ch/" "mms://livestream.telebasel.ch/telebasel" +pladdurl2 "Switzerland | General | 1500 | TSR | General TV station | http://www.tsr.ch/tsr/index.html?siteSect=502400" "mms://a1729.l2168648138.c21686.e.lm.akamaistream.net/D/1729/21686/v0001/reflector:55556" +pladdurl2 "Switzerland | General | 145 | U1 TV | General TV station | http://www.u1tv.ch/" "mms://teststation.ath.cx/teststation" +pladdurl2 "Switzerland | Weather | 200 | Wetter TV | Recorded weather update | http://de.bluewin.ch/news/index.php/wetter/tv/" "http://real.bluewin.ch/ramgen/meteonews/Bluewin_webtv.rm" +pladdurl2 "Syria | General | 100 | Syria TV | Government Television. General organisation of Radio and | http://www.rtv.gov.sy/" "mms://82.137.208.10/tv" +pladdurl2 "Taiwan | General | 291 | Da Ai TV | General TV station | http://www.newdaai.tv/rstpbk/index.php" "http://grm.cdn.hinet.net/media/hich/play.asp?mmsurl=mms://live.media.hinet.net/Weblive_DaaiTV_300?WLIVEC9BB8505-104B-49A8-95EF-459E5F707F9A" +pladdurl2 "Taiwan | General | 291 | Da Ai TV | General TV station | http://www.newdaai.tv/rstpbk/index.php" "mms://210.59.147.3/wmtencoder/300k.wmv" +pladdurl2 "Taiwan | Religious | 141 | Good TV | Religious TV | http://www.goodtv.com.tw" "mms://61.14.131.117/BLive/" +pladdurl2 "Thailand | News | 100 | 11 News | News channel | http://thailand.prd.go.th/" "rtsp://61.19.49.142:554/encoder/tv11.rm" +pladdurl2 "Thailand | News | 500 | ASTV News1 | News and information | http://www.astv-tv.com/" "mms://broadcast.manager.co.th/11news1?wmcontentbitrate=550000" +pladdurl2 "Thailand | Unknown | 450 | DMC | Dhammakaya Foundation media channel | http://www.dmc.tv/" "mms://129.241.200.129/dmc450" +pladdurl2 "Thailand | Local | 185 | Faikham TV | Local TV from Bangkok | http://www.e-ru.tv/" "mms://media.ru.ac.th/Faikham_TV" +pladdurl2 "Thailand | Local | 185 | Faikham TV | Local TV from Bangkok | http://www.e-ru.tv/" "mms://media.ru.ac.th/live1" +pladdurl2 "Thailand | Local | 185 | Faikham TV | Local TV from Bangkok | http://www.e-ru.tv/" "mms://media.ru.ac.th/live2" +pladdurl2 "Thailand | General | 245 | ITV | General TV station | http://www.itv.co.th/" "mms://61.19.242.115/itv_live" +pladdurl2 "Thailand | News | 343 | KE TV | 24/7 live economical and financial news and Stock-Exchange | http://www.kimeng.co.th" "mms://202.57.163.14/kimeng1" +pladdurl2 "Thailand | News | 343 | KE TV | 24/7 live economical and financial news and Stock-Exchange | http://www.kimeng.co.th" "mms://streaming.trueworld.net/kimeng?wmcontentbitrate=256000" +pladdurl2 "Thailand | News | 250 | MV1 TV | News & Entertainment Program | http://www.mvtv.co.th/" "http://61.19.242.115/mvtv_1?WMContentBitrate=256000" +pladdurl2 "Thailand | News | 256 | MV2 TV | News & Entertainment Program | http://www.mvtv.co.th" "http://61.19.242.115/mvtv_2?WMContentBitrate=256000" +pladdurl2 "Thailand | News | 256 | MV3 TV | News & Entertainment Program | http://www.mvtv.co.th" "http://61.19.242.115/mvtv_3?WMContentBitrate=256000" +pladdurl2 "Thailand | News | 40 | PRD | Recorded news from the Government Public Relations | http://www.prd.go.th/" "http://www.prd.go.th/mcic/radio/ram/newstv_newsline.ram" +pladdurl2 "Thailand | Unknown | 100 | T Channel | Cultural programs | http://www.t-ch.com/" "mms://203.146.252.143/256" +pladdurl2 "Thailand | Unknown | 400 | TGN / TGN Money | Thai Global Network located in Bangkok | http://www.thaitvglobal.com/" "mms://61.90.149.199/195/moneychannel?WMContentBitrate=000" +pladdurl2 "Thailand | Unknown | 400 | TGN / TGN Money | Thai Global Network located in Bangkok | http://www.thaitvglobal.com/" "mms://video.tv5.co.th/tv5?WMContentBitrate=2048000" +pladdurl2 "Thailand | Unknown | 400 | TGN / TGN Money | Thai Global Network located in Bangkok | http://www.thaitvglobal.com/" "mms://video.tv5.co.th/tv5?WMContentBitrate=512000" +pladdurl2 "Thailand | Unknown | 512 | TV 5 | Royal Thai army radio and television. Located in | http://www.tv5.co.th" "mms://video.tv5.co.th/tv5?WMContentBitrate=512000" +pladdurl2 "Thailand | News | 900 | TV9 | Thai News Agency, with news, entertainment and | http://tna.mcot.net/" "mms://mediaii.mcot.net/tv9?WMcontentBitrate=2048000" +pladdurl2 "Thailand | News | 900 | TV9 | Thai News Agency, with news, entertainment and | http://tna.mcot.net/" "mms://61.90.149.194/btv9?WMContentBitrate=2048000" +pladdurl2 "Thailand | News | 900 | TV9 | Thai News Agency, with news, entertainment and | http://tna.mcot.net/" "mms://61.90.149.199/194/btv9?WMContentBitrate=2048000" +pladdurl2 "Thailand | News | 900 | TV9 | Thai News Agency, with news, entertainment and | http://tna.mcot.net/" "mms://61.90.149.195/btv9?WMContentBitrate=2048000" +pladdurl2 "Thailand | News | 900 | TV9 | Thai News Agency, with news, entertainment and | http://tna.mcot.net/" "mms://mediaii.mcot.net/tv9?WMcontentBitrate=512000" +pladdurl2 "Thailand | News | 900 | TV9 | Thai News Agency, with news, entertainment and | http://tna.mcot.net/" "mms://202.142.200.205/tv9?WMcontentBitrate=512000" +pladdurl2 "Thailand | News | 900 | TV9 | Thai News Agency, with news, entertainment and | http://tna.mcot.net/" "mms://202.142.200.204/tv9?WMcontentBitrate=512000" +pladdurl2 "Thailand | News | 900 | TV9 | Thai News Agency, with news, entertainment and | http://tna.mcot.net/" "mms://mediaii.mcot.net/tv9?WMcontentBitrate=256000" +pladdurl2 "Thailand | News | 900 | TV9 | Thai News Agency, with news, entertainment and | http://tna.mcot.net/" "mms://202.142.200.205/tv9?WMcontentBitrate=256000" +pladdurl2 "Thailand | News | 900 | TV9 | Thai News Agency, with news, entertainment and | http://tna.mcot.net/" "mms://202.142.200.204/tv9?WMcontentBitrate=256000" +pladdurl2 "Tunesia | National TV | 50 | Tunesia TV | National TV station | http://tunisiatv.com/" "http://tunisiatv.com/ram/direct.ram" +pladdurl2 "Tunesia | News | 45 | TV7 | Recorded eveningnews (English) | http://tunisiatv.com/" "http://www.tunisiatv.com/ram/21h56.ram" +pladdurl2 "Tunesia | News | 45 | TV7 | Recorded news from 11:56PM (French) | http://tunisiatv.com/" "http://tunisiatv.com/ram/23h56.ram" +pladdurl2 "Tunesia | News | 45 | TV7 | Recorded news from 8PM (Arabic) | http://tunisiatv.com/" "http://tunisiatv.com/ram/20h56.ram" +pladdurl2 "Turkey | Religious | 116 | Adim TV | Religious TV channel | http://www.adimtv.com/" "mms://66.90.118.66/adimtv" +pladdurl2 "Turkey | Local | 50 | Ahi TV | Local TV from Kisehir | http://www.ahitv.net/" "mms://89.149.203.235/bd-ahitv" +pladdurl2 "Turkey | Local | 50 | Ahi TV | Local TV from Kisehir | http://www.ahitv.net/" "mms://193.140.100.3/bd-ahitv" +pladdurl2 "Turkey | Local | 96 | Alanya TV | Local TV from Alanya | http://www.alanyatelevizyonu.com" "mms://84.16.240.218/fg" +pladdurl2 "Turkey | Unknown | 141 | Arma TV | | http://www.armatv.com/" "mms://84.16.253.51/armatv" +pladdurl2 "Turkey | General | 300 | ATV | General Television station | http://www.atv.com.tr/" "mms://213.194.117.8/atv" +pladdurl2 "Turkey | Music | 273 | Bahane TV | Populair music | http://www.bahane.nl/" "mms://85.214.36.243/Sample_Broadcast" +pladdurl2 "Turkey | Unknown | 114 | Belgesel TV | TV from Istanbul | http://www.showtvnet.com/belgesel/" "mms://66.90.118.66/tv" +pladdurl2 "Turkey | Education | 233 | Bilim Kultur TV | Suleyman Demirel University offering, live | http://bilimtv.sdu.edu.tr/" "mms://193.140.181.88" +pladdurl2 "Turkey | Local | 100 | BRTV | Local TV from Karabuk | http://www.brtv.com.tr/" "mms://66.90.118.66/brtv" +pladdurl2 "Turkey | Unknown | 50 | Cay TV | TV station from Rize | http://www.caytv.com.tr/" "mms://66.90.118.66/caytv" +pladdurl2 "Turkey | Local | 100 | Civril TV | Local TV station from Civril | http://www.civriltv.com/" "mms://66.90.103.8/civriltv" +pladdurl2 "Turkey | Unknown | 50 | DOGU TV | TV from the East of Turkey; featuring world of trade, | http://www.dogutv.com.tr/" "mms://66.90.118.66/dogutv" +pladdurl2 "Turkey | General | 112 | Dost TV | Live broadcast about child-education, life in general and | http://www.dostfm.com/" "mms://dosttv.propagation.net/DostTV" +pladdurl2 "Turkey | Local | 100 | EBRT | Local TV from Boyuna | http://www.ebrt.tv" "mms://yayin.canlitv.com/ebrt" +pladdurl2 "Turkey | Music | 159 | Elazig Canal 23 | From the city of Elazig; film, news, music. Not | http://www.kanaletv.com.tr/" "mms://85.98.33.114:1034" +pladdurl2 "Turkey | Local | 102 | Elif TV | Local tv from Kayseri | http://www.eliftv.com.tr/" "mms://66.90.118.66/eliftv" +pladdurl2 "Turkey | Local | 90 | Erciyes TV | Local TV | http://www.erciyestv.com.tr" "mms://212.174.130.28:3100" +pladdurl2 "Turkey | Movies | 115 | Firaset TV | Turkish movies | http://www.firaset.net/" "mms://66.90.118.110/firasettv" +pladdurl2 "Turkey | Satellite TV | 140 | Hilal TV | Satellite channel | http://www.hilaltv.org/" "mms://66.90.118.66/hilaltv" +pladdurl2 "Turkey | Music | 100 | IMTV | Islamic music | http://www.islamimuzik.com/" "mms://yayin1.canlitv.com/imtv" +pladdurl2 "Turkey | Unknown | 100 | Kanal 26 | | http://www.kanal26.tv/" "mms://67.19.63.30/EskisehirKanal26" +pladdurl2 "Turkey | National TV | 100 | Kanal 7 | National TV Station | http://www.kanal7.com.tr" "http://84.16.234.166:8110/;stream.nsv" +pladdurl2 "Turkey | General | 150 | Kanal A | General TV station from Adana | http://www.kanal-a.com.tr/" "mms://67.19.63.30/AdanaKanalA_TV" +pladdurl2 "Turkey | General | 212 | Kanal Avrupa | General TV station | http://www.kanalavrupa.tv/" "mms://yayinakimi.kusto.com/canli" +pladdurl2 "Turkey | Unknown | 100 | Kanal Mavi | TV from the city of Trabzon | http://www.kanalmavi.com/" "mms://67.19.63.30/TrabzonMaviTV" +pladdurl2 "Turkey | General | 100 | Kanal S | General TV station | http://www.kanalstv.com/" "mms://85.17.58.162/kanalstv" +pladdurl2 "Turkey | Unknown | 92 | Karadeniz TV | | http://www.karadeniztv.com/" "mms://67.19.63.30/karadeniztv" +pladdurl2 "Turkey | Unknown | 92 | Karadeniz TV | | http://www.karadeniztv.com/" "mms://70.86.151.226/karadeniztv" +pladdurl2 "Turkey | General | 100 | Karesi TV | General TV station | http://www.karesitv.com/" "mms://67.19.43.164/karesitv" +pladdurl2 "Turkey | Local | 140 | Kayseri Kanal 38 | Local TV | http://www.kanal38.com/" "mms://67.19.63.30/KayseriKanal38" +pladdurl2 "Turkey | Local | 140 | Kayseri Kanal 38 | Local TV | http://www.kanal38.com/" "mms://70.86.151.226/KayseriKanal38" +pladdurl2 "Turkey | General | 34 | Kon TV | General TV station | http://www.kontv.com.tr/" "mms://85.105.216.115:3097" +pladdurl2 "Turkey | Local | 52 | Marmara TV | Local TV from Marmara | http://www.marmaratv.com.tr/" "mms://66.90.118.66/marmaratv" +pladdurl2 "Turkey | National TV | 182 | Mehtap TV | National TV station | http://www.mehtap.tv/" "mms://canli.mehtap.tv/mehtaptv" +pladdurl2 "Turkey | General | 100 | Mesaj TV | General TV station | http://www.mesajtv.com/" "http://80.190.241.82:7789;stream.nsv" +pladdurl2 "Turkey | Unknown | 40 | MIHR TV | Mihr TV broadcasts study programs based on the Islamic | http://www.mihr.com/livebroadcast.aspx?langId=1" "rtsp://24.249.16.36/881056/1971" +pladdurl2 "Turkey | Unknown | 152 | MMC Euro Turk | | http://www.mmctv.net" "mms://84.16.253.51/mmctv" +pladdurl2 "Turkey | Web TV | 100 | NET1 TV | Web TV. Offering various programs | http://www.net1tv.com/" "http://www.net1tv.com/broadcast/video/video.aspx" +pladdurl2 "Turkey | News | 539 | NTV | World News | http://www.ntv.com.tr/" "mms://212.175.79.106:1048/" +pladdurl2 "Turkey | News | 539 | NTV | World News | http://www.ntv.com.tr/" "mms://144.122.56.15/odtutv" +pladdurl2 "Turkey | Education | 539 | ODTU TV | Mid-Eastern Technical University, collegional lessons can | http://odtutv.metu.edu.tr/" "mms://144.122.56.15/ODTU-TV" +pladdurl2 "Turkey | National TV | 153 | Samanyolu | National TV station | http://www.samanyolu.tv/" "mms://canli.samanyolu.tv/stv" +pladdurl2 "Turkey | National TV | 153 | Samanyolu | National TV station | http://www.samanyolu.tv/" "mms://live.stv.com.tr/live" +pladdurl2 "Turkey | Unknown | 300 | Shopping TV | | http://www.shopping.com.tr/" "http://wms-th5.streamuk.com/shoppingtv_live" +pladdurl2 "Turkey | Unknown | 50 | Show Turk | | http://www.showturk.tv/" "http://89.149.209.105/tv-showturk?ashes=10-73-02-BA-CD-D9-CD-C3-FB-D6-03-2A-81-6F-ED-50" +pladdurl2 "Turkey | Unknown | 50 | Show Turk | | http://www.showturk.tv/" "mms://195.175.9.14/Tv-showturk" +pladdurl2 "Turkey | Unknown | 45 | ShowTV | Show TV | http://www.showtvnet.com" "http://89.149.209.108/TV-ShowTv?ashes=96-8B-E3-10-0B-44-DA-EC-80-81-16-AA-AE-ED-D0-FC" +pladdurl2 "Turkey | Local | 50 | Sipas TV | Local channel | http://www.sipastv.com/" "mms://81.213.152.170:8080/" +pladdurl2 "Turkey | Local | 50 | Sipas TV | Local channel | http://www.sipastv.com/" "mms://70.84.219.123/radyo58" +pladdurl2 "Turkey | Unknown | 75 | Sky Turk | | http://www.skyturkonline.com/" "http://supertv.superonline.com/playsky.php" +pladdurl2 "Turkey | Unknown | 75 | Sky Turk | | http://www.skyturkonline.com/" "mms://66.90.101.68/TV-skyturk" +pladdurl2 "Turkey | General | 70 | TGRT | General TV station | http://www.tgrt.com.tr" "http://84.16.234.166:8140/listen.pls" +pladdurl2 "Turkey | National TV | 70 | TGRT Europe | International oriented | http://www.tgrt.com.tr/" "http://84.16.234.166:8180/listen.pls" +pladdurl2 "Turkey | News | 70 | TGRT Haber | Turkish news broadcaster. Live transmissions | http://www.tgrt.com.tr/" "http://84.16.234.166:8150/listen.pls" +pladdurl2 "Turkey | General | 150 | TRT 1 | Turkish State Television, channel 1 | http://www.trt.net.tr/wwwtrt/canli.aspx" "mms://212.175.166.3/TV1" +pladdurl2 "Turkey | General | 100 | TRT Int. | Turkish State Television (International | http://www.trt.net.tr/wwwtrt/canli.aspx" "mms://212.175.166.3/TRTINT" +pladdurl2 "Turkey | General | 100 | TRT2 | Turkish State Television, channel 2 | http://www.trt.net.tr/wwwtrt/canli.aspx" "mms://212.175.166.3/TV2" +pladdurl2 "Turkey | General | 100 | TRT4 | Turkish State Television, channel 4 | http://www.trt.net.tr/wwwtrt/canli.aspx" "mms://212.175.166.3/TV4" +pladdurl2 "Turkey | Unknown | 100 | TV 5 | | http://www.tv5.com.tr/" "mms://66.90.118.110/tv5" +pladdurl2 "Turkey | Unknown | 100 | TV 5 | | http://www.tv5.com.tr/" "mms://66.90.118.66/tv5" +pladdurl2 "Turkey | Unknown | 100 | TV 5 | | http://www.tv5.com.tr/" "mms://212.48.126.102/313664" +pladdurl2 "Turkey | Local | 100 | VTV | Local TV from Antalya | http://www.kanalvip.com.tr/" "mms://212.156.223.225" +pladdurl2 "Turkey | News | 300 | WTC | News television station | http://www.wtcankara.org.tr" "mms://webtv.wtcankara.org.tr/NewsTV" +pladdurl2 "Turkey | Local | 100 | Z TV | Local TV from Zile | http://www.ziletv.com/" "mms://84.16.250.67/ziletv" +pladdurl2 "U. kingdom | Web TV | 341 | 3BTV | Web TV | http://www.3btv.com/" "mms://streaming.i2i-technology.com/5BBa" +pladdurl2 "U. kingdom | Web TV | 341 | 3BTV | Web TV | http://www.3btv.com/" "mms://streaming.i2i-technology.com/7BBa" +pladdurl2 "U. kingdom | Weather | 80 | BBC Weather | Weather forecast for the UK | http://www.bbc.co.uk/weather/bbcweather/weather_forecast_media.shtml" "http://www.bbc.co.uk/newsa/n5ctrl/summaries/weather/nb_weather_uk.ram" +pladdurl2 "U. kingdom | Unknown | 45 | BBC_Business | World Business Report presents the latest global | http://news.bbc.co.uk/1/hi/business/1143010.stm" "http://www.bbc.co.uk/newsa/n5ctrl/progs/business/wbr/latest.ram" +pladdurl2 "U. kingdom | News | 225 | BBC_Channel Islands | News TV | http://www.bbc.co.uk/jersey/" "rtsp://rmv8.bbc.net.uk/jersey/news/spotlight_56.rm" +pladdurl2 "U. kingdom | News | 250 | BBC_Click | Recorded technology news | http://news.bbc.co.uk/2/hi/programmes/click_online/default.stm" "mms://rmv8.bbc.net.uk/news/olmedia/n5ctrl/tvseq/od/bbc1/bb/wm/video/click_bb.wmv" +pladdurl2 "U. kingdom | Unknown | 240 | BBC_Daily Politics | Political TV show | http://www.bbc.co.uk" "mms://rmv8.bbc.net.uk/news/olmedia/n5ctrl/tvseq/od/bbc2/bb/wm/video/daily_pol_bb.wmv" +pladdurl2 "U. kingdom | News | 225 | BBC_Headlines | Around the clock TV news | http://news.bbc.co.uk/broadband/news_console.stm" "mms://wmlive.bbc.net.uk/wms/news/heads_bb_s1" +pladdurl2 "U. kingdom | News | 256 | BBC_Liquid news | Watch the latest showbiz news | http://www.bbc.co.uk/entertainment/" "http://www.bbc.co.uk/newsa/n5ctrl/summaries/entertain/bb_liquid_news.ram" +pladdurl2 "U. kingdom | News | 45 | BBC_Look East | The latest local newscast for the regions: | http://www.bbc.co.uk/england/lookeast/" "http://www.bbc.co.uk/england/realmedia/lookeast/cambs_tvbull.ram" +pladdurl2 "U. kingdom | News | 225 | BBC_Newsnight | Recorded news | http://news.bbc.co.uk/1/hi/programmes/newsnight/default.stm" "mms://rmv8.bbc.net.uk/news/olmedia/n5ctrl/tvseq/od/bbc2/bb/wm/video/newsnight_bb.wmv" +pladdurl2 "U. kingdom | Unknown | 225 | BBC_Panorama | Investigative TV Show | http://news.bbc.co.uk/1/programmes/panorama/default.stm" "mms://rmv8.bbc.net.uk/news/olmedia/n5ctrl/tvseq/od/bbc1/bb/wm/video/panorama_bb.wmv" +pladdurl2 "U. kingdom | Unknown | 218 | BBC_Parliament | Only sometimes online | http://news.bbc.co.uk/1/hi/programmes/bbc_parliament/default.stm" "mms://wmlive.bbc.net.uk/wms/news/event1_16x9_bb_s1" +pladdurl2 "U. kingdom | Unknown | 218 | BBC_Parliament | Only sometimes online | http://news.bbc.co.uk/1/hi/programmes/bbc_parliament/default.stm" "mms://wmlive.bbc.net.uk/wms/news/parliament_16x9_nb_s1" +pladdurl2 "U. kingdom | News | 225 | BBC_Question Time | News related TV program | http://news.bbc.co.uk/1/hi/programmes/question_time/default.stm" "mms://rmv8.bbc.net.uk/news/olmedia/n5ctrl/tvseq/od/bbc1/bb/wm/video/question_bb.wmv" +pladdurl2 "U. kingdom | Unknown | 50 | BBC_South East today | Three recorded bulletins available: | http://www.bbc.co.uk/england/southeasttoday/" "http://www.bbc.co.uk/kent/realmedia/bulletins/kentlun.ram" +pladdurl2 "U. kingdom | News | 45 | BBC_Workinglunch | Business, personal finance and consumer news | http://news.bbc.co.uk/1/hi/programmes/working_lunch/default.stm" "http://www.bbc.co.uk/newsa/n5ctrl/progs/business/working_lunch/working_lunch.ram" +pladdurl2 "U. kingdom | Shopping | 80 | Bid-up TV | Online auction TV | http://www.bid-up.tv/" "mms://play.wm.situptv.servecast.net/situptv_wmlz_bidup80k" +pladdurl2 "U. kingdom | Unknown | 800 | Bonobo TV | Alternative channel | http://www.bonobo.tv" "mms://stream00.prostream.co.uk/bonobotv" +pladdurl2 "U. kingdom | News | 300 | Chat Show | Celebrity News Covering Gossip, entertainment, Scandals, | http://www.chatshow.net/" "http://streaming.chatshow.net/chatshowPlayList/" +pladdurl2 "U. kingdom | Music | 391 | Classic FM | Music TV | http://www.classicfm.com/" "http://s-lon-01a.global-mix.net/classicfmtv" +pladdurl2 "U. kingdom | Unknown | 222 | Create & Craft | About hobby | http://www.createandcraft.com/" "mms://wm4av002.servecast.com/idealworld_wmlz_createandcraft-230k" +pladdurl2 "U. kingdom | Unknown | 222 | Create & Craft | About hobby | http://www.createandcraft.com/" "mms://play170.servecast.com/idealworld_wmlz_createandcraft-230k" +pladdurl2 "U. kingdom | Music | 200 | E-Music Television | Digital music programming and interactive | http://www.e-musictelevision.com/" "mms://s-lon-01a.global-mix.net/e-music" +pladdurl2 "U. kingdom | News | 273 | Euronews | Summary of the latest worldnews | http://www.euronews.net/" "http://btncorp-euronews-english-2.wm.llnwd.net/btncorp_EuroNews_English_2" +pladdurl2 "U. kingdom | News | 273 | Euronews | Summary of the latest worldnews | http://www.euronews.net/" "http://a1729.l2168647534.c21686.g.lm.akamaistream.net/D/1729/21686/v0001/reflector:55086" +pladdurl2 "U. kingdom | News | 848 | FN 24 | Franchise news | http://www.franchisenews24.co.uk/" "mms://217.10.152.210/fn24" +pladdurl2 "U. kingdom | Shopping | 380 | Gems TV (GemsTV) | Offers online jewelry products | http://www.gemstv.com" "mms://live.gemstv.co.uk/GemsTV" +pladdurl2 "U. kingdom | Unknown | 380 | Gems TV2 | Offers jewellery | http://www.gems.tv/" "mms://live.gemstv.co.uk/GemsTV" +pladdurl2 "U. kingdom | Unknown | 380 | Gems TV2 | Offers jewellery | http://www.gems.tv/" "mms://live.gemstv.com/GemsTV2" +pladdurl2 "U. kingdom | Unknown | 400 | Hyp TV | Short films | http://www.hyptv.com/" "http://stream01.prostream.co.uk/hyptv" +pladdurl2 "U. kingdom | Shopping | 100 | Ideal Vitality | Offers products for the body | http://www.idealvitality.tv/" "mms://wm4av002.servecast.com/idealworld_wmlz_idealvitality-100k" +pladdurl2 "U. kingdom | Shopping | 100 | Ideal Vitality | Offers products for the body | http://www.idealvitality.tv/" "mms://play170.servecast.com/idealworld_wmlz_idealvitality-100k" +pladdurl2 "U. kingdom | Shopping | 350 | Ideal World | Offers an online productrange from Around the home, | http://www.idealworld.tv/" "mms://wm4bv001.servecast.com/idealworld_wmlz_livechannel1-350k" +pladdurl2 "U. kingdom | Shopping | 350 | Ideal World | Offers an online productrange from Around the home, | http://www.idealworld.tv/" "mms://wm4av002.servecast.com/idealworld_wmlz_livechannel1-350k" +pladdurl2 "U. kingdom | General | 391 | Information TV | General TV station | http://www.information.tv/" "mms://s-lon-b.global-mix.net/informationtv" +pladdurl2 "U. kingdom | Religious | 300 | INI TV | Inspiration Network International (Religious | http://www.ini.tv/" "mms://207.250.246.137/ini" +pladdurl2 "U. kingdom | Satellite TV | 100 | Islam Channel | Islamic satellite channel located in the | http://www.islamchannel.tv" "mms://kibo.hopto.org/IslamVideo" +pladdurl2 "U. kingdom | Music | 300 | Ministry of sound | Music TV station | http://www.ministryofsound.com" "http://a745.l2645830502.c26458.g.lm.akamaistream.net/D/745/26458/v0001/reflector:30502" +pladdurl2 "U. kingdom | Religious | 300 | MTA ( Muslim TV ) | Ahmadi Religious TV-Station broadcasting from UK but in | http://www.alislam.org/mta/" "mms://live300k1.wm.muslimtv.servecast.net/MuslimTV_wmlz_live300k" +pladdurl2 "U. kingdom | Religious | 300 | MTA ( Muslim TV ) | Ahmadi Religious TV-Station broadcasting from UK but in | http://www.alislam.org/mta/" "mms://live300k2.wm.muslimtv.servecast.net/MuslimTV_wmlz_live300k" +pladdurl2 "U. kingdom | Shopping | 80 | Price-drop TV | Online price-drop auction | http://www.price-drop.tv" "mms://play.wm.situptv.servecast.net/situptv_wmlz_pricedrop80k" +pladdurl2 "U. kingdom | Web TV | 312 | Rathergood TV | Web TV | http://www.rathergood.co.uk/" "http://stream01.prostream.co.uk/rathergoodtv" +pladdurl2 "U. kingdom | Religious | 391 | Revelation TV | Christian TV Channel | http://www.revelationtv.com/" "mms://s-lon-01b.global-mix.net/revelationtv" +pladdurl2 "U. kingdom | News | 300 | Sky | News TV | http://www.sky.com/" "mms://live1.wm.skynews.servecast.net/skynews_wmlz_live300k" +pladdurl2 "U. kingdom | Local | 140 | Solent TV | Not-for-profit local television station sometimes | http://www.solent.tv/" "http://www.solent.tv/wvx/live.wvx" +pladdurl2 "U. kingdom | Local | 140 | Solent TV | Not-for-profit local television station sometimes | http://www.solent.tv/" "http://www.solent.tv/wvx/alive.wvx" +pladdurl2 "U. kingdom | Sports | 387 | Sportal | Sports portal with recorded video's | http://www.sportal.com/" "mms://s-lon-01b.global-mix.net/itb" +pladdurl2 "U. kingdom | Unknown | 1000 | Sumo TV | Funny Video's | http://www.sumo.tv" "mms://asf.narrowstep.tv/gk010706_sumotv" +pladdurl2 "U. kingdom | Shopping | 80 | Thane Direct | Offers a broad range of products | http://www.thanedirect.co.uk/" "mms://a1067.l1188535066.c11885.g.lm.akamaistream.net/D/1067/11885/v0001/reflector:35066" +pladdurl2 "U. kingdom | News | 50 | TTTV | Recorded news | http://www.tynetees.tv/" "mms://webcast.globalfibre.tv/tttv/lunch.wmv" +pladdurl2 "U. kingdom | News | 50 | TTTV | Recorded news | http://www.tynetees.tv/" "mms://webcast.globalfibre.tv/tttv/net_north.wmv" +pladdurl2 "U. kingdom | Music | 340 | WAMTV | Variety of Music | http://www.worldart.com/" "http://wm9.easystream.co.uk/worldart" +pladdurl2 "Ukraine | Unknown | 70 | 11 Channel | TV channel from Dnipropitrovsk | http://www.11channel.dp.ua" "http://11channel.dp.ua/res/broadcast/11channel.m3u" +pladdurl2 "Ukraine | News | 343 | 24 TV | News station | http://www.24tv.com.ua" "mms://tass.kiev.sovam.com/24tv" +pladdurl2 "Ukraine | Unknown | 400 | UTR | Live from Kiev | http://www.utr.tv/" "mms://live2.eu.utr.kiev.ua/UTR-EU" +pladdurl2 "Ukraine | Unknown | 400 | UTR | Live from Kiev | http://www.utr.tv/" "mms://live.eu.utr.kiev.ua/UTR-EU" +pladdurl2 "Ukraine | Unknown | 440 | UTR USA | TV station located in Kiev | http://www.utr.kiev.ua/" "mms://live.us.utr.kiev.ua/UTR-US" +pladdurl2 "Ukraine | Unknown | 440 | UTR USA | TV station located in Kiev | http://www.utr.kiev.ua/" "mms://live2.us.utr.kiev.ua/UTR-US" +pladdurl2 "Uruguay | Sports | 34 | Canal 12 Teledoce | News and sports | http://www.teledoce.com/tvonline.php" "rtsp://66.45.240.242:7070/teledoce/videos/tvonline/semana/telemundo.rm" +pladdurl2 "Uruguay | Local | 320 | Canal 24 Ciudad | Local TV from Montevideo | http://www.adinettv.com.uy" "http://streamadinettv.com.uy/broadcast/WM9_tvciudad2" +pladdurl2 "Uruguay | Unknown | 93 | Canal 24 Ciudad | TV from Montevideo | http://www.teveciudad.org.uy/" "mms://multimedia.montevideo.com.uy/tvciudad" +pladdurl2 "Uruguay | Unknown | 320 | Canal 5 | TVEO Canal 5, Television Nacional from | http://www.tveo.com.uy/" "http://streamadinettv.com.uy/broadcast/WM9_tnacional2?MSWMExt=.asf" +pladdurl2 "Uruguay | Unknown | 151 | Canal 6 | TV station from Pando, Canelones | http://www.telespectaculo.com.uy/home.htm" "mms://www.telespectaculo.com.uy/tele6" +pladdurl2 "Uruguay | Unknown | 45 | Canal 8 | Canal 8 Telespectaculo from Canelones City | http://www.telespectaculo.com.uy/home.htm" "mms://www.telespectaculo.com.uy/tele6" +pladdurl2 "Uruguay | Government | 100 | Televisión Nacional | Government Channel | http://www.tveo.com.uy/" "http://streamadinettv.com.uy/broadcast/WM9_tnacional" +pladdurl2 "USA | Public TV | 140 | WMTY | Public access TV | http://www.wmty.net/" "mms://wm.videorelay.com/wmty_1" +pladdurl2 "USA | Local | 273 | WKRG | Local TV | http://www.wkrg.com/" "mms://mgs.mgnetwork.com/wkrg/video/webcast_news.wmv" +pladdurl2 "USA | Cable TV | 140 | CCM | County Cable Montgomery- TV channel 6 | http://www.montgomerycountymd.gov/apps/CABLE/cable.cfm" "http://stream01.montgomerycountymd.gov/ondemand/PlayVideolive.asp" +pladdurl2 "USA | Local | 140 | TV4 Bullhead | Local TV | http://www.bullheadcity.com/media/ch4.asp" "http://www.bullheadcity.com/media/dragontv4.wvx" +pladdurl2 "USA | Unknown | 100 | Mesa | Operated by the City of Mesa (Ch. 11) | http://www.mesachannel11.com/wm_stream.php" "mms://streaming.mesachannel11.com/Live" +pladdurl2 "USA | Government | 140 | Tempe 11 | Government Access TV | http://www.tempe.gov/tempe11/" "http://media1.tempe.gov/tempe11high" +pladdurl2 "USA | Government | 140 | Tempe 11 | Government Access TV | http://www.tempe.gov/tempe11/" "http://media1.tempe.gov/tempe11low" +pladdurl2 "USA | Public TV | 100 | Access Tucson | Public access television | http://access.tucson.org/" "http://accesstucson.org:8000/ramgen/encoder/ch73.rm" +pladdurl2 "USA | Government | 220 | Tucson 12 | Government access television station | http://www.ci.tucson.az.us/ch12/" "rtsp://www.ci.tucson.az.us:554/broadcast/tucson12.rm" +pladdurl2 "USA | Unknown | 160 | Yuma 77 | Yuma County TV | http://www.yuma77.tv/" "mms://yumaco.ecstreams.com/YumaLive" +pladdurl2 "USA | Religious | 45 | Shepherds Chapel | Located in Gravette. Provides live Bible study | http://www.shepherdschapel.com/" "mms://67.59.0.35/SC" +pladdurl2 "USA | Community | 220 | BETV Ch. 28 | Community TV | http://www.betv.org/" "mms://64.164.28.55:8080/" +pladdurl2 "USA | Government | 200 | Cerritos TV3 | Government TV | http://www.ci.cerritos.ca.us/citygov/tv3online.html" "mms://207.7.154.94/cerritos_TV3" +pladdurl2 "USA | Unknown | 170 | UCLA TV (UCLAtv.com live broadcast) | Student Television | http://www.uclatv.com" "mms://128.97.251.225/UCLAtv" +pladdurl2 "USA | General | 270 | Csumb TV | California State University TV (Monterey | http://csumb.edu/" "mms://encoder1.csumb.edu:8080/" +pladdurl2 "USA | Education | 250 | KLRN | Educational TV from Pasadena | http://www.pasadena56.tv/" "mms://www.pasadena56.tv:8280/" +pladdurl2 "USA | Government | 354 | KPAS | Government TV from Pasadena | http://www.pasadena56.tv" "mms://www.pasadena56.tv:8080/" +pladdurl2 "USA | Public TV | 242 | Pasadena 56 | Public Access TV | http://www.pasadena56.tv/" "mms://www.pasadena56.tv:8080/" +pladdurl2 "USA | Government | 261 | PCTV ch. 26 | Government TV | http://www.ci.pinole.ca.us/tv/watch.html" "mms://207.7.154.94/pinole_channel26" +pladdurl2 "USA | Government | 261 | PCTV ch. 28 | Government TV from the City of Pinole | http://www.ci.pinole.ca.us/tv/watch.html" "mms://207.7.154.94/pinole_channel28" +pladdurl2 "USA | Community | 500 | KCAT | Community Access TV | http://inet-server.enet.hlpusd.k12.ca.us/comtv33/" "http://inet-server.enet.hlpusd.k12.ca.us/go/tv/edtv.wvx" +pladdurl2 "USA | Government | 261 | Sacramento County TV | Government TV from Sacramento | http://www.saccounty.net/saccountytv/" "mms://207.7.154.94/saccounty_channel14" +pladdurl2 "USA | News | 283 | City of San Diego | News from the City Council | http://www.sandiego.gov/citytv/webstreaming/index.shtml" "mms://206.19.38.189/livefeed100" +pladdurl2 "USA | Education | 350 | SDCOE TV | San Diego County Office of Education | http://www.sdcoe.tv/streaming.asp" "http://live.sdcoe.tv/ramgen/encoder/sdcoe2_1.rm?usehostname" +pladdurl2 "USA | Unknown | 300 | SFGTV Ch. 26 | City & County TV | http://sfgov.org/site/sfgtv_index.asp?id=11463" "mms://207.7.154.95/sanfrancisco_encoder2" +pladdurl2 "USA | Unknown | 300 | SFGTV Ch. 26 | City & County TV | http://sfgov.org/site/sfgtv_index.asp?id=11463" "mms://207.7.154.95/sanfrancisco_encoder7" +pladdurl2 "USA | Unknown | 300 | SFGTV Ch. 26 | City & County TV | http://sfgov.org/site/sfgtv_index.asp?id=11463" "mms://207.7.154.95/sanfrancisco_encoder1" +pladdurl2 "USA | Unknown | 300 | SFGTV Ch. 26 | City & County TV | http://sfgov.org/site/sfgtv_index.asp?id=11463" "mms://207.7.154.95/sanfrancisco_encoder3" +pladdurl2 "USA | Unknown | 300 | SFGTV Ch. 26 | City & County TV | http://sfgov.org/site/sfgtv_index.asp?id=11463" "mms://207.7.154.95/sanfrancisco_encoder4" +pladdurl2 "USA | Unknown | 300 | SFGTV Ch. 26 | City & County TV | http://sfgov.org/site/sfgtv_index.asp?id=11463" "mms://207.7.154.95/sanfrancisco_encoder5" +pladdurl2 "USA | Unknown | 300 | SFGTV Ch. 26 | City & County TV | http://sfgov.org/site/sfgtv_index.asp?id=11463" "mms://207.7.154.95/sanfrancisco_encoder6" +pladdurl2 "USA | Community | 500 | CCCSAT | California Community Colleges | http://www.cccsat.org/" "mms://webcast.palomar.edu:7007" +pladdurl2 "USA | Cable TV | 100 | OCTT Ch. 13 | Office of Cable TV and Telecom | http://octt.dc.gov/" "mms://dcgov.ecstreams.com/DC_CH-13" +pladdurl2 "USA | Cable TV | 100 | OCTT Ch. 16 | Office of Cable TV and Telecom | http://octt.dc.gov/" "mms://dcgov.ecstreams.com/DC_CH-16" +pladdurl2 "USA | Local | 222 | Daytona beach | Local Internet TV station | http://www.daytonabeach-live.com" "rtsp://real.prohosting.com/encoder/daytona.rm" +pladdurl2 "USA | Local | 262 | Galaxy Universe TV | Local TV | http://www.galaxyuniversetv.com/" "rtsp://real.prohosting.com/encoder/galaxy.rm" +pladdurl2 "USA | Unknown | 150 | Beach TV | Information channel | http://www.tripsmarter.com/destin/multimedia/tv.htm" "http://www.tripsmarter.com/multimedia/tv_flash/tv_des_player.swf" +pladdurl2 "USA | Public TV | 100 | WUFT TV | Public Broadcasting for North Central Florida | http://www.wuft.tv/news5/index.php?s=Live" "mms://xra00.jou.ufl.edu/Channel5" +pladdurl2 "USA | Unknown | 150 | Key TV | Information channel | http://www.tripsmarter.com/keywest/multimedia/tv.htm" "http://www.tripsmarter.com/multimedia/tv_flash/tv_key_player.swf" +pladdurl2 "USA | Local | 270 | WSCF | Local TV | http://www.tv31melbourne.com/" "mms://65.204.57.72:8080/" +pladdurl2 "USA | Local | 200 | Tele Miami | Local TV | http://www.telemiami.com/" "mms://80.84.129.169/telemiamidsl" +pladdurl2 "USA | Local | 273 | WSVN | Local TV | http://www.wsvn.com/" "http://wm-live.world.mii-streaming.net/live/WSVN/pull/1" +pladdurl2 "USA | Unknown | 150 | Beach TV | Information channel | http://www.tripsmarter.com/panamacity/multimedia/tv.htm" "http://www.tripsmarter.com/multimedia/tv_flash/tv_pcb_player.swf" +pladdurl2 "USA | Local | 45 | WBQP | Local TV | http://www.wbqp.com/" "rtsp://24.249.195.56:554/encoder/wbqp.rm" +pladdurl2 "USA | Government | 250 | SGTV | Seminole County Florida Government TV | http://www.seminolecountyfl.gov/" "mms://streaming.seminolecountyfl.gov/live" +pladdurl2 "USA | Education | 350 | Ch. 20 | Education and Government Television | http://www.pbcgov.com/pubInf/Channel20/Chan20.htm" "http://www.pbcgov.com/pubInf/video/channel20.ram" +pladdurl2 "USA | Unknown | 150 | Atlanta channel | Information channel | http://www.tripsmarter.com/atlanta/multimedia/tv.htm" "http://www.tripsmarter.com/multimedia/tv_flash/tv_atl_player.swf" +pladdurl2 "USA | Government | 128 | TV 23 | Government TV | http://www.cobbcounty.org/" "mms://CobbCo.earthchannel.com/CobbCoLive" +pladdurl2 "USA | Local | 400 | ETC | Local TV from North Georgia | http://www.northganow.com/" "mms://66.44.210.247:8080/ellijay.wmv" +pladdurl2 "USA | Unknown | 80 | Floyd College TV | Floyd College Television from Rome | http://www.highlands.edu/academics/extended/ghtv.htm" "http://168.31.222.191:8080/ramgen/encoder/live.rm" +pladdurl2 "USA | Community | 273 | Focus ch. 49 | Community television | http://www.olelo.org/" "http://wmserver.netenterprise.net/olelo-leg2?MSWMExt=.asf" +pladdurl2 "USA | Community | 140 | NATV 53 | Community television | http://www.olelo.org/" "http://media03.netenterprise.net/olelolive?MSWMExt=.asf" +pladdurl2 "USA | Community | 143 | NATV Ch. 53 | Community Television (sometimes broadcasting | http://www.olelo.org/" "http://media03.netenterprise.net/olelolive" +pladdurl2 "USA | Community | 273 | OAHU | Community television | http://www.olelo.org/" "http://wmserver.netenterprise.net/olelo-oahu?MSWMExt=.asf" +pladdurl2 "USA | Community | 270 | OAHU 52 | Community television | http://www.olelo.org/" "http://wmserver.netenterprise.net/olelo-oahu" +pladdurl2 "USA | Community | 102 | Olelo | Community access provider from Hawaii (sometimes | http://www.olelo.org" "http://media03.netenterprise.net/olelolive" +pladdurl2 "USA | Community | 273 | Views ch. 54 | Community television from Hawaii | http://www.olelo.org/" "http://wmserver.netenterprise.net/olelo-views?MSWMExt=.asf" +pladdurl2 "USA | Unknown | 339 | WETN | College TV from Wheaton | http://www.wheaton.edu/wetn/" "http://cdncon-wheaton.wm.llnwd.net/cdncon_wheaton?MSWMExt=.asf" +pladdurl2 "USA | Education | 100 | BECTV | Bloomington Educational Cable TV | http://www.bectv.org/" "mms://media.bectv.org:1187/" +pladdurl2 "USA | Local | 225 | CATS | Local TV. Not always online. Read the programming | http://stream.hoosier.net/cats/" "rtsp://stream2.hoosier.net/broadcast/live.rm" +pladdurl2 "USA | Local | 150 | KWQC | Local TV | http://www.kwqc.com" "mms://64.22.203.66/kwqcnews" +pladdurl2 "USA | Unknown | 300 | HTV 19 | 24/7 internet station that serves Hamilton County | http://www.htv19.com/" "mms://win10.fast-serv.com/HomeTownTelevision" +pladdurl2 "USA | Religious | 45 | WHTV | WHT TV offers a blend of Christian programming (South Bend, | http://www.lesea.com/" "mms://media2.leseanet.net/wht" +pladdurl2 "USA | Government | 227 | KCCG | Government TV from Kansas City | http://www.kcmo.org/cco.nsf/web/kccg?opendocument" "http://www.kcmo.org/ch2.ram" +pladdurl2 "USA | Local | 300 | KCTU | Local TV | http://www.kctu.com/" "mms://radio.ivnet.tv/ivnetlive" +pladdurl2 "USA | Religious | 100 | Spirit Broadcasting Network | Christian channel | http://spiritradio.net" "mms://209.101.56.82:8080/" +pladdurl2 "USA | Local | 273 | WVUE | Local TV (Fox 8) | http://www.fox8live.com/" "mms://a1090.l1814050135.c18140.g.lm.akamaistream.net/D/1090/18140/v0001/reflector:50135" +pladdurl2 "USA | Local | 300 | KDCG | Local TV | http://www.kdcg.com/" "mms://68.191.81.108:8080/" +pladdurl2 "USA | Religious | 145 | Greater Grace | Christian TV station from Baltimore | http://www.ggwo.org/tv/" "mms://216.133.73.165:82/GGWO_live" +pladdurl2 "USA | Government | 250 | Rockville Ch. | Rockville, MD City Government TV | http://www.rockvillemd.gov/trc11/index.html" "mms://rockmedia.ci.rockville.md.us/Modem" +pladdurl2 "USA | Government | 140 | Boston Ch. 22 | Government TV provided by the City of | http://www.cityofboston.gov/cable/channel22.asp" "http://video.ci.boston.ma.us:8080/ramgen/encoder/live.rm" +pladdurl2 "USA | Cable TV | 540 | CN8 New England | Comcast Cable TV | http://www.cn8.tv/" "mms://68.87.109.4/cn8winmedia" +pladdurl2 "USA | Local | 141 | WHDH | Local TV. Not always online | http://www.whdh.com" "mms://wm-live.world.mii-streaming.net/live/whdh/2" +pladdurl2 "USA | Community | 273 | PCTV (I) | Community access TV | http://www.pittsfieldtv.org" "mms://www.pittsfieldtv.net:8081/" +pladdurl2 "USA | Community | 500 | PCTV (II) | Community access TV | http://www.pittsfieldtv.org/" "mms://www.pittsfieldtv.net:8082/" +pladdurl2 "USA | Community | 500 | PCTV (III) | Community access TV | http://www.pittsfieldtv.org/" "mms://www.pittsfieldtv.net:8083/" +pladdurl2 "USA | Community | 311 | WCCA TV | Community access TV | http://www.wccatv.com/" "http://www.wccatv.com:8010/;stream.nsv" +pladdurl2 "USA | Local | 273 | G1NBC | Local TV | http://www.g1n.org/jackson_mi.htm" "mms://wms.partner-streaming.com/g1nbc1" +pladdurl2 "USA | Local | 143 | WCBI | Local TV | http://www.wcbi.com" "http://www.wcbi.com/video/topstory.wmv" +pladdurl2 "USA | Religious | 45 | Unity Broadcasting | Christian television station located in the | http://www.w39cd.com" "http://www.videorelay.com/real/1086_live.ram" +pladdurl2 "USA | Community | 550 | WKFK | Community TV | http://www.wkfk.com/" "mms://70.159.56.190:8080" +pladdurl2 "USA | Government | 225 | Vicksburg TV23 | Government TV channel TV-23 | http://www.vicksburg.org" "http://web.vicksburg.org/Vicksburg/TV23/tv23.ram" +pladdurl2 "USA | Government | 150 | 21 TV | Government TV for Lincoln and Lancaster County, | http://www.lincoln.ne.gov/city/mayor/cic/5citytv/index.htm" "http://www.lincoln.ne.gov/city/mayor/cic/5citytv/tv21.ram" +pladdurl2 "USA | Government | 150 | City 5 TV | Government TV for Lincoln and Lancaster | http://www.lincoln.ne.gov/city/mayor/cic/5citytv/index.htm" "http://www.lincoln.ne.gov/city/mayor/cic/5citytv/tv5.ram" +pladdurl2 "USA | Government | 226 | CCTV4 | Government access TV | http://www.co.clark.nv.us/Public_communications/channel4.htm" "http://redrock.co.clark.nv.us:8080/ramgen/encoder/c4.rm" +pladdurl2 "USA | Local | 378 | Ebru TV | Local TV | http://www.ebru.tv/" "mms://live.ebru.tv/ebru01" +pladdurl2 "USA | Local | 378 | Ebru TV | Local TV | http://www.ebru.tv/" "mms://live.ebru.tv/ebru_live" +pladdurl2 "USA | Government | 150 | GOV TV | Government Television | http://www.cabq.gov/govtv/" "http://www.cabq.gov/govtv/videos/live.wvx" +pladdurl2 "USA | Local | 143 | KRQE | Local TV | http://www.krqe.com/" "mms://216.139.229.126/frontpage.wmv" +pladdurl2 "USA | Community | 190 | BCAT TV ch. 1 | Community Access TV | http://www.brooklynx.org/bcat/" "mms://141.155.201.61/channel1" +pladdurl2 "USA | Community | 190 | BCAT TV ch. 3 | Community Access TV | http://www.brooklynx.org/bcat/" "mms://141.155.201.61/channel3" +pladdurl2 "USA | Local | 1120 | WVVH | Local TV | http://www.wvvh.com/pages/1/index.htm" "mms://24.189.166.235:1098" +pladdurl2 "USA | Unknown | 300 | 770 Live | Live Synagogue in Crown Heights. One of the most famous | http://770live.com/" "mms://216.53.71.16/770live3.wmv" +pladdurl2 "USA | Unknown | 300 | 770 Live | Live Synagogue in Crown Heights. One of the most famous | http://770live.com/" "mms://216.53.71.16/770live4.wmv" +pladdurl2 "USA | Community | 190 | BCAT TV ch. 2 | TV Channel from the brooklyn Community Access | http://www.brooklynx.org/bcat/" "mms://141.155.201.61/channel2" +pladdurl2 "USA | Unknown | 80 | ICTV | Ithaca College TV from New York | http://www.ictv.org/" "http://www.ithaca.edu/ictv/ictvreal.ram" +pladdurl2 "USA | Religious | 273 | TV 26 | Religious TV | http://www.tv26newyork.com/" "mms://65.204.57.108:1067" +pladdurl2 "USA | Local | 330 | WABC | Local TV | http://abclocal.go.com/wabc/" "mms://a151.l1058843249.c10588.n.lm.akamaistream.net/D/151/10588/v0001/reflector:43249" +pladdurl2 "USA | Local | 90 | WHOHTV | Local TV | http://whoh-tv.org/" "http://whoh-tv.org/whoh.wvx" +pladdurl2 "USA | Community | 110 | CATV 12 | Community access TV | http://www.freetv.org/" "mms://207.7.154.94/catv_encoder1" +pladdurl2 "USA | Religious | 200 | GEB | Christian Network broadcasting from the campus of Oral | http://www.golden-eagle-tv.com/" "mms://ntsrv8.oru.edu/live" +pladdurl2 "USA | Religious | 350 | KGEB TV-53 | Religious TV | http://www.kgeb.net/" "http://ntsrv8.oru.edu:7070/ramgen/encoder/geb" +pladdurl2 "USA | Community | 225 | RVTV I | Community Television | http://www.roguetv.org/" "http://rvtv.roguedatavault.net/ramgen/broadcast/live/one.rm" +pladdurl2 "USA | Community | 225 | RVTV II | Community access TV | http://www.roguetv.org/" "http://rvtv.roguedatavault.net/ramgen/broadcast/live/two.rm" +pladdurl2 "USA | Community | 225 | RVTV III | Community access TV | http://www.roguetv.org/" "http://rvtv.roguedatavault.net/ramgen/broadcast/live/three.rm" +pladdurl2 "USA | Local | 539 | CN8 Mid-Atlantic | Local TV | http://www.cn8.tv/" "mms://68.87.109.4/cn8winmedia" +pladdurl2 "USA | Unknown | 150 | Beach TV | Information channel | http://www.tripsmarter.com/myrtlebeach/multimedia/tv.htm" "http://www.tripsmarter.com/multimedia/tv_flash/tv_myr_player.swf" +pladdurl2 "USA | Community | 100 | Channel 6 | Community Television | http://www.ci.austin.tx.us/channel6/" "http://www.ci.austin.tx.us/channel6/livevideo.ram" +pladdurl2 "USA | Religious | 331 | SPFV | Faith based network out of Houston that offers \"LIVE\" as | http://www.spfv.org/" "mms://secretplacetv.org/sptvbrdcst" +pladdurl2 "USA | Unknown | 273 | MISD | Mesquite Independant School District | http://www.mesquiteisd.org/" "mms://streams.mesquiteisd.org/live" +pladdurl2 "USA | Unknown | 222 | KAMU TV | College station from Tamu | http://kamu.tamu.edu" "http://winstream.kamu.tamu.edu/kamu-tv?MSWMExt=.asf" +pladdurl2 "USA | Education | 273 | BYU TV | Live from the Brigham Young University | http://www.byutv.org/" "mms://windowsmedia2.byu.edu/byutv250" +pladdurl2 "USA | Education | 273 | BYU TV | Live from the Brigham Young University | http://www.byutv.org/" "http://windowsmedia2.byu.edu/byutv250" +pladdurl2 "USA | Education | 273 | BYU TV | Live from the Brigham Young University | http://www.byutv.org/" "mms://windowsmedia2.byu.edu/byutv" +pladdurl2 "USA | Education | 273 | BYU TV | Live from the Brigham Young University | http://www.byutv.org/" "http://windowsmedia2.byu.edu/byutv" +pladdurl2 "USA | Religious | 512 | Mizpa TV | Spanish christian TV | http://www.mizpatv.com/" "mms://markoni.netpatio.com/mizpatv/mizpatv" +pladdurl2 "USA | Religious | 330 | WJDW | Religious TV | http://www.channel21.tv/" "http://www.christiannetcast.com/watch/dynamicasx.asp?station=wjdw-tv" +pladdurl2 "USA | Local | 140 | WCTV-48 | Local TV | http://www.chesapeake.va.us/" "mms://wms2.streaming.ipolis.net/ipolischesapeake/live1" +pladdurl2 "USA | Education | 141 | GMUTV | George Mason University | http://www.gmutv.gmu.edu/videoondemand.asp" "http://media.mesa.gmu.edu/capconwhite1?MSWMExt=.asf" +pladdurl2 "USA | Community | 143 | HCTV | Community Television | http://www.hctv.org/" "mms://67.15.10.109:1755/wmtencoder/hctv.wmv" +pladdurl2 "USA | Education | 331 | Annenberg | Educational TV (Seatlle Community Colleges) | http://www.scctv.net" "mms://media.scctv.net/SCCtv Broadband" +pladdurl2 "USA | Community | 280 | Scan TV | Community access TV | http://www.scantv.org/" "http://209.90.224.6/scanlive" +pladdurl2 "USA | Public TV | 270 | Scan TV | Public access TV | http://www.scantv.org/" "http://209.90.224.6/scanlive" +pladdurl2 "USA | Community | 339 | SCCT | Seattle Community Colleges TV | http://www.scctv.net/" "mms://media.scctv.net/SCCtv Broadband" +pladdurl2 "USA | Government | 450 | SeatleChannel | Government and community issues | http://www.seattlechannel.org/viewer_live.htm" "rtsp://media.ci.seattle.wa.us/encoder/TVSea.rm" +pladdurl2 "USA | Government | 225 | Seattle Ch. | City of Seattle covering government, community and | http://www.seattlechannel.org/" "rtsp://media.ci.seattle.wa.us/encoder/TVSea.rm" +pladdurl2 "USA | Government | 350 | City Cable 5 | City of Spokane's government access television | http://www.spokanecity.org/" "mms://media.spokanecity.org/100k" +pladdurl2 "USA | Web TV | 220 | Africa Hit | Web TV channel broadcasting Live African | http://www.africahit.com" "mms://www.africahit.com/Africahit" +pladdurl2 "USA | Religious | 273 | Al Karma TV | Arabic Christian TV | http://www.alkarmatv.com/" "mms://63.223.13.8/AlkarmaTV" +pladdurl2 "USA | Religious | 311 | Almavison | Hispanic Christian TV | http://almavision.com/" "http://65.38.185.20/almabroad" +pladdurl2 "USA | Music | 154 | Alternative | Talk Music and Lifestile | http://www.alternative.nu" "mms://stream.ihost.nu/nwez3" +pladdurl2 "USA | Music | 154 | Alternative | Talk Music and Lifestile | http://www.alternative.nu" "mms://stream.ihost.nu/nwez" +pladdurl2 "USA | General | 391 | America one | General TV station | http://www.americaone.com" "mms://lastream001.galaxytelevision.net/americaone" +pladdurl2 "USA | Shopping | 748 | Americas store | Shopping channel offering a broad range of | http://www.hsn.com/redirect.aspx?id=il&url=http%3A//www.hsn.com/cnt/sf/default.aspx%3Fsf%3DAS%26prev%3Dhp%26o%3D%21&afsrc=1&sourceid=wwitv1" "mms://wm-live.z1.mii-streaming.net/live/hsn/aslive" +pladdurl2 "USA | Documentaries | 100 | Animal Planet | Documentary TV | http://animal.discovery.com" "mms://a1729.l2168647534.c21686.g.lm.akamaistream.net/D/1729/21687/v0001/reflector:39904" +pladdurl2 "USA | Documentaries | 100 | Animal Planet | Documentary TV | http://animal.discovery.com" "mms://a1729.l2168647534.c21686.g.lm.akamaistream.net/D/1729/21686/v0001/reflector:55476" +pladdurl2 "USA | Education | 350 | AT TV | Video & Collaboration Services from the University of | http://video.ufl.edu/" "mms://wm.video.ufl.edu/ATTV" +pladdurl2 "USA | Sports | 147 | BYWN | Backyard Wrestling Network | http://channel125.com" "mms://channel125.com/bywn" +pladdurl2 "USA | Unknown | 245 | Cal Poly Pomona (Live stream, DSL/Cable modem rate) | Classic Arts Showcase or class session | http://video.csupomona.edu/streaming/" "mms://mid.video.csupomona.edu/liveone-245" +pladdurl2 "USA | Education | 245 | Cal Poly Pomona (Live stream, DSL/Cable modem rate) | NASA Television or other programming | http://video.csupomona.edu/streaming/" "mms://mid.video.csupomona.edu/liveTwo-245" +pladdurl2 "USA | General | 790 | CBS | General TV station | http://www.cbsnews.com/" "http://a1729.l2168647534.c21686.g.lm.akamaistream.net/D/1729/21686/v0001/reflector:53547" +pladdurl2 "USA | Web TV | 300 | Channel 125 | Web TV showing material submitted by independent | http://www.channel125.com/" "mms://channel125.com/channel125" +pladdurl2 "USA | Unknown | 256 | Channel Live TV | Urban reality TV | http://www.channellivetv.com/" "mms://channellivetv.com/channellivetv" +pladdurl2 "USA | Unknown | 270 | Coffee Shop TV | LIVE shows, featuring 8 or more live bands from | http://www.coffeeshoptv.com/" "http://the-coffeeshop.com/cstv.ram" +pladdurl2 "USA | Public TV | 130 | C-Span 1 | C-SPAN provides public affairs programming | http://www.c-span.org/" "mms://64.157.128.154/farm/pull/mtx-wes-sea04:1259/farm/pull/tx-rbn-sea39:1259/wmtencoder/cspan/cspan/wmlive/cspan1v.asf" +pladdurl2 "USA | Public TV | 130 | C-Span 2 | C-SPAN provides public affairs programming | http://www.c-span.org/" "mms://63.214.137.52/farm/pull/mtx-wes-sea01:1259/farm/pull/tx-rbn-sea06:1259/wmtencoder/cspan/cspan/wmlive/cspan2v.asf" +pladdurl2 "USA | Public TV | 130 | C-Span 3 | C-SPAN provides public affairs programming | http://www.c-span.org/watch/" "mms://63.214.137.27/farm/pull/mtx-wes-sea02:1259/farm/pull/tx-rbn-sea31:1259/wmtencoder/cspan/cspan/wmlive/cspan3v.asf" +pladdurl2 "USA | Sports | 391 | CSTV | College Sports | http://www.cstv.com/" "http://a1729.l2168647534.c21686.g.lm.akamaistream.net/D/1729/21686/v0001/reflector:55585" +pladdurl2 "USA | Unknown | 292 | C-TN | Connecticut Legislature TV | http://www.ctn.state.ct.us" "http://ctnv1.ctn.state.ct.us/ctnstream" +pladdurl2 "USA | Unknown | 292 | C-TN | Connecticut Legislature TV | http://www.ctn.state.ct.us" "http://ctnv1.ctn.state.ct.us/senatelive" +pladdurl2 "USA | Religious | 331 | CTNi | International edition of the American Christian | http://www.ctni.org/english/index.html" "mms://c1.liquidviewer.com/ctni" +pladdurl2 "USA | Religious | 150 | CTVN | Christian TV Network | http://www.ctvn.org" "mms://64.106.201.90/cornerstone" +pladdurl2 "USA | Unknown | 512 | Cyber comic | Comedy channel | http://www.tvshowcaster.com/" "mms://207.36.233.159/comedyspot" +pladdurl2 "USA | Documentaries | 350 | Discovery | Documentaries about nature, animals, environment and | http://dsc.discovery.com/beyond/player.html" "mms://59.44.46.38/kxtm" +pladdurl2 "USA | Music | 270 | EATV | Music based channel providing exclusive all-genre content and | http://www.evolvingartist.com/" "http://indieweb-eatv.wm.llnwd.net/indieweb_eatv" +pladdurl2 "USA | Unknown | 350 | EMS Firechannel | Channel dedicated to the firefighters | http://www.emsbroadcasting.com" "mms://67.18.195.100/ems1/" +pladdurl2 "USA | Unknown | 512 | EMS Police Channel | Channel dedicated to the Police | http://www.emsbroadcasting.com" "http://67.18.195.100/emspix/emsbn-intro.wmv" +pladdurl2 "USA | Unknown | 512 | EMS Police Channel | Channel dedicated to the Police | http://www.emsbroadcasting.com" "http://67.18.195.100/Police/" +pladdurl2 "USA | Sports | 100 | ESPN | Sports network | http://espn.go.com/" "rtsp://a1729.l2168647534.c21686.g.lm.akamaistream.net/D/1729/21686/v0001/reflector:53822" +pladdurl2 "USA | Religious | 400 | Faith Vision | Christian movies | http://www.faithvisionnetwork.com" "mms://faith-vision.com/faithfilmsbrdcst" +pladdurl2 "USA | Unknown | 341 | Galaxy cartoons | Cartoons | http://www.galaxytelevision.net" "http://lastream001.galaxytelevision.net/cartoonsChannel" +pladdurl2 "USA | Unknown | 500 | Gametap | Cartoon channel | http://www.gametap.com/" "mms://a1729.l2168647534.c21686.g.lm.akamaistream.net/D/1729/21687/v0001/reflector:50032" +pladdurl2 "USA | Religious | 300 | GLC | Christian TV | http://www.ptcbglc.com/" "http://viewers.multicastmedia.com/viewer/buildasx_SF.asp?streamid=3000400" +pladdurl2 "USA | Unknown | 30 | Global Country | Maharishi Channel (Maharishi Open | http://www.globalcountry.org/EasyWeb.asp?pcpid=43" "mms://a1447.l1226338259.c12263.g.lm.akamaistream.net/D/1447/12263/v0001/reflector:38259" +pladdurl2 "USA | Movies | 273 | GNF | Movies and games | http://www.gameznflix.com/" "mms://media.gameznflix.com/GNFMovies" +pladdurl2 "USA | Sports | 512 | Golf shop | Golf TV | http://www.tvshowcaster.com/" "mms://207.36.233.159/golftv" +pladdurl2 "USA | Shopping | 748 | HSN | Shopping channel offering thousands of unique products in | http://www.hsn.com/redirect.aspx?id=il&url=http%3A//www.hsn.com/&afsrc=1&sourceid=wwitv1" "mms://wm-live.z1.mii-streaming.net/live/hsn/hsnlive" +pladdurl2 "USA | Unknown | 225 | HTV | Michigan House of Representatives | http://www.house.mi.gov/" "http://www.house.mi.gov/video.ram" +pladdurl2 "USA | Shopping | 300 | Jewelry TV | Offers online products like fine Jewelry, Diamonds, | http://www.jewelrytelevision.com/" "mms://69.24.128.171/ACN300" +pladdurl2 "USA | Sports | 120 | KPBN-11 | Sports TV from Louisiana | http://www.pelicansportstv.com" "http://easylink.playstream.com/seawm1/kpbn.wvx" +pladdurl2 "USA | Unknown | 100 | Krib TV | MCs, DJs, VJs, MJs, Hip-Hop, R&B, Reggaeton, DanceHall, | http://www.thewomb.com/kribtv.htm" "mms://live.primestream.com/KribTVLive" +pladdurl2 "USA | Shopping | 110 | Lahse TV | Shopping and entertainment channel | http://www.lahse.com/" "Lahse-DSL.asx" +pladdurl2 "USA | Unknown | 500 | Lifestyle Network | Wellness, Shape, Food, Style and | http://www.lifestylenetworktv.com/" "mms://www.lifestylenetworktv.com/life" +pladdurl2 "USA | Religious | 102 | LLBN | Christian Network from California | http://www.llbn.tv/html/tvonline.html" "mms://tvonline.llbn.tv/llbn" +pladdurl2 "USA | Unknown | 500 | Mania TV (ManiaTV!300) | Pop culture, short films, talk shows | http://www.maniatv.com/" "http://stream.maniatv.com/liveembed?SessionId=7ad5a704-8240-453b-a4c2-3667d385b5f8" +pladdurl2 "USA | Unknown | 273 | Metro Studios TV26 | Wide variety of programs designed to address | http://metro-studios-ny.com/" "mms://65.204.57.108:1067" +pladdurl2 "USA | Music | 100 | Mezz TV | Rock Music | http://www.thewomb.com/mezztv.htm" "mms://live.primestream.com/mezztv" +pladdurl2 "USA | Unknown | 225 | Michigan House of Representatives | Live coverage of the Michigan | http://house.michigan.gov/" "http://www.house.mi.gov/video.ram" +pladdurl2 "USA | Music | 700 | MTV Uber | Populair music | http://www.mtvu.com/" "mms://a1729.l2168647534.c21686.g.lm.akamaistream.net/D/1729/21687/v0001/reflector:50505" +pladdurl2 "USA | Unknown | 330 | Music Plus TV | A Los Angeles-based live Internet TV station that | http://www.musicplustv.com/" "mms://musicplus-musicplustv.wm.llnwd.net/musicplus_musicplustv" +pladdurl2 "USA | Education | 150 | NASA TV | Follow every step of NASA with NASA TV LIVE | http://science.ksc.nasa.gov/shuttle/countdown/video/video.html" "http://science.ksc.nasa.gov/cgi-bin/rrg2.pl?encoder/nasatv.rm" +pladdurl2 "USA | Education | 200 | NASA TV | Follow every step of NASA with NASA TV LIVE | http://science.ksc.nasa.gov/shuttle/countdown/video/video.html" "mms://a999.l1856946819.c18569.g.lm.akamaistream.net/D/999/18569/v0001/reflector:46819 46819 -" +pladdurl2 "USA | Documentaries | 350 | National Geographic | Documentary TV | http://www.nationalgeographic.com/" "mms://59.44.46.38/sjzc" +pladdurl2 "USA | News | 300 | NBC | Recorded news | http://www.nbc.com/" "mms://msnbc.wmod.llnwd.net/a275/e1/video/100/vh.asf" +pladdurl2 "USA | Weather | 290 | NBC Weatherplus | US Weather forecast. National forecast, local | http://www.nbcweatherplus.com/" "http://a353.l817842352.c8178.g.lm.akamaistream.net/D/353/8178/v0001/reflector:42352" +pladdurl2 "USA | Unknown | 250 | NBR | Recorded Business Report | http://www.pbs.org/nbr/" "mms://wm.z1.mii-streaming.net/media/pbs/windows/general/windows/nbr/nbr_hi.wmv" +pladdurl2 "USA | Unknown | 141 | Nueva Era TV | A channel in the spanish language with new era, | http://www.nuevaeratv.com/" "mms://nuestraraza.com/nuevaeratv" +pladdurl2 "USA | Unknown | 280 | Nueva Vidavision | Cultural alternative TV for the Hispanic | http://nuestraraza.com/" "mms://nuestraraza.com/nuevavidavision" +pladdurl2 "USA | Sports | 270 | Online Racing | Parimutuel racing | http://www.onlineracing.tv" "http://onlineracing.streamguys.com/Dania" +pladdurl2 "USA | Unknown | 273 | OntopTV (OnTopTV.com) | Hip-Hop and R&B video's | http://www.ontoptv.com" "http://64.71.165.133/ontoptv" +pladdurl2 "USA | Unknown | 273 | OntopTV (OnTopTV.com) | Hip-Hop and R&B video's | http://www.ontoptv.com" "http://64.71.165.131/ontoptv" +pladdurl2 "USA | Unknown | 273 | OntopTV (OnTopTV.com) | Hip-Hop and R&B video's | http://www.ontoptv.com" "mms://64.71.165.133/ontoptv" +pladdurl2 "USA | Unknown | 273 | OntopTV (OnTopTV.com) | Hip-Hop and R&B video's | http://www.ontoptv.com" "mms://64.71.165.131/ontoptv" +pladdurl2 "USA | Unknown | 273 | OntopTV (OnTopTV.com) | Hip-Hop and R&B video's | http://www.ontoptv.com" "http://64.71.165.131/ontoptv" +pladdurl2 "USA | Unknown | 273 | OntopTV (OnTopTV.com) | Hip-Hop and R&B video's | http://www.ontoptv.com" "http://64.71.165.133/ontoptv" +pladdurl2 "USA | Unknown | 273 | OntopTV (OnTopTV.com) | Hip-Hop and R&B video's | http://www.ontoptv.com" "mms://64.71.165.131/ontoptv" +pladdurl2 "USA | Unknown | 273 | OntopTV (OnTopTV.com) | Hip-Hop and R&B video's | http://www.ontoptv.com" "mms://64.71.165.133/ontoptv" +pladdurl2 "USA | Unknown | 200 | Pentagon channel | Militairy TV | http://www.pentagonchannel.mil/" "mms://c9o.earthcache.net/fbgaofhwdbheigbe/COMP001916SCH1_pentagon_bb.wmv" +pladdurl2 "USA | Community | 273 | Proud TV | TV for the gay community | http://www.pridenation.com/" "http://btncorp-ProudTV.wm.llnwd.net/btncorp_ProudTV" +pladdurl2 "USA | Shopping | 100 | QVC | Offers a broad range of products | http://www.qvc.com/" "mms://a1187.l1080433186.c10804.g.lm.akamaistream.net/D/1187/10804/v0001/reflector:33186" +pladdurl2 "USA | Sports | 512 | Race Online | Autosports channel | http://www.tvshowcaster.com/" "mms://207.36.233.159/raceonline" +pladdurl2 "USA | Unknown | 110 | Rang-A-Rang | TV station dedicated to the Persian speaking | http://www.rang-a-rang.com/" "RAR-ISDN.asx" +pladdurl2 "USA | Unknown | 110 | Rang-A-Rang | TV station dedicated to the Persian speaking | http://www.rang-a-rang.com/" "Rang-A-Rang-Live.asx" +pladdurl2 "USA | Unknown | 391 | ReelGood TV | Live continuous stream featuring award winning | http://reelgood.tv/" "mms://www.reelgood.tv/reelgoodtv" +pladdurl2 "USA | Education | 1500 | Research channel | The research TV channel of the University of | http://www.researchchannel.org/prog/" "mms://media-wm.cac.washington.edu/ResearchTV Live (HIGH)" +pladdurl2 "USA | Education | 1500 | Research channel | The research TV channel of the University of | http://www.researchchannel.org/prog/" "mms://media-wm.cac.washington.edu/ResearchTV Live (LAN)" +pladdurl2 "USA | Unknown | 531 | Rock Me TV | Live Performances and Interviews | http://www.rockmetv.com/" "mms://wmlive.vitalstreamcdn.com/live_rockmetv_vitalstream_com_Rockmetv" +pladdurl2 "USA | Unknown | 531 | Rock Me TV (RMTV Trailer) | Live Performances and Interviews | http://www.rockmetv.com/" "mms://wm.vitalstreamcdn.com/rockmetv_vitalstream_com/Default/15Minute_Trailer.wmv" +pladdurl2 "USA | Unknown | 531 | Rock Me TV (SlowFall - \"Eraser\") | Live Performances and Interviews | http://www.rockmetv.com/" "mms://wm.vitalstreamcdn.com/rockmetv_vitalstream_com/Default/SlowFall_Eraser.wmv" +pladdurl2 "USA | Unknown | 531 | Rock Me TV (Deemi - \"Tree'd Up\") | Live Performances and Interviews | http://www.rockmetv.com/" "mms://wm.vitalstreamcdn.com/rockmetv_vitalstream_com/Default/Deemi_TreedUp.wmv" +pladdurl2 "USA | Unknown | 531 | Rock Me TV (Edison - \"Fly\") | Live Performances and Interviews | http://www.rockmetv.com/" "mms://wm.vitalstreamcdn.com/rockmetv_vitalstream_com/Default/Edison_Fly.wmv" +pladdurl2 "USA | Unknown | 531 | Rock Me TV (Go Yuki - \"Time Card\") | Live Performances and Interviews | http://www.rockmetv.com/" "mms://wm.vitalstreamcdn.com/rockmetv_vitalstream_com/Default/GoYuki_TimeCard.wmv" +pladdurl2 "USA | Unknown | 531 | Rock Me TV (KNS - \"I'm Out\") | Live Performances and Interviews | http://www.rockmetv.com/" "mms://wm.vitalstreamcdn.com/rockmetv_vitalstream_com/Default/KNS_ImOut.wmv" +pladdurl2 "USA | Unknown | 531 | Rock Me TV (Lisa Marie Presley - \"Idiot\") | Live Performances and Interviews | http://www.rockmetv.com/" "mms://wm.vitalstreamcdn.com/rockmetv_vitalstream_com/Default/LisaMariePresley_Idiot.wmv" +pladdurl2 "USA | Unknown | 531 | Rock Me TV (Chelsea Field - Live) | Live Performances and Interviews | http://www.rockmetv.com/" "mms://wm.vitalstreamcdn.com/rockmetv_vitalstream_com/Default/ChelseaField_Live.wmv" +pladdurl2 "USA | Sports | 500 | Shop at home | Offers online products like coins, knives, sports | http://www.shopathometv.com/" "http://69.24.128.171/SAH300" +pladdurl2 "USA | Unknown | 512 | Skreem TV Ch. 1 | 24/7 best of r&b and hiphop videos without | http://www.skreem.tv/" "mms://skreem.tv/skreemMain" +pladdurl2 "USA | Music | 512 | Skreem TV Ch. 2 | Country music | http://www.skreem.tv" "mms://skreem.tv/skreemCountry" +pladdurl2 "USA | Music | 512 | Skreem TV Ch. 3 | Rock Music | http://www.skreem.tv" "mms://skreem.tv/skreemRock" +pladdurl2 "USA | Music | 512 | Skreem TV Ch. 4 | Latin music | http://www.skreem.tv" "mms://skreem.tv/skreemLatin" +pladdurl2 "USA | Music | 512 | Skreem TV Ch. 5 | Hip Hop music | http://www.skreem.tv" "mms://skreem.tv/skreemHipHop" +pladdurl2 "USA | Religious | 200 | SMTV | Spiritual channel | http://suprememastertelevision.com" "mms://222.122.140.48/smtv_live" +pladdurl2 "USA | Religious | 200 | SMTV | Spiritual channel | http://suprememastertelevision.com" "mms://222.122.160.83/smtv_live" +pladdurl2 "USA | Sports | 273 | SSPTV | Sam-Son Productions Television, 24/7, News, Sports, and | http://www.ssptv.com" "mms://66.152.137.2:8080/" +pladdurl2 "USA | Education | 98 | Strawberry TV | Entertaining & Educational Internet TV from the Deep | http://www.strawberrytv.com/" "mms://media1.i-55.com/strawberrytv" +pladdurl2 "USA | Music | 291 | Stver | Armenian music | http://www.stvertv.com/" "mms://66.118.185.106/PP2" +pladdurl2 "USA | Religious | 377 | Telegracia | Christian TV (spanish) from Miami | http://www.creciendoengracia.com/telegracia/" "mms://69.0.243.101/CalqueosHigh" +pladdurl2 "USA | Public TV | 182 | TVW | Located in Washington. Public policy events | http://www.tvw.org/media/" "mms://198.239.32.152/TVWVideo" +pladdurl2 "USA | Education | 225 | UATV | Broadcasting from Anchorage: Nasa TV, Bachelor of Business | http://uatv.alaska.edu/" "http://uasmedia.uas.alaska.edu/ramgen/broadcast/live.rm" +pladdurl2 "USA | Education | 151 | UCTV | The educational tv network for the University of | http://www.uctv.tv/" "http://webcast.ucsd.edu:8080/ramgen/broadcast/uctv1.rm" +pladdurl2 "USA | Education | 400 | UMTV | University of Michigan Television - various | http://www.itcom.itd.umich.edu/streaming/webcasts.html" "http://ummedia02.rs.itd.umich.edu/avs02?MSWMExt=.asf" +pladdurl2 "USA | Unknown | 100 | UN press briefings | Live and archived press biefings | http://www.un.org/webcast" "rtsp://webcast.un.org/specialevents/comp4.rm" +pladdurl2 "USA | Unknown | 100 | UN press briefings | Live and archived press biefings | http://www.un.org/webcast" "rtsp://webcast.un.org/specialevents/comp4.rm" +pladdurl2 "USA | Unknown | 100 | UN press briefings | Live and archived press biefings | http://www.un.org/webcast" "rtsp://webcast.un.org/specialevents/comp4.rm" +pladdurl2 "USA | Education | 250 | UW2TV | University of Washington TV, channel 2 | http://www.washington.edu/uw2tv/" "mms://media-wm.cac.washington.edu/UW2 Live (LAN)" +pladdurl2 "USA | Education | 220 | UWTV | TV from the University of Washington | http://www.uwtv.org/" "mms://media-wm.cac.washington.edu/UWTV Live (LAN)" +pladdurl2 "USA | Education | 220 | UWTV | TV from the University of Washington | http://www.uwtv.org/" "mms://media-wm.cac.washington.edu/UWTV Live (modem)" +pladdurl2 "USA | Unknown | 225 | VSU TV | Students in the television area work with VSU-TV, South | http://vsutv.valdosta.edu/" "http://cinema.valdosta.edu:8080/ramgen/broadcast/vsutv.rm" +pladdurl2 "USA | General | 400 | WCSN | General sports channel | http://www.wcsn.com/" "mms://a1729.l2168647534.c21686.g.lm.akamaistream.net/D/1729/21687/v0001/reflector:49664" +pladdurl2 "USA | Weather | 347 | Weather channel | US Weather forecast | http://www.weather.com/" "rtsp://twc.wmod.llnwd.net/a189/e1/multimedia/video/limelight/topstory_bb.asf" +pladdurl2 "USA | Religious | 300 | WFK Channel | Christian channel | http://wwitv.com/unknown.htm" "mms://70.159.56.190:8080" +pladdurl2 "USA | Shopping | 200 | WMCI TV | Not always online. High end production facility located on | http://www.wmcitv.org/" "mms://24.75.233.254/live-200.wmv" +pladdurl2 "USA | Web TV | 225 | Word on da streets | Web TV with hip hop video clips | http://www.tvshowcaster.com/images/internet_tv_wods.htm" "mms://207.36.233.159/wordondastreets" +pladdurl2 "USA | Unknown | 150 | Young Turks | Progressive talk radio & webTV. Live Mon-Fri | http://www.theyoungturks.com/" "mms://youngturks-live.wm.llnwd.net/youngturks_live" +pladdurl2 "Uzbekistan | Unknown | 120 | TV Uzbekistan | | http://mtrk.uz" "mms://195.158.8.205:8010/" +pladdurl2 "Uzbekistan | Unknown | 120 | TV Yoshlar | | http://mtrk.uz" "mms://195.158.8.206:8010/" +pladdurl2 "Vatican city | Religious | 300 | Sat2000 | Catholic channel | http://www.sat2000.it" "mms://82.85.10.130/Sat2000" +pladdurl2 "Vatican city | Unknown | 200 | Vatican TV | Only transmitting during some parts of the day when | http://www.radiovaticana.org/" "mms://mediawm.vatican.va:80/livewm/vaticanb_200" +pladdurl2 "Vatican city | Unknown | 200 | Vatican TV | Only transmitting during some parts of the day when | http://www.radiovaticana.org/" "mms://62.77.60.85/rb" +pladdurl2 "Venezuela | National TV | 45 | ANTV | The National Assembly | http://www.antv.gob.ve/" "mms://80.84.129.169/antv45" +pladdurl2 "Venezuela | Unknown | 273 | Avila TV | | http://www.canaldenoticias.tv/" "mms://200.7.112.2/DirectoAvilaTv" +pladdurl2 "Venezuela | Regional TV | 273 | Avila TV | Regional television channel created by the Venezuelan | http://www.avila.tv/" "mms://200.7.112.2/DirectoAvilaTv" +pladdurl2 "Venezuela | General | 75 | RCTV | General TV station | http://www.rctv.net/" "mms://cluster314.streameu.com/RCTV" +pladdurl2 "Venezuela | General | 250 | Telesur TV | General TV station | http://www.arcoiris.tv/" "mms://streaming2.arcoiris.tv/adsl" +pladdurl2 "Venezuela | Unknown | 64 | TVS 32 | TV from Maracay | http://www.tvs.net.ve/" "mms://200.31.137.234:8080" +pladdurl2 "Venezuela | Government | 100 | Venezolana de TV | Government television with diversified | http://www.vtv.gov.ve/" "http://streaming.impsat.net.ve/vtv" +pladdurl2 "Venezuela | Unknown | 100 | VIVE TV | Ministry of communication and information | http://www.vive.gob.ve/" "http://streaming.impsat.net.ve/vive_tv" +pladdurl2 "Venezuela | Web TV | 273 | Whitezoom | Web TV | http://whitezoomchannel.com/" "mms://tv1.a1network.us/wzc" +pladdurl2 "Vietnam | Unknown | 273 | Hanoi TV | Not always online | http://hanoitv.org.vn" "mms://203.162.1.217/HTV" +pladdurl2 "Vietnam | General | 273 | HTV | General TV station with sports from Hanoi | http://www.hanoitv.org.vn/" "mms://203.162.1.217/HTV" +pladdurl2 "Vietnam | General | 273 | HTV | General TV station with sports from Hanoi | http://www.hanoitv.org.vn/" "http://www.vtc.com.vn/view_media.aspx?lpid=12" +pladdurl2 "Vietnam | Unknown | 300 | HTV9 | Ho Chi Minh City TV | http://www.htv.com.vn/" "mms://mail.vtc.com.vn/vtchtv9_113030" +pladdurl2 "Vietnam | Unknown | 250 | VTV1 | | http://www.vtc.com.vn/" "mms://mail.vtc.com.vn/vtv1_163429" +pladdurl2 "Zimbabwe | Unknown | 120 | Mabonakude | Recorded streams available on website | http://www.mabonakude.com/" "mms://212.72.165.19/mabonakude" Index: /trunk/src/player/tv/src/xml.d =================================================================== --- /trunk/src/player/tv/src/xml.d (revision 84) +++ /trunk/src/player/tv/src/xml.d (revision 84) @@ -0,0 +1,1146 @@ +import std.file; +import std.stream; +import std.string; +import std.c.windows.windows; + +extern (C) int strtol(char *,char **,int); + +const int XML_STAG_NORMAL =1; +const int XML_STAG_EMPTY =2; +const int XML_STAG_PI =3; +const int XML_STAG_CDATA =4; +const int XML_STAG_COMMENT =5; +const int XML_STAG_DOCTYPE =6; +const int XML_STAG_ENTITY =7; +const int XML_STAG_ELEMENT =8; +const int XML_STAG_ATTLIST =9; +const int XML_STAG_NOTATION =10; +const int XML_STAG_IGNORE =11; +const int XML_STAG_INCLUDE =12; + +const int XML_ENTITY_PE =1; +const int XML_ENTITY_SYSTEM =2; +const int XML_ENTITY_PUBLIC =4; +const int XML_ENTITY_NDATA =8; + +int XML_CASESENSITIVE=1; + +int xml_iswhitespace(char r) +{ + if(r==0x20 || r==0x9 || r==0xD || r==0xA) return 1; + else return 0; +} + +int xml_isnamestartchar(char r) +{ + if((r>='a' && r<='z') || (r>='A' && r<='Z') || r=='_' || r==':' || (r>=0xC1 && r<=0xD6) || (r>=0xD8 && r<=0xF6) || (r>=0xF8 && r<=0x2FF) || (r>=0x370 && r<=0x37D) || (r>=0x37F && r<=0x1FFF) || (r>=0x200C && r<=0x200D) || (r>=0x2070 && r<=0x218F) || (r>=0x2C00 && r<=0x2FEF) || (r>=0x3001 && r<=0xD7FF) || (r>=0xF900 && r<=0xFDCF) || (r>=0xFDF0 && r<=0xFFFD) || (r>=0x10000 && r<=0xEFFFF)) return 1; + else return 0; +} + +int xml_isnamechar(char r) +{ + if(xml_isnamestartchar(r) || (r>='0' && r<='9') || r=='.' || r=='-' || r==0xB7 || (r>=0x0300 && r<=0x036F) || (r>=0x203F && r<=0x2040)) return 1; + else return 0; +} + +int xml_iseq(char r) +{ + if(r=='=') return 1; + else return 0; +} + +int xml_read_whitespace(char[] buffer) +{ + int c; + for(;c0)?c:-1); +} + +int xml_read_name(char[] buffer,inout char[] ret) +{ + if(buffer.length==0) return -1; + if(!xml_isnamestartchar(buffer[0])) return -1; + uint c=1; + for(;c=0) return ret+ret2+1; + else return ret+1; + } + return -1; + } + + int len=-1,t; + ret=new XMLattrib; + if(xml_read_name(buffer,ret.name)>0) + { + int eq=read_eq(buffer[ret.name.length..buffer.length]); + if(eq>0) + { + ret.value=xml_read_quoted(buffer[(ret.name.length+eq)..buffer.length]); + int mv=ret.value.length; + char[] smtp; + xml_derefence(parent,null,ret.value,smtp); + ret.value=smtp; + len=ret.name.length+eq+mv+2; + } + } + return len; + } + + XMLattrib r; + int len=0; + int alllen=0; + for(;;) + { + len=read_attribute(parent,buffer[alllen..buffer.length],r); + if(len>=0) + { + alllen+=len; + len=xml_read_whitespace(buffer[alllen..buffer.length]); + if(len>=0) alllen+=len; + ret~=r; + } + else + { + if(alllen==0) alllen=-1; + break; + } + } + return alllen; +} + +int xml_find_notquoted(char[] buffer,char[] str) +{ + int ppp=0,lastshit=0,pp2=0,pp3=0,ppm=0,fl=0,end=0; + for(;;) + { + ppp=find(buffer[lastshit..buffer.length],str); + if(ppp<0) return -1; + ppm=lastshit; + end=lastshit+ppp; + for(;;) + { + pp2=find(buffer[ppm..buffer.length],'"'); + pp3=find(buffer[ppm..buffer.length],'\''); + if((pp2<0 || pp2+ppm>end) && (pp3<0 || pp3+ppm>end)) + { + fl=1; + lastshit=end; + break; + } + else if(pp2end) + { + ppm+=pp2+1; + pp2=find(buffer[ppm..buffer.length],'"'); + if(pp2<0) return -1; + ppm+=pp2+1; + if(ppm>=end) + { + lastshit=ppm; + break; + } + } + else if(pp3end) + { + ppm+=pp3+1; + pp3=find(buffer[ppm..buffer.length],'\''); + if(pp3<0) return -1; + ppm+=pp3+1; + if(ppm>=end) + { + lastshit=ppm; + break; + } + } + } + if(fl) break; + } + return lastshit; +} + +int xml_read_stag(char[] buffer,inout char[] ret,inout int type) +{ + type=0; + if(buffer.length<2) return -1; + if(buffer[0]=='<') + { + int ret2=find(buffer,'>'); + if(ret2<1) return -1; + if(buffer[1]=='!') + { + int indent_comment(char[] buffer) + { + if(buffer.length<5) return 0; + if(buffer[0..2]!="--") return 0; + int ret=find(buffer[2..buffer.length],"-->"); + if(ret<0) return 0; + else + { + type=XML_STAG_COMMENT; + return ret+6; + } + } + + int indent_doctype(char[] buffer) + { + if(buffer.length<8) return 0; + if(buffer[0..7]!="DOCTYPE") return 0; + int lastshit=7; + int ppp=xml_find_notquoted(buffer[lastshit..buffer.length],"["); + if(ppp>=0) + { + lastshit+=ppp; + ppp=xml_find_notquoted(buffer[lastshit..buffer.length],"]"); + if(ppp>=0) lastshit+=ppp; + else return 0; + } + int ret=xml_find_notquoted(buffer[lastshit..buffer.length],">"); + if(ret<0) return 0; + else + { + type=XML_STAG_DOCTYPE; + return ret+lastshit+2; + } + } + + int indent_cdata(char[] buffer) + { + if(buffer.length<10) return 0; + if(buffer[0..7]!="[CDATA[") return 0; + int ret=find(buffer[8..buffer.length],"]]>"); + if(ret<0) return 0; + else + { + type=XML_STAG_CDATA; + return ret+12; + } + } + + int indent_entity(char[] buffer) + { + if(buffer.length<7) return 0; + if(buffer[0..6]!="ENTITY") return 0; + int ret=xml_find_notquoted(buffer[7..buffer.length],">"); + if(ret<0) return 0; + else + { + type=XML_STAG_ENTITY; + return ret+9; + } + } + + ret2=indent_comment(buffer[2..buffer.length]); + if(!ret2) ret2=indent_doctype(buffer[2..buffer.length]); + if(!ret2) ret2=indent_cdata(buffer[2..buffer.length]); + if(!ret2) ret2=indent_entity(buffer[2..buffer.length]); + /*if(!ret2) ret2=indent_element(buffer[2..buffer.length]); + if(!ret2) ret2=indent_attlist(buffer[2..buffer.length]); + if(!re2t) ret2=indent_notation(buffer[2..buffer.length]); + if(!ret2) ret2=indent_ignore(buffer[2..buffer.length]); + if(!ret2) ret2=indent_include(buffer[2..buffer.length]);*/ + if(!ret2) return -1; + + /*7 + 9 + 10 + 10 + 10 + 11 + 12 + 13 + 14*/ + } + else if(buffer[1]=='?') + { + if(buffer[ret2-1]=='?') type=XML_STAG_PI; + else return -1; + } + else if(buffer[ret2-1]=='/') type=XML_STAG_EMPTY; + else type=XML_STAG_NORMAL; + ret=buffer[0..ret2+1]; + return ret2+1; + } + return -1; +} + +int xml_read_etag(char[] buffer,char[] name,inout char[] ret) +{ + static int search_etag(char[] buffer,char[] name,inout char[] ret) + { + int l=0,l2=0,t=0,start=0; + for(;start=buffer.length) return -1; + if(buffer[t]=='>') l2=t+1; + else + { + l2=xml_read_whitespace(buffer[t..buffer.length]); + if(l2<0) l2=0; + if(buffer[t+l2]=='>') l2=t+l2+1; + else + { + start=t+l2; + continue; + } + } + ret=buffer[start..l2]; + return start; + } + } + return -1; + } + + static int search_stag(char[] buffer,char[] name,inout char[] ret) + { + int l=0,l2=0,t=0,start=0; + for(;start') {l2=t+l; break;} else {start=t;continue;}} + t+=l; + l2=find(buffer[t..buffer.length],'>'); + if(l2<0) return -1; + else if(buffer[t+l2-1]=='/') + { + start=t+l2; + continue; + } + else + { + l2=t+l2; + break; + } + } + ret=buffer[start..l2+1]; + return start; + } + + char[] name2="=0) + { + ret2+=l2; + l1=search_stag(rest1,name1,m1); + if(l1>=0) + { + ret1+=l1; + if(ret1>ret2) break; + else + { + ret2+=m2.length; + ret1+=m1.length; + rest1=rest1[l1+m1.length..rest1.length]; + rest2=rest2[l2+m2.length..rest2.length]; + } + } + else break; + } + else return -1; + } + ret=buffer[0..ret2]; + return m2.length; +} + +int xml_read_unknown(XML parent,char[] buffer,inout XMLnode ret) +{ + int l=0; + uint start=0; + if(!ret) ret=new XMLnode; + for(;;) + { + l=find(buffer[start..buffer.length],'<'); + if(l<0) l=buffer.length-start; + if(l>0) + { + ret.value~=buffer[start..start+l]; + start+=l; + } + if(start=0) + { + if(tmp) + { + if((type==XML_STAG_NORMAL || type==XML_STAG_EMPTY)) + { + tmp.parent=ret; + char[] smtp; + xml_derefence(parent,null,tmp.value,smtp); + tmp.value=smtp; + ret.children~=tmp; + } + else if(type==XML_STAG_CDATA && tmp.value.length) ret.value~=tmp.value; + } + start+=l; + } + else return -1; + } + else break; + } + return 1; +} + +int xml_parse_entity(XML parent,char[] buffer) +{ + static int read_entity_value(char[] buffer,inout char[] ret) + { + ret=xml_read_quoted(buffer); + if(!ret) return -1; + else return ret.length+2; + } + + static int read_entity_exteranlid(char[] buffer,inout XMLentity ntity) + { + static int read_system(char[] buffer,inout XMLentity ntity) + { + int r=-1; + if(buffer.length<9) return -1; + if(buffer[0..6]=="SYSTEM") + { + int t=xml_read_whitespace(buffer[6..buffer.length]); + if(t<0) return -1; + t+=6; + ntity.systemliteral=xml_read_quoted(buffer[t..buffer.length]); + if(!ntity.systemliteral) return -1; + ntity.flags|=XML_ENTITY_SYSTEM; + r=t+ntity.systemliteral.length+2; + } + return r; + } + + if(buffer.length<8) return -1; + int t; + if(buffer[0..6]=="SYSTEM") return read_system(buffer,ntity); + else if(buffer[0..6]=="PUBLIC") + { + t=xml_read_whitespace(buffer[6..buffer.length]); + if(t<0) return -1; + t+=6; + ntity.pubidliteral=xml_read_quoted(buffer[t..buffer.length]); + if(!ntity.pubidliteral) return -1; + t+=ntity.pubidliteral.length+2; + int t2=xml_read_whitespace(buffer[t..buffer.length]); + if(t2<0) return -1; + t+=t2; + ntity.systemliteral=xml_read_quoted(buffer[t..buffer.length]); + if(!ntity.systemliteral) return -1; + ntity.flags|=XML_ENTITY_PUBLIC; + return t+ntity.systemliteral.length+2; + } + return -1; + } + + static int read_entity_ndata(char[] buffer,inout XMLentity ntity) + { + if(buffer.length<8) return 0; + int t=xml_read_whitespace(buffer); + if(t<0) return 0; + int t6=t+5; + if(t6>=buffer.length) return 0; + if(buffer[t..t6]!="NDATA") return 0; + t=xml_read_whitespace(buffer[t6..buffer.length]); + if(t<0) return -1; + t+=t6; + if(xml_read_name(buffer[t..buffer.length],ntity.ndata)<0) return -1; + t+=ntity.ndata.length; + ntity.flags|=XML_ENTITY_NDATA; + return t+ntity.ndata.length; + } + + static int read_entitydef(char[] buffer,inout XMLentity ntity) + { + int ret=read_entity_value(buffer,ntity.ogvalue); + if(ret<0) + { + ret=read_entity_exteranlid(buffer,ntity); + if(ret>=0) + { + int t=read_entity_ndata(buffer[ret..buffer.length],ntity); + if(t>=0) ret+=t; + else ret=-1; + } + } + return ret; + } + + static int read_pedef(char[] buffer,inout XMLentity ntity) + { + int ret=read_entity_value(buffer,ntity.ogvalue); + if(ret<0) return read_entity_exteranlid(buffer,ntity); + return ret; + } + + if(buffer.length<9) return -1; + char[] buff=buffer[8..buffer.length-1]; + if(!buff.length) return -1; + XMLentity entity=new XMLentity; + int t=xml_read_whitespace(buff),s; + if(t<0) return -1; + s+=t; + if(buff[s]=='%') + { + entity.flags|=XML_ENTITY_PE; + s++; + if(s>=buff.length) return -1; + t=xml_read_whitespace(buff[s..buff.length]); + if(t<0) return -1; + s+=t; + } + if(xml_read_name(buff[s..buff.length],entity.name)<0) return -1; + s+=entity.name.length; + t=xml_read_whitespace(buff[s..buff.length]); + if(t<0) return -1; + s+=t; + if(entity.flags&XML_ENTITY_PE) t=read_pedef(buff[s..buff.length],entity); + else t=read_entitydef(buff[s..buff.length],entity); + if(t<0) return -1; + if(!(entity.flags&XML_ENTITY_PE)) if(xml_derefence(parent,entity.name,entity.ogvalue,entity.value)<0) return -1; + parent.entities[entity.name]=entity; + parent.entitiesorder~=entity.name; + return 1; +} + +int xml_parse_pi(XML parent,char[] buffer) +{ + if(buffer.length<5) return -1; + int end=buffer.length-2; + char[] name; + if(xml_read_name(buffer[2..end],name)<0) return -1; + int s=2+name.length; + int l=xml_read_whitespace(buffer[s..end]); + if(l<0) return -1; + s+=l; + char[] data=buffer[s..end]; + if(l==0 && data.length) return -1; + return parent.OnPI(name,data); +} + +int xml_read_element(XML parent,char[] buffer,inout XMLnode ret,inout int type) +{ + int total=0; + char[] c; + int l=xml_read_stag(buffer,c,type); + if(l<=0) return -1; + total+=l; + if(type==XML_STAG_CDATA || type==XML_STAG_NORMAL || type==XML_STAG_EMPTY) if(!ret) ret=new XMLnode; + if(type==XML_STAG_CDATA) + { + ret.value~=c; + return total; + } + else if(type!=XML_STAG_PI && type!=XML_STAG_ENTITY && type>2) + { + parent.OnExclamation(c,type); + return total; + } + else if(type==XML_STAG_PI) + { + if(xml_parse_pi(parent,c)<0) return -1; + return total; + } + else if(type==XML_STAG_ENTITY) + { + if(xml_parse_entity(parent,c)<0) return -1; + return total; + } + if(xml_read_name(c[1..c.length],ret.name)<0) return -1; + l=xml_read_whitespace(c[ret.name.length+1..c.length]); + if(l>0) l=xml_read_attributes(parent,c[l+ret.name.length+1..c.length],ret.attributes); + if(type!=XML_STAG_EMPTY) + { + char[] content; + l=xml_read_etag(buffer[c.length..buffer.length],ret.name,content); + if(l>=0) + { + total+=l; + if(content.length) + { + total+=content.length; + l=xml_read_unknown(parent,content,ret); + if(l<0) return -1; + } + } + else return -1; + } + return total; +} + +int xml_derefence(XML parent,char[] parentent,char[] buffer,inout char[] ret) +{ + int s,r,r2,sr; + char[] ref,deref; + for(;;) + { + if(s>=buffer.length) break; + r=find(buffer[s..buffer.length],'&'); + if(r<0) + { + ret~=buffer[s..buffer.length]; + break; + } + sr=s+r; + r2=find(buffer[sr..buffer.length],';'); + if(r2<1) return -1; + ret~=buffer[s..sr]; + s=sr+r2; + sr++; + ref=buffer[sr..s]; + s++; + // + if(ref[0]=='#') + { + deref=null; + for(int chr;;) + { + if(ref.length<2) return -1; + if(ref[1]=='x') + { + if(ref.length<3) return -1; + char[] refText = ref[2..ref.length]; + chr=strtol(refText.ptr,null,16); + } + else + { + char[] refText = ref[1..ref.length]; + chr=strtol(refText.ptr,null,10); + } + deref~=cast(char)chr; + if(s>=buffer.length) break; + if(buffer[s]=='#') + { + r=find(buffer[s..buffer.length],';'); + if(r>0) + { + sr=s+r; + ref=buffer[s..sr]; + s=sr+1; + } + } + else break; + } + } + else + { + if(parentent.length && deref==parentent) return -1; + XMLentity *e=ref in parent.entities; + if(!e) return -1; + deref=e.value; + } + ret~=deref; + } + return ret.length; +} + +char[] xml_enreference(XML parent,char[] buffer) +{ + char[] ret=replace(buffer,"&","&"); + ret=replace(ret,"<","<"); + ret=replace(ret,">",">"); + ret=replace(ret,"'","'"); + return replace(ret,"\"","""); +} + +debug{ +private import std.stdio; +} + +const int XML_RUN_ONSELF =1; +const int XML_RUN_ONCHILDREN =2; +const int XML_RUN_RECURSIVE =4; + +class akObject +{ + this(){_ak_thisid=++___ak_lastid;} + uint _ak_thisid; + private static uint ___ak_lastid; +} + +class XMLentity +{ + this(){}; + this(char[] name,char[] value){name=name;value=value;} + + int Write(Stream outt) + { + int ret=0; + if(outt.isOpen && outt.writeable) + { + ret=1; + if(flags&XML_ENTITY_PE) outt.writef("\n"); + } + return ret; + } + + char[] name; + char[] value; + char[] ogvalue; + char[] ndata; + char[] systemliteral; + char[] pubidliteral; + int flags; +} + +class XMLattrib +{ + this(){}; + this(char[] name,char[] value){SetName(name);SetValue(value);}; + + char[] GetName(){return name;} + char[] GetValue(){return value;} + void SetName(char[] name){name=name;} + void SetValue(char[] value){value=value;} + + char[] name; + char[] value; +} + +class XMLnode : akObject +{ + this(){}; + this(char[] name,char[] value){setName(name);setValue(value);}; + + char[] getName(){return name;} + char[] getValue(){return value;} + void setName(char[] name){name=name;} + void setValue(char[] value){value=value;} + + int Write(XML xmlparent,Stream outt,int indent=-1) + { + int ret=0; + if(outt.isOpen && outt.writeable) + { + ret=1; + int isempty=(!children.length && !value.length); + if(name.length) + { + for(int c=0;c"); + if((!value.length && !isempty) || (isempty && ((parent && !parent.value) || !parent))) outt.writef("\n"); + } + if(value.length) outt.writef("%s",xml_enreference(xmlparent,value)); + for(int c=0;c\n",name); + } + } + return ret; + } + + int Run(int function(inout XMLnode v,void *args,TypeInfo[] argtypes) dg,int flags=XML_RUN_ONSELF,...) {return RunA(dg,flags,_argptr,_arguments);} + + int RunA(int function(inout XMLnode v,void *args,TypeInfo[] argtypes) dg,int flags,void *args,TypeInfo[] argtypes) + { + if(flags&XML_RUN_ONSELF) {if(!dg(this,args,argtypes)) return 0;} + if(flags&XML_RUN_RECURSIVE) {for(int c=0;c=children.length) return null; + else return children[index]; + } + + int getChildCount() { return children.length; } + + XMLnode getChild(char[] name) + { + for(int c=0;c=attributes.length) return null; + else return attributes[index]; + } + + XMLattrib getAttrib(char[] name) + { + for(int c=0;c"); //">" + entities[e.name]=e; + e=new XMLentity("amp","&"); //"&#38;" + entities[e.name]=e; + e=new XMLentity("apos","'"); //"'" + entities[e.name]=e; + e=new XMLentity("quot","\""); //""" + entities[e.name]=e; + } + + int Open(char[] filename) + { + if(!exists(filename) || !isfile(filename)) return -1; + File f=new File(filename,FileMode.In); + int ret = Open(f); + f.close(); + return ret; + } + + int Open(Stream s) + { + if(!s.isOpen() || !s.readable) return -1; + try{buffer=s.readString(cast(uint)s.size());} + catch(ReadException){return -1;} + return Parse(buffer); + } + + void Close() + { + buffer.length=0; + } + + int Parse(char[] buffer) + { + if(!buffer.length) return -1; + return xml_read_unknown(this,buffer,root); + } + + int Save(char[] fn) + { + if(exists(fn) && isfile(fn) && getAttributes(fn)&FILE_ATTRIBUTE_READONLY) return -1; + File outt = new File(fn,FileMode.OutNew); + + outt.writef("\n"); + if(doctype.length) outt.writef("%s\n",doctype); + for(int c;c=0) writefln("parsed ok"); +// else writefln("parsed not ok"); +// xml.root.Clean(1); +//// writefln(xml.root.getPath("personnel/persong/name/family").value); +// xml.Save("sss.xml"); +// delete xml; +//} + +//void main() { +// XML xtmp = new XML; +// XMLnode root = xtmp.root.getChildEx("config", "default value"); +// XMLnode child = root.addNode("customtools", null); +// for(int i=0; i<4; ++i){ +// XMLnode entry = child.addNode("tool", null); +// entry.addAttrib("name", "explorer"); +// entry.addAttrib("cmd", "ShellExcute explorer %j"); +// } +// xtmp.Save("macros.xml"); +//} + +template TArray(_type) +{ + int Sort(inout _type[] ar,int function(_type a,_type b) compareFunc) + { + if(!ar.length) return 0; + _type tmp; + byte notdone=1; + int c=0,c2=0; + for(;notdone;) + { + notdone=0; + for(c=ar.length-1;c>0;c=c2) + { + c2=c-1; + if(compareFunc(ar[c],ar[c2])<0) + { + tmp=ar[c2]; + ar[c2]=ar[c]; + ar[c]=tmp; + notdone=1; + } + } + } + return 1; + } + + int DeleteItems(inout _type[] ar,int index,int len=1) + { + if(index<0 || index>=ar.length || index+len>ar.length) return 0; + if(len==0) return 1; + if(len==ar.length) + { + ar.length=0; + return 1; + } + ar=ar[0..index]~ar[index+len..ar.length]; + return 1; + } +} + +int icharCompare ( char[] x, char[] y ) +{ + return std.string.tolower( x ) < std.string.tolower( y ) ? -1 : 0; +} Index: /trunk/src/player/tv/src/build.bat =================================================================== --- /trunk/src/player/tv/src/build.bat (revision 84) +++ /trunk/src/player/tv/src/build.bat (revision 84) @@ -0,0 +1,5 @@ +@if exist tv2rpl.exe del tv2rpl.exe +@dmd xml.d tv2rpl.d wsock32.lib -oftv2rpl.exe +@if exist *.obj del *.obj +@if exist *.map del *.map +@rem @if exist tv2rpl.exe tv2rpl.exe Index: /trunk/src/player/tv/src/tv2rpl.d =================================================================== --- /trunk/src/player/tv/src/tv2rpl.d (revision 84) +++ /trunk/src/player/tv/src/tv2rpl.d (revision 84) @@ -0,0 +1,457 @@ +import xml; +import std.file; +import std.path; +import std.stdio; +import std.string, std.conv, std.stream; +import std.socket, std.socketstream, std.date; + +debug=HTMLGET; +debug=HTMLGET2; + +uint dhash(char[] s) +{ + int r=0; + for(int c=0;c