How to Tie the 10 Most Useful Knots Whether it's a simple overhand or the more complicated sheepshank, here are ten useful knots to ...
5:01:00 AM10 Useful Knots to Know!
5:01:00 AM Unknown 0 Comments
How to Tie the 10 Most Useful Knots
Whether it's a simple overhand or the more complicated sheepshank, here are ten useful knots to know whether you're homesteading, boating, or camping.The 10 Best Knots
Installation For Ubuntu: Both Python 2.7 and Python 3.4 should have already installed by default. If not, you can install via: # ...
11:48:00 AMPython Installation and Getting Started
11:48:00 AM Unknown 0 Comments
Installation
- For Ubuntu: Both Python 2.7 and Python 3.4 should have already installed by default. If not, you can install via:
# Installing Python 2 $ sudo apt-get install python # Installing Python 3 $ sudo apt-get install python3
To verify the Python installation (under Ubuntu 14.04 LTS):# List packages beginning with python $ dpkg --list python* ||/ Name Version Architecture +++-===================-==============-============== ii python 2.7.5-5ubuntu3 amd64 ii python2.7 2.7.6-8ubuntu0 amd64 ii python3 3.4.0-0ubuntu2 amd64 rc python3.3 3.3.2-7ubuntu3 amd64 ii python3.4 3.4.3-1ubuntu1 amd64 # Locate the Python Interpreters from the PATH $ which python* /usr/bin/python /usr/bin/python2.7 /usr/bin/python3 /usr/bin/python3.4 $ ll /usr/bin/python* lrwxrwxrwx 1 root root 9 Dec 21 2013 python -> python2.7* lrwxrwxrwx 1 root root 9 Dec 21 2013 python2 -> python2.7* -rwxr-xr-x 1 root root 3345416 Jun 23 02:51 python2.7* lrwxrwxrwx 1 root root 9 Mar 23 2014 python3 -> python3.4* -rwxr-xr-x 2 root root 3709944 Oct 15 05:42 python3.4* -rwxr-xr-x 2 root root 3709944 Oct 15 05:42 python3.4m* lrwxrwxrwx 1 root root 10 Mar 23 2014 python3m -> python3.4m* # Clearly, # "python" and "python2" are symlinks to python2.7. # "python3" is a simlink to python3.4. # Show status of a specific package $ dpkg --status python2.7 Version: 2.7.6-8ubuntu0.2 ...... $ dpkg --status python3.4 Version: 3.4.3-1ubuntu1~14.04.3 ......
- For Windows: From http://www.python.org/download/, download the 32-bit or 64-bit MSI installer, and run the downloaded installer.
-V
(or --version
) flag, e.g.,$ python --version Python 2.7.6 $ python2 -V Python 2.7.6 $ python3 --version Python 3.4.3
Getting Started
Interactive Python Command-Line Shell
You can run the Python Interpreter in interactive mode, i.e., as a command-line shell. To launch the Python Command-Line shell:- In Ubuntu:
$ python Python 2.7.6 (default, Jun 22 2015, 17:58:13) [GCC 4.8.2] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>>
- In Windows: Click the START button ⇒ Python ⇒ Python (Command-line); or run "
python.exe
" from the Python installed directory. - In Mac: [TODO]
>>>
.You can enter Python statements, e.g.,
>>> print('hello, world') hello, world >>> x = 123 >>> x 123 >>> To exit the command-line session, type
exit()
, or press Ctrl-D (Ubuntu) (End-of-File (EOF)), Ctrl-Z + Enter (Windows).
First Python Script - hello.py
Use a programming text editor to write the following Python script and save as "hello.py
" in a directory of your choice:1 2 3 4 5 |
print('Hello, world') # Print a string print(2 ** 88) # Print 2 raises to the power of 88 # Python's integer is unlimited in size! print(8.01234567890123456789) # Print a float print((1+2j) * (3*4j)) # Python supports complex numbers! |
- Statements beginning with a
#
until the end-of-line are comments. - The
print()
function can be used to print a value to the console. - Python's strings can be enclosed with single quotes
'...'
or double quotes"..."
(Line 1). - Python's integer is unlimited in size (Line 2).
- Python support floats (Line 4).
- Python supports complex numbers (Line 5) and other high-level data types.
- By convention, Python script (module) filenames are in all-lowercase.
Hello, world 309485009821345068724781056 8.012345678901234 (-24+12j)
Running Python Scripts
You can develop/run a Python script in many ways - explained in the following sections.Running Python Scripts via System Command Shell
You can run a python script via the Python Interpreter under the System's Command Shell (e.g., Windows Command Shell, Linux/UNIX/Mac Terminal/Bash Shell). The Python Interpreter shall be included in thePATH
.- In Linux/Mac Terminal/Bash Shell:
$ cd <dirname> # Change directory to where you stored the script $ python hello.py # Run the script via the Python interpreter
See below for writing executable Python script in Unix. - In Windows Command Prompt: Start a CMD by entering "
cmd
" in the start menu.> cd <dirname> # Change directory to where you stored the script > python hello.py # Run the script via the Python Interpreter > hello.py # if ".py" file is associated with Python Interpreter
Unix Executable Shell Script
In Linux/UNIX, you can turn a Python script into an executable program (called Shell Script or Executable Script) by:- Start with a line beginning with
#!
(called "hash-bang" or "she-bang"), followed by the full-path name to the Python Interpreter, e.g.,#!/usr/bin/python print('Hello, world') print(2 ** 88) print(8.01234567890123456789) print((1+2j) * (3*4j))
To locate the Python Interpreter, use command "which python
" or "which python3
". - Make the file executable via
chmod
(change file mode) command:$ cd /path/to/project-directory $ chmod u+x hello.py # enable executable for user-owner $ ls -l hello.py # list to check the executable flag -rwxrw-r-- 1 uuuu gggg 314 Nov 4 13:21 hello.py
- You can then run the Python script just like any executable program.
The system will look for the Python Interpreter from the she-bang line.
$ cd /path/to/project-directory $ ./hello.py
Alternatively, you can use
#!/usr/bin/env python ...... The
env
utility will locate the Python Interpreter (from the PATH
entries).Running Python Scripts inside Python Command-Line Shell
To run a script inside Python's command-line shell:$ python ...... >>> exec(open('/path/to/hello.py').read())
- You can use either absolute or relative path for the filename. But,
'~'
(for home directory) does not work?! - The
open()
function open the file, in default read-only mode. - The
read()
function reads the entire file.
Environment Variables PATH and PYTHONPATH, and sys.path
The environment variablePATH
shall include the path to Python Interpreter "python
".Python system variable
sys.path
is a list of directories for searching Python modules. It is initialized from the environment variable PYTHONPATH
, plus an installation-dependent default. The PYTHONPATH
, by default, is empty.To show the
sys.path
for the Python Interpreter:$ python Python 2.7.6 (default, Jun 22 2015, 17:58:13) ...... >>> import sys >>> sys.path ['', '/usr/lib/python2.7', '/usr/local/lib/python2.7/dist-packages', '/usr/lib/python2.7/dist-packages', ......] $ python3 Python 3.4.3 (default, Oct 14 2015, 20:28:29) ...... >>> import sys >>> sys.path ['', '/usr/lib/python3.4', '/usr/local/lib/python3.4/dist-packages', '/usr/lib/python3/dist-packages', ......]
Easy use, just copy and page to new document. Save it with "*. m3u " and use VLC to open the file. #EXT M3U #EXTINF:-1, Eu...
4:49:00 AMM3U LINK EURO 2016 SPORT TV FROM EU
4:49:00 AM Unknown 0 Comments
Easy use, just copy and page to new document. Save it with "*.m3u" and use VLC to open the file.
#EXTM3U
#EXTINF:-1,Eurosport 2
http://149.202.85.84:8080/EuroSp2-94506afdjklfg/local/index.m3u8
#EXTINF:-1,Eurosport
http://149.202.85.84:8080/EuroSp1-94506afdjklfg/local/index.m3u8
#EXTINF:-1,BT Sport Europe
http://149.202.85.84:8080/btSpEUrope-94506afdjklfg/local/index.m3u8
#EXTINF:-1,BT Sport ESPN
http://149.202.85.84:8080/btEspn-94506afdjklfg/local/index.m3u8
#EXTINF:-1,Arena Sport 1
http://149.202.85.84:8080/arenaSp1-94506afdjklfg/local/index.m3u8
#EXTINF:-1,Arena Sport 2
http://149.202.85.84:8080/arenaSp2-94506afdjklfg/local/index.m3u8
#EXTINF:-1,Arena Sport 3
http://149.202.85.84:8080/arenaSp3-94506afdjklfg/local/index.m3u8
#EXTINF:-1,Arena Sport 5
http://149.202.85.84:8080/arenaSp5-94506afdjklfg/local/index.m3u8
#EXTINF:-1,SkySportsF1
http://149.202.207.8:8080/skf1-94506afdjklfg/sallu/index.m3u8
#EXTINF:-1,SKY SPORTS 1 [UK]
http://149.202.207.8:8080/sk1-94506afdjklfg/sallu/index.m3u8
#EXTINF:-1,SKY SPORTS 2 [UK]
http://149.202.207.8:8080/sk2-94506afdjklfg/sallu/index.m3u8
#EXTINF:-1,SKY SPORTS 3 [UK]
http://149.202.207.8:8080/sk3-94506afdjklfg/sallu/index.m3u8
#EXTINF:-1,SKY SPORTS 4 [UK]
http://149.202.207.8:8080/sk4-94506afdjklfg/sallu/index.m3u8
#EXTINF:-1,SKY SPORTS 5 [UK]
http://149.202.207.8:8080/sk5-94506afdjklfg/sallu/index.m3u8
#EXTINF:-1,BT SPORTS 1
http://149.202.207.8:8080/bts1-94506afdjklfg/local/index.m3u8
#EXTINF:-1,BT SPORTS 2
http://149.202.207.8:8080/bts2-94506afdjklfg/local/index.m3u8
#EXTINF:-1,CTH1 Stadium
http://149.202.207.8:8080/cth1-94506afdjklfg/sallu/index.m3u8
#EXTINF:-1,CTH2 Stadium
http://149.202.207.8:8080/cth2-94506afdjklfg/sallu/index.m3u8
#EXTINF:-1,CTH3 Stadium
http://149.202.207.8:8080/cth3-94506afdjklfg/sallu/index.m3u8
#EXTINF:-1,CTH4 Stadium
http://149.202.207.8:8080/cth4-94506afdjklfg/sallu/index.m3u8
#EXTINF:-1,CTH5 Stadium
http://149.202.207.8:8080/cth5-94506afdjklfg/sallu/index.m3u8
#EXTINF:-1,Super Sports 1
http://149.202.85.84:8080/supSp1-94506afdjklfg/local/index.m3u8
#EXTINF:-1,Super Sports 2
http://149.202.85.84:8080/supSp2-94506afdjklfg/local/index.m3u8
#EXTINF:-1,Super Sports 3
http://149.202.85.84:8080/supSp3-94506afdjklfg/local/index.m3u8
#EXTINF:-1,Super Sport 4
http://149.202.85.84:8080/supSp4-94506afdjklfg/local/index.m3u8
Trong cuộc sống, đôi khi vì vô tình chúng ta đã làm những việc không nên mà phạm những sai lầm để phải hối tiếc cả đời. Trải qua những...
12:56:00 PMNhững điều đại kỵ người xưa dạy để tránh phạm sai lầm đáng tiếc trong cuộc đời
12:56:00 PM Unknown 0 Comments
Đối nhân xử thế
Những đại kỵ trong nghề nghiệp
Những điều nên tránh trong hành vi
Hôn nhân là do duyên nợ. Tuy nhiên, đến với nhau rồi nhưng không biết gìn giữ thì cái duyên nợ đó cũng đứt gánh giữa đường. Phật ...
12:39:00 PMPhật chỉ 3 “điểm xấu” tuyệt kỵ khiến hôn nhân tan vỡ vợ chồng cần tránh
12:39:00 PM Unknown 0 Comments
#EXTM3U #EXTINF:0, Smartshop - Update 3/5/2016 http://youtube.com #EXTINF:0, THP HAI PHONG udp://@225.1.2.187:30120 #EXTINF:-1,True ...
1:42:00 PMIPTV ALL LINK GOOD for EURO 2016 FROM VIET NAM
1:42:00 PM Unknown 0 Comments
#EXTINF:0, Smartshop - Update 3/5/2016
http://youtube.com
#EXTINF:0, THP HAI PHONG
udp://@225.1.2.187:30120
#EXTINF:-1,True U4
http://203.162.235.30/hls/TRUE4U/playlist.m3u8
#EXTINF:-1,Truc tiep NHA
http://203.162.235.30/hls/SP24/playlist.m3u8
#EXTINF:-1 group-title="Sports",TRUE SPORT HD2
rtmp://216.185.103.158/live2/chthaipremier11
#EXTINF:-1 group-title="Sports",CCTV5 HD
http://183.207.249.6/PLTV/3/224/3221225644/index.m3u8
#EXTINF:-1 group-title="Sports",CCTV5+HD s1
http://183.207.249.6/PLTV/3/224/3221225604/index.m3u8
#EXTINF:0, VTV1 HD
udp://@225.1.2.249:30120
#EXTINF:0,VTV2
udp://@225.1.1.249:30120
#EXTINF:0,074: VTV3
udp://@225.1.2.246:30120
#EXTINF:-1, VTV3 HD
udp://@225.1.2.247:30120
#EXTINF:-1, VTV6 HD
udp://@225.1.2.245:30120
#EXTINF:0, VTV8 HD
udp://@225.1.2.142:30120
#EXTINF:0,The thao TV HD
udp://@225.1.2.241:30120
#EXTINF:0,Bong da TV HD
udp://@225.1.2.243:30120
#EXTINF:0,VTC3 HD
udp://@225.1.2.251:30120
#EXTINF:0,The thao TV HD (4mbps)
udp://@225.1.2.240:30120
#EXTINF:0,Bong da TV HD (4mbps)
udp://@225.1.2.242:30120
#EXTINF:0,Sports HD (CHI PHAT T7)
udp://@225.1.1.68:30120
#EXTINF:0,Sports HD2 (CHI PHAT T7)
udp://@225.1.1.12:30120
#EXTINF:-1,SCTVHD THETHAO
http://203.162.235.30/hls/SN_ESPN/playlist.m3u8
#EXTINF:0,FOX SPORTS HD
udp://@225.1.2.229:30120
#EXTINF:0,Golf channel HD
udp://@225.1.1.4:30120
#EXTINF:0,Premier League
udp://@225.1.1.31:30120
#EXTINF:0,Premier League
udp://@225.1.1.32:30120
#EXTINF:0,Premier League
udp://@225.1.1.33:30120
#EXTINF:0,Premier League
udp://@225.1.1.34:30120
#EXTINF:0,Bong da TV
udp://@225.1.2.160:30120
#EXTINF:0,The thao TV
udp://@225.1.2.158:30120
#EXTINF:0,HTV The thao
udp://@225.1.1.165:30120
#EXTINF:0,FOX SPORTS
udp://@225.1.1.239:30120
#EXTINF:0,FOX SPORTS 2
udp://@225.1.1.241:30120
#EXTINF:0,K+1
udp://@225.1.1.48:30120
#EXTINF:0,K+NS
udp://@225.1.1.142:30120
#EXTINF:0,K+PC
udp://@225.1.1.139:30120
#EXTINF:0,K+PM
udp://@225.1.1.140:30120
#EXTINF:0,QUOC HOI HD
udp://@225.1.2.148:30120
#EXTINF:0, QPVN HD
udp://@225.1.2.216:30120
#EXTINF:0, NHAN DAN HD
udp://@225.1.1.91:30120
#EXTINF:0,VTC1 HD
udp://@225.1.2.254:30120
#EXTINF:0, VTC4 HD
udp://@225.1.2.200:30120
#EXTINF:0, VTC14 HD
udp://@225.1.2.88:30120
#EXTINF:0, ITV HD
udp://@225.1.2.250:30120
#EXTINF:0, BTV4 HD
udp://@225.1.1.29:30120
#EXTINF:0,HTV2 HD
udp://@225.1.1.193:30120
#EXTINF:0,HTV7 HD
udp://@225.1.1.191:30120
#EXTINF:0, HTV9 HD
udp://@225.1.1.142:30120
#EXTINF:0,THUAN VIET HD
udp://@225.1.1.185:30120
#EXTINF:0, HTVC PHIM TRUYEN HD
udp://@225.1.1.183:30120
#EXTINF:0,THVL1 HD720
udp://@225.1.1.155:30120
#EXTINF:0,THVL2 HD720
udp://@225.1.1.154:30120
#EXTINF:0,THDT1 HD720
udp://@225.1.1.163:30120
#EXTINF:0,FBNC HD
udp://@225.1.1.181:30120
#EXTINF:0,STAR MOVIES HD
udp://@225.1.2.238:30120
#EXTINF:0,HBO HD
udp://@225.1.2.232:30120
#EXTINF:0, AXN HD
udp://@225.1.2.224:30120
#EXTINF:0, STAR WORLD HD
udp://@225.1.2.236:30120
#EXTINF:0, CARTOON HD
udp://@225.1.2.230:30120
#EXTINF:0,OUTDOOR CHANNEL HD
udp://@225.1.2.214:30120
#EXTINF:0, DISCOVERY WORLD HD
udp://@225.1.2.222:30120
#EXTINF:0, FTV HD
udp://@225.1.2.226:30120
#EXTINF:0,NATIONAL GEOGRAPHIC HD
udp://@225.1.2.233:30120
#EXTINF:0,V HD
udp://@225.1.1.140:30120
#EXTINF:0,AFC HD
udp://@225.1.2.98:30120
#EXTINF:0, DAVINCI HD
udp://@225.1.1.197:30120
#EXTINF:0,TRAVEL HD
udp://@225.1.1.198:30120
#EXTINF:0,ASIE FRANCE HD
udp://@225.1.1.200:30120
#EXTINF:0, NOMAL HD
udp://@225.1.2.253:30120
#EXTINF:0,KBS WORLD HD
udp://@225.1.2.91:30120
#EXTINF:0, ANIMAL PLANET
udp://@225.1.1.231:30120
#EXTINF:0,ANTV
udp://@225.1.2.169:30120
#EXTINF:0,Thong tan xa Viet Nam
udp://@225.1.1.167:30120
#EXTINF:0,VTVCAB1 GIAI TRI TV
udp://@225.1.2.150:30120
#EXTINF:0,VTVCAB10 O2 TV
udp://@225.1.2.152:30120
#EXTINF:0,VTVCAB11 TV SHOPPING
udp://@225.1.1.252:30120
#EXTINF:0,VTVCAB12 STYLE TV
udp://@225.1.2.155:30120
#EXTINF:0,VTVCAB14 LOTTE SHOPPING
udp://@225.1.1.253:30120
#EXTINF:0,VTVCAB15 INVEST TV
udp://@225.1.1.251:30120
#EXTINF:0,VTVCAB17 YEAH1 TV
udp://@225.1.2.151:30120
#EXTINF:0, VTVCAB2 PHIM VIET
udp://@225.1.2.159:30120
#EXTINF:0, VTVCAB4 KENH 17
udp://@225.1.2.153:30120
#EXTINF:0,VTVCAB5 E CHANNEL
udp://@225.1.2.156:30120
#EXTINF:0, VTVCAB6 HAY TV
udp://@225.1.2.16:30120
#EXTINF:0, VTVCAB7 D DRAMAS
udp://@225.1.2.157:30120
#EXTINF:0,VTVCAB8 BIBI
udp://@225.1.2.161:30120
#EXTINF:0,AVG SAM HD
udp://@225.1.1.224:30120
#EXTINF:0,VTVCAB9 INFO TV
udp://@225.1.2.154:30120
#EXTINF:0,VTVCab 20 VFamily
udp://@225.1.1.15:30120
#EXTINF:0, Ha Noi Cab
udp://@225.1.1.210:30120
#EXTINF:0,Hanoicab 4 MOV HD
udp://@225.1.1.206:30120
#EXTINF:0,YOU TV
udp://@225.1.1.207:30120
#EXTINF:0,HTVC Shop
udp://@225.1.1.172:30120
#EXTINF:0,HTVC Gia dinh Kenh danh cho gia dinh
udp://@225.1.1.170:30120
#EXTINF:0,Phu nu TV
udp://@225.1.1.171:30120
#EXTINF:0, Du lich & Cuoc song
udp://@225.1.1.166:30120
#EXTINF:0,HTV1
udp://@225.1.1.180:30120
#EXTINF:0,HTV3
udp://@225.1.1.178:30120
#EXTINF:0,HTV4
udp://@225.1.1.177:30120
#EXTINF:0,VTV3
udp://@225.1.2.246:30120
#EXTINF:0,VTV4
udp://@225.1.1.248:30120
#EXTINF:0,VTV5
udp://@225.1.1.247:30120
#EXTINF:0,VTV9
udp://@225.1.1.153:30120
#EXTINF:0,VTC1
udp://@225.1.2.254:30120
#EXTINF:0,VTC2
udp://@225.1.2.202:30120
#EXTINF:0,VTC3
udp://@225.1.2.251:30120
#EXTINF:0,VTC4
udp://@225.1.2.200:30120
#EXTINF:0,VTC5
udp://@225.1.2.199:30120
#EXTINF:0,VTC6
udp://@225.1.2.198:30120
#EXTINF:0,VTC7
udp://@225.1.2.197:30120
#EXTINF:0,VTC8
udp://@225.1.2.196:30120
#EXTINF:0, VTC9
udp://@225.1.2.195:30120
#EXTINF:0,VTC10
udp://@225.1.2.194:30120
#EXTINF:0,VTC11
udp://@225.1.2.193:30120
#EXTINF:0, VTC12
udp://@225.1.2.192:30120
#EXTINF:0,VTC13
udp://@225.1.2.250:30120
#EXTINF:0,VTC14
udp://@225.1.2.191:30120
#EXTINF:0,VTC16
udp://@225.1.2.190:30120
#EXTINF:0,Ha Noi 1
udp://@225.1.2.186:30120
#EXTINF:0,Ha Noi 2
udp://@225.1.1.125:30120
#EXTINF:0, MTV
udp://@225.1.1.50:30120
#EXTINF:0, VIETNAMNET
udp://@225.1.2.96:30120
#EXTINF:0,ARIRANG
udp://@225.1.2.41:30120
#EXTINF:0,NHK WORLD
udp://@225.1.1.196:30120
#EXTINF:0, STAR WORLD
udp://@225.1.2.44:30120
#EXTINF:0,TV5 MONDE
udp://@225.1.2.46:30120
#EXTINF:0, AXN
udp://@225.1.2.224:30120
#EXTINF:0,Cinemax
udp://@225.1.1.230:30120
#EXTINF:0,BLOOMBERG
udp://@225.1.1.227:30120
#EXTINF:0, CARTOON NETWORK
udp://@225.1.2.231:30120
#EXTINF:0,DAVINCI LEARNING
udp://@225.1.1.197:30120
#EXTINF:0,DISCOVERY
udp://@225.1.1.238:30120
#EXTINF:0, DISNEY
udp://@225.1.1.232:30120
#EXTINF:0,DISNEY JUNIOR
udp://@225.1.1.233:30120
#EXTINF:0,DIVA
udp://@225.1.1.199:30120
#EXTINF:0,CNN
udp://@225.1.1.242:30120
#EXTINF:0, DW (Sub Viet)
udp://@225.1.1.203:30120
#EXTINF:0,FASHION
udp://@225.1.2.227:30120
#EXTINF:0,Asian food
udp://@225.1.1.198:30120
====================================Add more link
#EXTM3U
#EXTINF:0,205: VTV1 HD
udp://@225.1.2.249:30120
#EXTINF:0,206: VTV2
udp://@225.1.2.22:30120
#EXTINF:-1, VTV3 HD
udp://@225.1.2.247:30120
#EXTINF:-1, VTV6 HD
udp://@225.1.2.245:30120
#EXTINF:0,018: HBO HD
udp://@225.1.2.233:30120
#EXTINF:0,019: STAR MOVIES HD
udp://@225.1.2.239:30120
#EXTINF:0,020: AXN HD
udp://@225.1.2.225:30120
#EXTINF:0,K+1
udp://@225.1.2.205:30120
#EXTINF:0,K+1 HD
udp://@225.1.2.210:30120
#EXTINF:0,0333 : K+ PC SD
udp://@225.1.1.139:30120
#EXTINF:0,004: K+NS SD
udp://@225.1.1.142:30120
#EXTINF:-1, VTVCAB3 THE THAO TV HD
udp://@225.1.2.241:30120
#EXTINF:-1, VTVCAB16 BONG DA TV HD
udp://@225.1.2.242:30120
#EXTINF:-1,SCTVHD HAI
http://vtv.live.cdn.fptplay.net/vtvlive/smil:sctvhaihd_hls.smil/playlist.m3u8
#EXTINF:0,021: CARTOON NETWORK HD
udp://@225.1.2.231:30120
#EXTINF:0,022: CINEMAX
udp://@225.1.1.230:30120
#EXTINF:0,023: STAR WORLD HD
udp://@225.1.2.237:30120
#EXTINF:0,024: DISCOVERY HD
udp://@225.1.2.223:30120
#EXTINF:0,025: FOX SPORTS HD
udp://@225.1.2.229:30120
#EXTINF:0,001: HTV9 HD
udp://@225.1.1.190:30120
#EXTINF:0,002: HTV7 HD
udp://@225.1.1.192:30120
#EXTINF:0,003: HTV2 HD
udp://@225.1.1.193:30120
#EXTINF:0,007: VTC1 HD
udp://@225.1.2.254:30120
#EXTINF:0,008: VTC3 HD
udp://@225.1.2.252:30120
#EXTINF:0,009: VTC HD2
udp://@225.1.2.253:30120
#EXTINF:0,010: VTC HD3
udp://@225.1.2.251:30120
#EXTINF:0,012: QPVN HD
udp://@225.1.2.217:30120
#EXTINF:0,013: HVT Phim truyen HD
udp://@225.1.1.184:30120
#EXTINF:0,014: Thuan Viet HD
udp://@225.1.1.186:30120
#EXTINF:0,017: FBNC HD
udp://@225.1.1.182:30120
#EXTINF:0,026: NGC HD
udp://@225.1.2.235:30120
#EXTINF:0,027: OUTDOOR HD
udp://@225.1.2.215:30120
#EXTINF:0,030: FTV HD
udp://@225.1.2.227:30120
#EXTINF:0,033: AVG PHIM HAY HD
udp://@225.1.1.222:30120
#EXTINF:0,034: AVG VIET TEEN HD
udp://@225.1.1.223:30120
#EXTINF:0,035: AN NINH THE GIOI HD
udp://@225.1.1.211:30120
#EXTINF:0,036: BGTV BAC GIANG
udp://@225.1.1.164:30120
#EXTINF:0,039: TTX - Thong tan xa Viet Nam
udp://@225.1.1.167:30120
#EXTINF:0,040: VTVCAB1 GIAI TRI TV
udp://@225.1.2.150:30120
#EXTINF:0,041: VTVCAB10 O2 TV
udp://@225.1.2.152:30120
#EXTINF:0,042: VTVCAB11 TV SHOPPING
udp://@225.1.1.252:30120
#EXTINF:0,043: VTVCAB12 STYLE TV
udp://@225.1.2.155:30120
#EXTINF:0,044: VTVCAB14 LOTTE SHOPPING
udp://@225.1.1.253:30120
#EXTINF:0,045: VTVCAB15 INVEST TV
udp://@225.1.1.251:30120
#EXTINF:0,047: VTVCAB17 YEAH1 TV
udp://@225.1.2.151:30120
#EXTINF:0,048: VTVCAB2 PHIM VIET
udp://@225.1.2.159:30120
#EXTINF:0,050: VTVCAB4 KENH 17
udp://@225.1.2.153:30120
#EXTINF:0,051: VTVCAB5 E CHANNEL
udp://@225.1.2.156:30120
#EXTINF:0,052: VTVCAB6 HAY TV
udp://@225.1.2.16:30120
#EXTINF:0,053: VTVCAB7 D DRAMAS
udp://@225.1.2.157:30120
#EXTINF:0,054: VTVCAB8 BIBI
udp://@225.1.2.161:30120
#EXTINF:0,055: AVG SAM HD
udp://@225.1.1.224:30120
#EXTINF:0,057: VTVCAB9 INFO TV
udp://@225.1.2.154:30120
#EXTINF:0,058: HCATV VGSSHOP
udp://@225.1.1.210:30120
#EXTINF:0,059: HCATV2 YOUTV
udp://@225.1.1.207:30120
#EXTINF:0,061: HTVC Shop
udp://@225.1.1.172:30120
#EXTINF:0,063: HTVC Thuan Viet
udp://@225.1.1.84:30120
#EXTINF:0,064: HTVC Movie Kenh phim truyen
udp://@225.1.1.184:30120
#EXTINF:0,065: HTVC Gia dinh Kenh danh cho gia dinh
udp://@225.1.1.170:30120
#EXTINF:0,066: Phu nu TV
udp://@225.1.1.171:30120
#EXTINF:0,068: Du lich & Cuoc song
udp://@225.1.1.166:30120
#EXTINF:0,069: HTV1
udp://@225.1.1.180:30120
#EXTINF:0,070: HTV3
udp://@225.1.1.178:30120
#EXTINF:0,071: HTV4
udp://@225.1.1.177:30120
#EXTINF:0,074: VTV3
udp://@225.1.2.246:30120
#EXTINF:0,075: VTV4
udp://@225.1.1.248:30120
#EXTINF:0,076: VTV5
udp://@225.1.1.247:30120
#EXTINF:0,077: VTV6
udp://@225.1.2.244:30120
#EXTINF:0,078: VTV9
udp://@225.1.1.153:30120
#EXTINF:0,079: VTC1
udp://@225.1.2.254:30120
#EXTINF:0,080: VTC2
udp://@225.1.2.202:30120
#EXTINF:0,081: VTC3
udp://@225.1.2.251:30120
#EXTINF:0,082: VTC4 YEAH1 FAMILY
udp://@225.1.2.200:30120
#EXTINF:0,083: VTC5
udp://@225.1.2.199:30120
#EXTINF:0,084: VTC6
udp://@225.1.2.198:30120
#EXTINF:0,085: VTC7
udp://@225.1.1.126:30120
#EXTINF:0,086: VTC8
udp://@225.1.2.196:30120
#EXTINF:0,087: VTC10
udp://@225.1.2.194:30120
#EXTINF:0,088: VTC 11 KIDSTV & FAMILY
udp://@225.1.2.193:30120
#EXTINF:0,089: VTC12
udp://@225.1.2.192:30120
#EXTINF:0,090: VTC13 ITV
udp://@225.1.2.250:30120
#EXTINF:0,091: VTC14
udp://@225.1.2.191:30120
#EXTINF:0,092: VTC16
udp://@225.1.2.190:30120
#EXTINF:0,093: Ha Noi 1
udp://@225.1.2.186:30120
#EXTINF:0,094: Ha Noi 2
udp://@225.1.1.125:30120
#EXTINF:0,095: Khanh Hoa
udp://@225.1.1.133:30120
#EXTINF:0,096: BTV
udp://@225.1.1.50:30120
#EXTINF:0,097: MTV Vietnam
udp://@225.1.1.50:30120
#EXTINF:0,098: Da Nang 1
udp://@225.1.1.147:30120
#EXTINF:0,099: Da Nang 2
udp://@225.1.1.146:30120
#EXTINF:0,101: TH Da Nang
udp://@225.1.2.166:30120
#EXTINF:0,102: TH Can Tho
udp://@225.1.1.54:30120
#EXTINF:0,104: BRTV
udp://@225.1.2.175:30120
#EXTINF:0,105: VCTV 9 - Info TV
udp://@225.1.2.154:30120
#EXTINF:0,109: VTV Can Tho
udp://@225.1.1.108:30120
#EXTINF:0,110: DN1 Dong Nai
udp://@225.1.1.41:30120
#EXTINF:0,111: DN2 Dong Nai
udp://@225.1.1.42:30120
#EXTINF:0,112: BRT
udp://@225.1.1.122:30120
#EXTINF:0,113: THTG
udp://@225.1.1.189:30120
#EXTINF:0,114: VTC9 LET'S VIET
udp://@225.1.2.195:30120
#EXTINF:0,116: AN NINH THE GIOI HD
udp://@225.1.2.79:30120
#EXTINF:0,117: ANIMAL PLANET
udp://@225.1.1.231:30120
#EXTINF:0,118: ATV1 AN GIANG
udp://@225.1.2.173:30120
#EXTINF:0,120: AVG MIEN TAY
udp://@225.1.2.100:30120
#EXTINF:0,121: AVG THIEN DUONG CUA BE
udp://@225.1.1.214:30120
#EXTINF:0,122: BPTV2 BINH PHUOC
udp://@225.1.2.234:30120
#EXTINF:0,123: BRT
udp://@225.1.2.175:30120
#EXTINF:0,124: BTV BINH DINH
udp://@225.1.1.122:30120
#EXTINF:0,125: BTV1 BINH DUONG
udp://@225.1.1.113:30120
#EXTINF:0,126: BTV2 BINH DUONG
udp://@225.1.1.114:30120
#EXTINF:0,127: BTV4 BINH DUONG
udp://@225.1.1.115:30120
#EXTINF:0,128: STV1 SOC TRANG
udp://@225.1.1.23:30120
#EXTINF:0,129: TEST HD HO CHI MINH
udp://@225.1.1.191:30120
#EXTINF:0,130: THBT BINH THUAN
udp://@225.1.1.27:30120
#EXTINF:0,131: THD1 HAI DUONG
udp://@225.1.1.158:30120
#EXTINF:0,132: THDT1 DONG THAP
udp://@225.1.1.163:30120
#EXTINF:0,133: THGL GIA LAI
udp://@225.1.2.176:30120
#EXTINF:0,134: THP HAI PHONG
udp://@225.1.2.187:30120
#EXTINF:0,135: THTG TIEN GIANG
udp://@225.1.2.170:30120
#EXTINF:0,137: THTPCT CAN THO
udp://@225.1.1.54:30120
#EXTINF:0,138: THTV TRA VINH
udp://@225.1.2.172:30120
#EXTINF:0,139: THVL1 VINH LONG
udp://@225.1.1.91:30120
#EXTINF:0,140: THVL2 VINH LONG
udp://@225.1.1.92:30120
#EXTINF:0,141: TLC
udp://@225.1.1.236:30120
#EXTINF:0,142: TN1 THAI NGUYEN
udp://@225.1.2.179:30120
#EXTINF:0,143: TRT HUE
udp://@225.1.1.161:30120
#EXTINF:0,144: TTV
udp://@225.1.2.188:30120
#EXTINF:0,145: TTV THANH HOA
udp://@225.1.1.161:30120
#EXTINF:0,146: TTV11 TRA VINH
udp://@225.1.1.53:30120
#EXTINF:0,148: HBTV HOA BINH
udp://@225.1.2.168:30120
#EXTINF:0,150: KGPTTH KIEN GIANG
udp://@225.1.2.182:30120
#EXTINF:0,151: KTV KHANH HOA
udp://@225.1.1.67:30120
#EXTINF:0,152: LA34 LONG AN
udp://@225.1.1.162:30120
#EXTINF:0,153: LSTV LANG SON
udp://@225.1.1.160:30120
#EXTINF:0,154: LTV LAM DONG
udp://@225.1.2.177:30120
#EXTINF:0,156: MTV
udp://@225.1.1.245:30120
#EXTINF:0,157: NBTV NINH BINH
udp://@225.1.2.185:30120
#EXTINF:0,159: NTV
udp://@225.1.2.178:30120
#EXTINF:0,160: NTV NGHE AN
udp://@225.1.2.183:30120
#EXTINF:0,161: PTQ1
udp://@225.1.2.174:30120
#EXTINF:0,162: QBTV QUANG BINH
udp://@225.1.2.164:30120
#EXTINF:0,164: QTV1 QUANG NINH
udp://@225.1.2.181:30120
#EXTINF:0,165: QTV3 QUANG NINH
udp://@225.1.2.180:30120
#EXTINF:0,166: VIETNAMNET
udp://@225.1.2.96:30120
#EXTINF:0,167: VOV
udp://@225.1.2.171:30120
#EXTINF:0,168: VTV CAN THO
udp://@225.1.1.108:30120
#EXTINF:0,169: VTV DA NANG
udp://@225.1.2.166:30120
#EXTINF:0,170: ARIRANG
udp://@225.1.2.41:30120
#EXTINF:0,171: NHK WORLD
udp://@225.1.1.196:30120
#EXTINF:0,172: STAR MOVIES
udp://@225.1.2.43:30120
#EXTINF:0,173: STAR WORLD
udp://@225.1.2.44:30120
#EXTINF:0,174: TV5 MONDE
udp://@225.1.2.46:30120
#EXTINF:0,175: AXN SD
udp://@225.1.2.224:30120
#EXTINF:0,178: BLOOMBERG
udp://@225.1.1.227:30120
#EXTINF:0,179: CARTOON NETWORK
udp://@225.1.2.231:30120
#EXTINF:0,184: DAVINCI LEARNING
udp://@225.1.1.197:30120
#EXTINF:0,185: DISCOVERY
udp://@225.1.1.238:30120
#EXTINF:0,186: DISNEY
udp://@225.1.1.232:30120
#EXTINF:0,187: DISNEY JUNIOR
udp://@225.1.1.233:30120
#EXTINF:0,189: DIVA
udp://@225.1.1.199:30120
#EXTINF:0,190: FOX SPORTS
udp://@225.1.2.228:30120
#EXTINF:0,191: FOX SPORTS 2
udp://@225.1.1.241:30120
#EXTINF:0,192: CNN
udp://@225.1.1.242:30120
#EXTINF:0,193: DW (Sub Viet)
udp://@225.1.1.203:30120
#EXTINF:0,194: Fashion TV Kenh thoi trang quoc te
udp://@225.1.2.227:30120
#EXTINF:0,196: AVG nhac dan toc
udp://@225.1.1.219:30120
#EXTINF:0,197: AVG NHAC CO DIEN
udp://@225.1.1.216:30120
#EXTINF:0,198: AVG NHAC NAM BO
udp://@225.1.1.212:30120
#EXTINF:0,199: AVG NHAC NHE
udp://@225.1.1.218:30120
#EXTINF:0,200: AVG NHAC TRE
udp://@225.1.1.218:30120
#EXTINF:0,201: AVG NHAC TRU TINH
udp://@225.1.1.217:30120
#EXTINF:0,202: AVG DOC SACH
udp://@225.1.1.213:30120
#EXTINF:0,Asian food channel
udp://@225.1.1.198:30120
#EXTINF:0, Australia Plus
udp://@225.1.2.21:30120
About
Remember for you and me!
Follow Me
FOLLOW ME ON TWITTER
Popular Posts
-
#EXTM3U #EXTINF:0, Smartshop - Update 3/5/2016 http://youtube.com #EXTINF:0, THP HAI PHONG udp://@225.1.2.187:30120 #EXTINF:-1,True ...
-
#EXTINF:-1,BBC One HD http://bulkyiptv.ddns.net:5750/live/adam/adam/14943.ts #EXTINF:-1,BBC One NI HD http://bulkyiptv.ddns.net...
-
Many channel for free watch euro 2016 . Thanks. #EXTM3U #EXTINF:-1,>>>>>>> KOSOVA <<<<<<< ht...
-
Easy use, just copy and page to new document. Save it with "*. m3u " and use VLC to open the file. #EXT M3U #EXTINF:-1, Eu...
-
Installation For Ubuntu: Both Python 2.7 and Python 3.4 should have already installed by default. If not, you can install via: # ...
0 comments: