-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathIRIB.html
1053 lines (1013 loc) · 50.2 KB
/
IRIB.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<html><head>
<meta http-equiv="content-type" content="text/html; charset=windows-1256"></head><body><item>
<title>IRIB 1 TV</title>
<link>http://cdn1.live.irib.ir:1935/e-tv/tv1-300k.stream/playlist.m3u8|Accept-Encoding=gzip,
deflate,User-Agent=Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101
Firefox/47.0$$lsname=IRIB 1 TV - 300K - IRIB$$lsname=
<link>http://s1.tv.asandl.com:1935/devices/tv1-300k.stream/playlist.m3u8$$lsname=IRIB 1 TV - 300K - Asandl S1$$lsname=
<link>http://s2.tv.asandl.com:1935/e-tv/tv1-300k.stream/playlist.m3u8$$lsname=IRIB 1 TV - 300K - Asandl S2$$lsname=
<link>http://s1.tv.asandl.com:1935/devices/tv1-1000k.stream/playlist.m3u8$$lsname=IRIB 1 TV - 1000K - Asandl$$lsname=
<link>$doregex[base] playpath=tv1-100k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=IRIB 1 TV
- 100K - Telewebion $$lsname=
<link>$doregex[base] playpath=tv1-300k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=IRIB 1 TV
- 300K - Telewebion $$lsname=
<link>$doregex[base] playpath=tv1-500k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=IRIB 1 TV
- 500K - Telewebion $$lsname=
<link>$doregex[base] playpath=tv1-1000k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=IRIB 1 TV
- 1000K - Telewebion $$lsname=
<regex>
<name>base</name>
<expres>base="([^"]*)</expres>
<page>$doregex[page]</page>
<referer>http://www.telewebion.com/</referer>
</regex>
<regex>
<name>page</name>
<expres>"link": "([^"]*)</expres>
<page>http://m.pipeline.telewebion.com/op/op?action=getChannelLinks&ChannelID=1&smil_link=1</page>
<referer>http://www.telewebion.com/</referer>
</regex>
<thumbnail>http://www.telewebion.com/media//images/channel-icons/shabakeha-01.png</thumbnail>
<agent>Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101 Firefox/47.0</agent>
<fanart></fanart>
</item>
<item>
<title>IRIB 2 TV</title>
<link>http://cdn1.live.irib.ir:1935/e-tv/tv2-300k.stream/playlist.m3u8|Accept-Encoding=gzip,
deflate,User-Agent=Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101
Firefox/47.0$$lsname=IRIB 2 TV - 300K - IRIB$$lsname=
<link>http://s1.tv.asandl.com:1935/devices/tv2-300k.stream/playlist.m3u8$$lsname=IRIB 2 TV - 300K - Asandl S1$$lsname=
<link>http://s2.tv.asandl.com:1935/e-tv/tv2-300k.stream/playlist.m3u8$$lsname=IRIB 2 TV - 300K - Asandl S2$$lsname=
<link>http://s1.tv.asandl.com:1935/devices/tv2-1000k.stream/playlist.m3u8$$lsname=IRIB 2 TV - 1000K - Asandl$$lsname=
<link>$doregex[base] playpath=tv2-100k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=IRIB 2 TV
- 100K - Telewebion $$lsname=
<link>$doregex[base] playpath=tv2-300k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=IRIB 2 TV
- 300K - Telewebion $$lsname=
<link>$doregex[base] playpath=tv2-500k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=IRIB 2 TV
- 500K - Telewebion $$lsname=
<link>$doregex[base] playpath=tv2-1000k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=IRIB 2 TV
- 1000K - Telewebion $$lsname=
<regex>
<name>base</name>
<expres>base="([^"]*)</expres>
<page>$doregex[page]</page>
<referer>http://www.telewebion.com/</referer>
</regex>
<regex>
<name>page</name>
<expres>"link": "([^"]*)</expres>
<page>http://m.pipeline.telewebion.com/op/op?action=getChannelLinks&ChannelID=2&smil_link=1</page>
<referer>http://www.telewebion.com/</referer>
</regex>
<thumbnail>http://www.telewebion.com/media//images/channel-icons/shabakeha-02.png</thumbnail>
<agent>Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101 Firefox/47.0</agent>
<fanart></fanart>
</item>
<item>
<title>IRIB 3 TV</title>
<link>http://cdn1.live.irib.ir:1935/e-tv/tv3-300k.stream/playlist.m3u8|Accept-Encoding=gzip,
deflate,User-Agent=Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101
Firefox/47.0$$lsname=IRIB 3 TV - 300K - IRIB$$lsname=
<link>http://s1.tv.asandl.com:1935/devices/tv3-300k.stream/playlist.m3u8$$lsname=IRIB 3 TV - 300K - Asandl S1$$lsname=
<link>http://s2.tv.asandl.com:1935/e-tv3/tv3-300k.stream/playlist.m3u8$$lsname=IRIB 3 TV - 300K - Asandl S2$$lsname=
<link>http://s1.tv.asandl.com:1935/devices/bck2tv3-1000k.stream/playlist.m3u8$$lsname=IRIB 3 TV - 1000K - Asandl S1$$lsname=
<link>http://63.237.48.28/ios/IRIB_TV3/IRIB_TV3.m3u8$$lsname=IRIB 3 TV - 500K - IranProud$$lsname=
<link>$doregex[base] playpath=tv3-100k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=IRIB 3 TV
- 100K - Telewebion $$lsname=
<link>$doregex[base] playpath=tv3-300k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=IRIB 3 TV
- 300K - Telewebion $$lsname=
<link>$doregex[base] playpath=tv3-500k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=IRIB 3 TV
- 500K - Telewebion $$lsname=
<link>$doregex[base] playpath=tv3-1000k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=IRIB 3 TV
- 1000K - Telewebion $$lsname=
<regex>
<name>base</name>
<expres>base="([^"]*)</expres>
<page>$doregex[page]</page>
<referer>http://www.telewebion.com/</referer>
</regex>
<regex>
<name>page</name>
<expres>"link": "([^"]*)</expres>
<page>http://m.pipeline.telewebion.com/op/op?action=getChannelLinks&ChannelID=3&smil_link=1</page>
<referer>http://www.telewebion.com/</referer>
</regex>
<thumbnail>http://www.telewebion.com/media//images/channel-icons/shabakeha-03.png</thumbnail>
<agent>Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101 Firefox/47.0</agent>
<fanart></fanart>
</item>
<item>
<title>IRIB 4 TV</title>
<link>http://cdn1.live.irib.ir:1935/e-tv/tv4-300k.stream/playlist.m3u8|Accept-Encoding=gzip,
deflate,User-Agent=Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101
Firefox/47.0$$lsname=IRIB 4 TV - 300K - IRIB$$lsname=
<link>http://s1.tv.asandl.com:1935/devices/tv4-300k.stream/playlist.m3u8$$lsname=IRIB 4 TV - 300K - Asandl S1$$lsname=
<link>http://s2.tv.asandl.com:1935/e-tv/tv4-300k.stream/playlist.m3u8$$lsname=IRIB 4 TV - 300K - Asandl S2$$lsname=
<link>http://s1.tv.asandl.com:1935/devices/tv4-1000k.stream/playlist.m3u8$$lsname=IRIB 4 TV - 1000K - Asandl$$lsname=
<link>$doregex[base] playpath=tv4-100k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=IRIB 4 TV
- 100K - Telewebion $$lsname=
<link>$doregex[base] playpath=tv4-300k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=IRIB 4 TV
- 300K - Telewebion $$lsname=
<link>$doregex[base] playpath=tv4-500k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=IRIB 4 TV
- 500K - Telewebion $$lsname=
<link>$doregex[base] playpath=tv4-1000k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=IRIB 4 TV
- 1000K - Telewebion $$lsname=
<regex>
<name>base</name>
<expres>base="([^"]*)</expres>
<page>$doregex[page]</page>
<referer>http://www.telewebion.com/</referer>
</regex>
<regex>
<name>page</name>
<expres>"link": "([^"]*)</expres>
<page>http://m.pipeline.telewebion.com/op/op?action=getChannelLinks&ChannelID=4&smil_link=1</page>
<referer>http://www.telewebion.com/</referer>
</regex>
<thumbnail>http://www.telewebion.com/media//images/channel-icons/shabakeha-04.png</thumbnail>
<agent>Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101 Firefox/47.0</agent>
<fanart></fanart>
</item>
<item>
<title>IRIB 5 TV</title>
<link>http://cdn1.live.irib.ir:1935/e-tv/tv5-300k.stream/playlist.m3u8|Accept-Encoding=gzip,
deflate,User-Agent=Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101
Firefox/47.0$$lsname=IRIB 5 TV - 300K - IRIB$$lsname=
<link>http://s1.tv.asandl.com:1935/devices/tehran-300k.stream/playlist.m3u8$$lsname=IRIB 5 TV - 300K - Asandl S1$$lsname=
<link>http://s2.tv.asandl.com:1935/e-tv/tv5-300k.stream/playlist.m3u8$$lsname=IRIB 5 TV - 300K - Asandl S2$$lsname=
<link>http://s1.tv.asandl.com:1935/devices/tehran-1000k.stream/playlist.m3u8$$lsname=IRIB 5 TV - 1000K - Asandl$$lsname=
<link>http://63.237.48.28/ios/IRIB_TV5/IRIB_TV5.m3u8$$lsname=IRIB 5 TV - 720x576 - IranProud$$lsname=
<link>$doregex[base] playpath=tehran-100k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=IRIB 5 TV
- 100K - Telewebion $$lsname=
<link>$doregex[base] playpath=tehran-300k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=IRIB 5 TV
- 300K - Telewebion $$lsname=
<link>$doregex[base] playpath=tehran-500k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=IRIB 5 TV
- 500K - Telewebion $$lsname=
<link>$doregex[base] playpath=tehran-1000k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=IRIB 5 TV
- 1000K - Telewebion $$lsname=
<regex>
<name>base</name>
<expres>base="([^"]*)</expres>
<page>$doregex[page]</page>
<referer>http://www.telewebion.com/</referer>
</regex>
<regex>
<name>page</name>
<expres>"link": "([^"]*)</expres>
<page>http://m.pipeline.telewebion.com/op/op?action=getChannelLinks&ChannelID=5&smil_link=1</page>
<referer>http://www.telewebion.com/</referer>
</regex>
<thumbnail>http://www.telewebion.com/media//images/channel-icons/shabakeha-05.png</thumbnail>
<agent>Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101 Firefox/47.0</agent>
<fanart></fanart>
</item>
<item>
<title>IRINN TV</title>
<link>http://cdn1.live.irib.ir:1935/e-tv/irinn-300k.stream/playlist.m3u8|Accept-Encoding=gzip,
deflate,User-Agent=Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101
Firefox/47.0$$lsname=IRINN TV - 300K - IRIB$$lsname=
<link>http://s1.tv.asandl.com:1935/devices/irinn-300k.stream/playlist.m3u8$$lsname=IRINN TV - 300K - Asandl$$lsname=
<link>http://s1.tv.asandl.com:1935/devices/irinn-1000k.stream/playlist.m3u8$$lsname=IRINN TV - 1000K - Asandl$$lsname=
<link>http://63.237.48.28/ios/IRINN/IRINN.m3u8$$lsname=IRINN TV - 720x576 - IranProud$$lsname=
<link>$doregex[base] playpath=irinn-100k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=IRINN TV -
100K - Telewebion $$lsname=
<link>$doregex[base] playpath=irinn-300k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=IRINN TV -
300K - Telewebion $$lsname=
<link>$doregex[base] playpath=irinn-500k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=IRINN TV -
500K - Telewebion $$lsname=
<link>$doregex[base] playpath=irinn-1000k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=IRINN TV -
1000K - Telewebion $$lsname=
<regex>
<name>base</name>
<expres>base="([^"]*)</expres>
<page>$doregex[page]</page>
<referer>http://www.telewebion.com/</referer>
</regex>
<regex>
<name>page</name>
<expres>"link": "([^"]*)</expres>
<page>http://m.pipeline.telewebion.com/op/op?action=getChannelLinks&ChannelID=6&smil_link=1</page>
<referer>http://www.telewebion.com/</referer>
</regex>
<thumbnail>http://www.telewebion.com/media//images/channel-icons/shabakeha-14.png</thumbnail>
<agent>Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101 Firefox/47.0</agent>
<fanart></fanart>
</item>
<item>
<title>Nasim TV</title>
<link>http://cdn1.live.irib.ir:1935/e-tv/nasim-300k.stream/playlist.m3u8|Accept-Encoding=gzip,
deflate,User-Agent=Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101
Firefox/47.0$$lsname=Nasim TV - 300K - IRIB$$lsname=
<link>http://s1.tv.asandl.com:1935/devices/nasim-300k.stream/playlist.m3u8$$lsname=Nasim TV - 300K - Asandl S1$$lsname=
<link>http://s2.tv.asandl.com:1935/e-tv/nasim-300k.stream/playlist.m3u8$$lsname=Nasim TV - 300K - Asandl S2$$lsname=
<link>http://s1.tv.asandl.com:1935/devices/nasim-1000k.stream/playlist.m3u8$$lsname=Nasim TV - 1000K - Asandl$$lsname=
<link>http://63.237.48.28/ios/IRIB_NASIM/IRIB_NASIM.m3u8$$lsname=Nasim TV - 720x576 - IranProud$$lsname=
<link>$doregex[base] playpath=nasim-100k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=Nasim TV -
100K - Telewebion $$lsname=
<link>$doregex[base] playpath=nasim-300k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=Nasim TV -
300K - Telewebion $$lsname=
<link>$doregex[base] playpath=nasim-500k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=Nasim TV -
500K - Telewebion $$lsname=
<link>$doregex[base] playpath=nasim-1000k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=Nasim TV -
1000K - Telewebion $$lsname=
<regex>
<name>base</name>
<expres>base="([^"]*)</expres>
<page>$doregex[page]</page>
<referer>http://www.telewebion.com/</referer>
</regex>
<regex>
<name>page</name>
<expres>"link": "([^"]*)</expres>
<page>http://m.pipeline.telewebion.com/op/op?action=getChannelLinks&ChannelID=41&smil_link=1</page>
<referer>http://www.telewebion.com/</referer>
</regex>
<thumbnail>http://www.telewebion.com/media//images/channel-icons/shabakeha-24.png</thumbnail>
<agent>Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101 Firefox/47.0</agent>
<fanart></fanart>
</item>
<item>
<title>Salamat TV</title>
<link>http://cdn1.live.irib.ir:1935/e-tv/salamat-300k.stream/playlist.m3u8|Accept-Encoding=gzip,
deflate,User-Agent=Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101
Firefox/47.0$$lsname=Salamat TV - 300K - IRIB$$lsname=
<link>http://s1.tv.asandl.com:1935/devices/salamat-300k.stream/playlist.m3u8$$lsname=Salamat TV - 300K - Asandl S1$$lsname=
<link>http://s2.tv.asandl.com:1935/e-tv/salamat-300k.stream/playlist.m3u8$$lsname=Salamat TV - 300K - Asandl S2$$lsname=
<thumbnail>http://www.telewebion.com/media//images/channel-icons/shabakeha-20.png</thumbnail>
<agent>Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101 Firefox/47.0</agent>
<fanart></fanart>
</item>
<item>
<title>Pooya TV</title>
<link>http://cdn1.live.irib.ir:1935/e-tv/pouya-300k.stream/playlist.m3u8|Accept-Encoding=gzip,
deflate,User-Agent=Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101
Firefox/47.0$$lsname=Pooya TV - 300K - IRIB$$lsname=
<link>http://s1.tv.asandl.com:1935/devices/pooya-300k.stream/playlist.m3u8$$lsname=Pooya TV - 300K - Asandl S1$$lsname=
<link>http://s2.tv.asandl.com:1935/e-tv/pouya-300k.stream/playlist.m3u8$$lsname=Pooya TV - 300K - Asandl S2$$lsname=
<link>http://s1.tv.asandl.com:1935/devices/pooya-1000k.stream/playlist.m3u8$$lsname=Pooya TV - 1000K - Asandl$$lsname=
<link>http://63.237.48.28/ios/POOYA_TV/POOYA_TV.m3u8$$lsname=Pooya TV - 720x576 - IranProud$$lsname=
<link>$doregex[base] playpath=pooya-100k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=Pooya TV -
100K - Telewebion $$lsname=
<link>$doregex[base] playpath=pooya-300k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=Pooya TV -
300K - Telewebion $$lsname=
<link>$doregex[base] playpath=pooya-500k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=Pooya TV -
500K - Telewebion $$lsname=
<link>$doregex[base] playpath=pooya-1000k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=Pooya TV -
1000K - Telewebion $$lsname=
<regex>
<name>base</name>
<expres>base="([^"]*)</expres>
<page>$doregex[page]</page>
<referer>http://www.telewebion.com/</referer>
</regex>
<regex>
<name>page</name>
<expres>"link": "([^"]*)</expres>
<page>http://m.pipeline.telewebion.com/op/op?action=getChannelLinks&ChannelID=8&smil_link=1</page>
<referer>http://www.telewebion.com/</referer>
</regex>
<thumbnail>http://www.telewebion.com/media//images/channel-icons/shabakeha-06.png</thumbnail>
<agent>Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101 Firefox/47.0</agent>
<fanart></fanart>
</item>
<item>
<title>Namayesh TV</title>
<link>http://cdn1.live.irib.ir:1935/e-tv/namayesh-300k.stream/playlist.m3u8|Accept-Encoding=gzip,
deflate,User-Agent=Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101
Firefox/47.0$$lsname=Namayesh TV - 300K - IRIB$$lsname=
<link>http://s1.tv.asandl.com:1935/devices/namayesh-300k.stream/playlist.m3u8$$lsname=Namayesh TV - 300K - Asandl S1$$lsname=
<link>http://s2.tv.asandl.com:1935/e-tv/namayesh-300k.stream/playlist.m3u8$$lsname=Namayesh TV - 300K - Asandl S2$$lsname=
<link>http://s1.tv.asandl.com:1935/devices/namayesh-1000k.stream/playlist.m3u8$$lsname=Namayesh TV - 1000K - Asandl$$lsname=
<link>$doregex[base] playpath=namayesh-300k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=Namayesh
TV - 300K - Telewebion $$lsname=
<link>$doregex[base] playpath=namayesh-500k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=Namayesh
TV - 500K - Telewebion $$lsname=
<link>$doregex[base] playpath=namayesh-1000k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=Namayesh
TV - 1000K - Telewebion $$lsname=
<regex>
<name>base</name>
<expres>base="([^"]*)</expres>
<page>$doregex[page]</page>
<referer>http://www.telewebion.com/</referer>
</regex>
<regex>
<name>page</name>
<expres>"link": "([^"]*)</expres>
<page>http://m.pipeline.telewebion.com/op/op?action=getChannelLinks&ChannelID=10&smil_link=1</page>
<referer>http://www.telewebion.com/</referer>
</regex>
<thumbnail>http://www.telewebion.com/media//images/channel-icons/shabakeha-18.png</thumbnail>
<agent>Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101 Firefox/47.0</agent>
<fanart></fanart>
</item>
<item>
<title>Varzesh TV</title>
<link>http://cdn1.live.irib.ir:1935/e-varzesh/varzesh-300k.stream/playlist.m3u8|Accept-Encoding=gzip,
deflate,User-Agent=Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101
Firefox/47.0$$lsname=Varzesh TV - 300K - IRIB$$lsname=
<link>http://s1.tv.asandl.com:1935/devices/bck2varzesh-1000k.stream/playlist.m3u8$$lsname=Varzesh TV - 1000K - Asandl$$lsname=
<link>http://s1.tv.asandl.com:1935/devices/varzesh-300k.stream/playlist.m3u8$$lsname=Varzesh TV - 300K - Asandl S1$$lsname=
<link>http://s2.tv.asandl.com:1935/e-varzesh/varzesh-300k.stream/playlist.m3u8$$lsname=Varzesh TV - 300K - Asandl S2$$lsname=
<link>http://63.237.48.28/ios/VARZESH_TV/VARZESH_TV.m3u8$$lsname=Varzesh TV - 720x576 - IranProud$$lsname=
<link>$doregex[base] playpath=varzesh-100k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=Varzesh
TV - 100K - Telewebion $$lsname=
<link>$doregex[base] playpath=varzesh-300k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=Varzesh
TV - 300K - Telewebion $$lsname=
<link>$doregex[base] playpath=varzesh-500k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=Varzesh
TV - 500K - Telewebion $$lsname=
<link>$doregex[base] playpath=varzesh-1000k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=Varzesh
TV - 1000K - Telewebion $$lsname=
<regex>
<name>base</name>
<expres>base="([^"]*)</expres>
<page>$doregex[page]</page>
<referer>http://www.telewebion.com/</referer>
</regex>
<regex>
<name>page</name>
<expres>"link": "([^"]*)</expres>
<page>http://m.pipeline.telewebion.com/op/op?action=getChannelLinks&ChannelID=13&smil_link=1</page>
<referer>http://www.telewebion.com/</referer>
</regex>
<thumbnail>http://www.telewebion.com/media//images/channel-icons/shabakeha-19.png</thumbnail>
<agent>Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101 Firefox/47.0</agent>
<fanart></fanart>
</item>
<item>
<title>Mostanad TV</title>
<link>http://cdn1.live.irib.ir:1935/e-tv/mostanad-300k.stream/playlist.m3u8|Accept-Encoding=gzip,
deflate,User-Agent=Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101
Firefox/47.0$$lsname=Mostanad TV - 300K - IRIB$$lsname=
<link>http://s1.tv.asandl.com:1935/devices/mostanad-300k.stream/playlist.m3u8$$lsname=Mostanad TV - 300K - Asandl S1$$lsname=
<link>http://s2.tv.asandl.com:1935/e-tv/mostanad-300k.stream/playlist.m3u8$$lsname=Mostanad TV - 300K - Asandl S2$$lsname=
<link>http://63.237.48.28/ios/IRIB_MOSTANAD/IRIB_MOSTANAD.m3u8$$lsname=Mostanad TV - 1920x1080 - IranProud$$lsname=
<link>$doregex[base] playpath=mostanad-300k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=Mostanad
TV - 300K - Telewebion $$lsname=
<link>$doregex[base] playpath=mostanad-500k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=Mostanad
TV - 500K - Telewebion $$lsname=
<link>$doregex[base] playpath=mostanad-1000k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=Mostanad
TV - 1000K - Telewebion $$lsname=
<regex>
<name>base</name>
<expres>base="([^"]*)</expres>
<page>$doregex[page]</page>
<referer>http://www.telewebion.com/</referer>
</regex>
<regex>
<name>page</name>
<expres>"link": "([^"]*)</expres>
<page>http://m.pipeline.telewebion.com/op/op?action=getChannelLinks&ChannelID=19&smil_link=1</page>
<referer>http://www.telewebion.com/</referer>
</regex>
<thumbnail>http://www.telewebion.com/media//images/channel-icons/shabakeha-10.png</thumbnail>
<agent>Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101 Firefox/47.0</agent>
<fanart></fanart>
</item>
<item>
<title>Amoozesh TV</title>
<link>http://cdn1.live.irib.ir:1935/e-tv/amouzesh-300k.stream/playlist.m3u8|Accept-Encoding=gzip,
deflate,User-Agent=Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101
Firefox/47.0$$lsname=Amoozesh TV - 300K - IRIB$$lsname=
<link>http://s1.tv.asandl.com:1935/devices/amouzesh-300k.stream/playlist.m3u8$$lsname=Amoozesh TV - 300K - Asandl S1$$lsname=
<link>http://s2.tv.asandl.com:1935/e-tv/amouzesh-300k.stream/playlist.m3u8$$lsname=Amoozesh TV - 300K - Asandl S2$$lsname=
<link>http://63.237.48.28/ios/IRIB_AMOOZESH/IRIB_AMOOZESH.m3u8$$lsname=Amoozesh TV - 720x576 - IranProud$$lsname=
<link>$doregex[base] playpath=amouzesh-300k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=Amoozesh
TV - 300K - Telewebion $$lsname=
<link>$doregex[base] playpath=amouzesh-500k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=Amoozesh
TV - 500K - Telewebion $$lsname=
<regex>
<name>base</name>
<expres>base="([^"]*)</expres>
<page>$doregex[page]</page>
<referer>http://www.telewebion.com/</referer>
</regex>
<regex>
<name>page</name>
<expres>"link": "([^"]*)</expres>
<page>http://m.pipeline.telewebion.com/op/op?action=getChannelLinks&ChannelID=7&smil_link=1</page>
<referer>http://www.telewebion.com/</referer>
</regex>
<thumbnail>http://www.telewebion.com/media//images/channel-icons/shabakeha-12.png</thumbnail>
<agent>Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101 Firefox/47.0</agent>
<fanart></fanart>
</item>
<item>
<title>Ofogh TV</title>
<link>http://cdn1.live.irib.ir:1935/e-tv/ofogh-300k.stream/playlist.m3u8|Accept-Encoding=gzip,
deflate,User-Agent=Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101
Firefox/47.0$$lsname=Ofogh TV - 300K - IRIB$$lsname=
<link>http://s1.tv.asandl.com:1935/devices/ofogh-300k.stream/playlist.m3u8$$lsname=Ofogh TV - 300K - Asandl S1$$lsname=
<link>http://s2.tv.asandl.com:1935/e-tv/ofogh-300k.stream/playlist.m3u8$$lsname=Ofogh TV - 300K - Asandl S2$$lsname=
<link>$doregex[base] playpath=ofogh-300k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=Ofogh TV -
300K - Telewebion $$lsname=
<link>$doregex[base] playpath=ofogh-500k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=Ofogh TV -
500K - Telewebion $$lsname=
<regex>
<name>base</name>
<expres>base="([^"]*)</expres>
<page>$doregex[page]</page>
<referer>http://www.telewebion.com/</referer>
</regex>
<regex>
<name>page</name>
<expres>"link": "([^"]*)</expres>
<page>http://m.pipeline.telewebion.com/op/op?action=getChannelLinks&ChannelID=42&smil_link=1</page>
<referer>http://www.telewebion.com/</referer>
</regex>
<thumbnail>http://www.telewebion.com/media//images/channel-icons/shabakeha-23.png</thumbnail>
<agent>Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101 Firefox/47.0</agent>
<fanart></fanart>
</item>
<item>
<title>Tamasha TV</title>
<link>http://s1.tv.asandl.com:1935/devices/hdtest-300k.stream/playlist.m3u8$$lsname=Tamasha TV - 300K - Asandl S1$$lsname=
<link>http://s2.tv.asandl.com:1935/e-tv/tehran-300k.stream/playlist.m3u8$$lsname=Tamasha TV - 300K - Asandl S2$$lsname=
<link>$doregex[base] playpath=hdtest-300k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=Tamasha
TV - 300K - Telewebion $$lsname=
<link>$doregex[base] playpath=hdtest-500k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=Tamasha
TV - 500K - Telewebion $$lsname=
<link>$doregex[base] playpath=hdtest-1000k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=Tamasha
TV - 1000K - Telewebion $$lsname=
<regex>
<name>base</name>
<expres>base="([^"]*)</expres>
<page>$doregex[page]</page>
<referer>http://www.telewebion.com/</referer>
</regex>
<regex>
<name>page</name>
<expres>"link": "([^"]*)</expres>
<page>http://m.pipeline.telewebion.com/op/op?action=getChannelLinks&ChannelID=43&smil_link=1</page>
<referer>http://www.telewebion.com/</referer>
</regex>
<thumbnail>http://www.telewebion.com/media//images/channel-icons/shabakeha-11.png</thumbnail>
<agent>Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101 Firefox/47.0</agent>
</item>
<item>
<title>Esfahan TV</title>
<link>http://cdn1.live.irib.ir:1935/e-tv/esfahan-300k.stream/playlist.m3u8|Accept-Encoding=gzip,
deflate,User-Agent=Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101
Firefox/47.0$$lsname=Esfahan TV - 300K - IRIB$$lsname=
<link>$doregex[base] playpath=esfahan-300k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=Esfahan
TV - 300K - Telewebion $$lsname=
<link>$doregex[base] playpath=esfahan-500k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=Esfahan
TV - 500K - Telewebion $$lsname=
<regex>
<name>base</name>
<expres>base="([^"]*)</expres>
<page>$doregex[page]</page>
<referer>http://www.telewebion.com/</referer>
</regex>
<regex>
<name>page</name>
<expres>"link": "([^"]*)</expres>
<page>http://m.pipeline.telewebion.com/op/op?action=getChannelLinks&ChannelID=30&smil_link=1</page>
<referer>http://www.telewebion.com/</referer>
</regex>
<thumbnail>http://www.telewebion.com/media//images/channel-icons/shabakeha-40.png</thumbnail>
<agent>Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101 Firefox/47.0</agent>
<fanart></fanart>
</item>
<item>
<title>Khoozestan TV</title>
<link>http://cdn1.live.irib.ir:1935/e-tv/khoozestan-300k.stream/playlist.m3u8|Accept-Encoding=gzip,
deflate,User-Agent=Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101
Firefox/47.0$$lsname=Khoozestan TV - 300K - IRIB$$lsname=
<link>$doregex[base] playpath=khoozestan-300k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true
$$lsname=Khoozestan TV - 300K - Telewebion $$lsname=
<link>$doregex[base] playpath=khoozestan-500k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true
$$lsname=Khoozestan TV - 500K - Telewebion $$lsname=
<regex>
<name>base</name>
<expres>base="([^"]*)</expres>
<page>$doregex[page]</page>
<referer>http://www.telewebion.com/</referer>
</regex>
<regex>
<name>page</name>
<expres>"link": "([^"]*)</expres>
<page>http://m.pipeline.telewebion.com/op/op?action=getChannelLinks&ChannelID=33&smil_link=1</page>
<referer>http://www.telewebion.com/</referer>
</regex>
<thumbnail>http://www.telewebion.com/media//images/channel-icons/shabakeha-25.png</thumbnail>
<agent>Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101 Firefox/47.0</agent>
<fanart></fanart>
</item>
<item>
<title>Fars TV</title>
<link>http://cdn1.live.irib.ir:1935/e-tv/fars-300k.stream/playlist.m3u8|Accept-Encoding=gzip,
deflate,User-Agent=Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101
Firefox/47.0$$lsname=Fars TV - 300K - IRIB$$lsname=
<link>$doregex[base] playpath=fars-300k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=Fars TV -
300K - Telewebion $$lsname=
<link>$doregex[base] playpath=fars-500k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=Fars TV -
500K - Telewebion $$lsname=
<regex>
<name>base</name>
<expres>base="([^"]*)</expres>
<page>$doregex[page]</page>
<referer>http://www.telewebion.com/</referer>
</regex>
<regex>
<name>page</name>
<expres>"link": "([^"]*)</expres>
<page>http://m.pipeline.telewebion.com/op/op?action=getChannelLinks&ChannelID=32&smil_link=1</page>
<referer>http://www.telewebion.com/</referer>
</regex>
<thumbnail>http://www.telewebion.com/media//images/channel-icons/shabakeha-41.png</thumbnail>
<agent>Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101 Firefox/47.0</agent>
<fanart></fanart>
</item>
<item>
<title>Khalije Fars TV</title>
<link>http://cdn1.live.irib.ir:1935/e-tv/khalijefars-300k.stream/playlist.m3u8|Accept-Encoding=gzip,
deflate,User-Agent=Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101
Firefox/47.0$$lsname=Khalije Fars TV - 300K - IRIB$$lsname=
<link>$doregex[base] playpath=khalijefars-300k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=Khalije
Fars TV - 300K - Telewebion $$lsname=
<regex>
<name>base</name>
<expres>base="([^"]*)</expres>
<page>$doregex[page]</page>
<referer>http://www.telewebion.com/</referer>
</regex>
<regex>
<name>page</name>
<expres>"link": "([^"]*)</expres>
<page>http://m.pipeline.telewebion.com/op/op?action=getChannelLinks&ChannelID=40&smil_link=1</page>
<referer>http://www.telewebion.com/</referer>
</regex>
<thumbnail>http://www.telewebion.com/media//images/channel-icons/shabakeha-28.png</thumbnail>
<agent>Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101 Firefox/47.0</agent>
<fanart></fanart>
</item>
<item>
<title>Aflak TV</title>
<link>http://cdn1.live.irib.ir:1935/e-tv/aflak-300k.stream/playlist.m3u8|Accept-Encoding=gzip,
deflate,User-Agent=Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101
Firefox/47.0$$lsname=Aflak TV - 300K - IRIB$$lsname=
<link>$doregex[base] playpath=aflak-300k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=Aflak TV -
300K - Telewebion $$lsname=
<regex>
<name>base</name>
<expres>base="([^"]*)</expres>
<page>$doregex[page]</page>
<referer>http://www.telewebion.com/</referer>
</regex>
<regex>
<name>page</name>
<expres>"link": "([^"]*)</expres>
<page>http://m.pipeline.telewebion.com/op/op?action=getChannelLinks&ChannelID=38&smil_link=1</page>
<referer>http://www.telewebion.com/</referer>
</regex>
<thumbnail>http://www.telewebion.com/media//images/channel-icons/shabakeha-37.png</thumbnail>
<agent>Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101 Firefox/47.0</agent>
<fanart></fanart>
</item>
<item>
<title>Aftab TV</title>
<link>http://cdn1.live.irib.ir:1935/e-tv/aftab-300k.stream/playlist.m3u8|Accept-Encoding=gzip,
deflate,User-Agent=Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101
Firefox/47.0$$lsname=Aftab TV - 300K - IRIB$$lsname=
<link>$doregex[base] playpath=aftab-300k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=Aftab TV -
300K - Telewebion $$lsname=
<regex>
<name>base</name>
<expres>base="([^"]*)</expres>
<page>$doregex[page]</page>
<referer>http://www.telewebion.com/</referer>
</regex>
<regex>
<name>page</name>
<expres>"link": "([^"]*)</expres>
<page>http://m.pipeline.telewebion.com/op/op?action=getChannelLinks&ChannelID=37&smil_link=1</page>
<referer>http://www.telewebion.com/</referer>
</regex>
<thumbnail>http://www.telewebion.com/media//images/channel-icons/shabakeha-26.png</thumbnail>
<agent>Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101 Firefox/47.0</agent>
<fanart></fanart>
</item>
<item>
<title>Baran TV</title>
<link>http://cdn1.live.irib.ir:1935/e-tv/baran-300k.stream/playlist.m3u8|Accept-Encoding=gzip,
deflate,User-Agent=Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101
Firefox/47.0
<thumbnail>http://www.telewebion.com/media//images/channel-icons/shabakeha-31.png</thumbnail>
<agent>Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101 Firefox/47.0</agent>
<fanart></fanart>
</item>
<item>
<title>Kurdestan TV</title>
<link>http://cdn1.live.irib.ir:1935/e-tv/kordestan-300k.stream/playlist.m3u8|Accept-Encoding=gzip,
deflate,User-Agent=Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101
Firefox/47.0$$lsname=Kurdestan TV - 300K - IRIB$$lsname=
<link>$doregex[base] playpath=kordestan-300k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=Kurdestan
TV - 300K - Telewebion $$lsname=
<regex>
<name>base</name>
<expres>base="([^"]*)</expres>
<page>$doregex[page]</page>
<referer>http://www.telewebion.com/</referer>
</regex>
<regex>
<name>page</name>
<expres>"link": "([^"]*)</expres>
<page>http://m.pipeline.telewebion.com/op/op?action=getChannelLinks&ChannelID=39&smil_link=1</page>
<referer>http://www.telewebion.com/</referer>
</regex>
<thumbnail>http://www.telewebion.com/media//images/channel-icons/shabakeha-49.png</thumbnail>
<agent>Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101 Firefox/47.0</agent>
<fanart></fanart>
</item>
<item>
<title>Sahand TV</title>
<link>http://cdn1.live.irib.ir:1935/e-tv/sahand-300k.stream/playlist.m3u8|Accept-Encoding=gzip,
deflate,User-Agent=Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101
Firefox/47.0$$lsname=Sahand TV - 300K - IRIB$$lsname=
<link>$doregex[base] playpath=sahand-300k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=Sahand TV
- 300K - Telewebion $$lsname=
<link>$doregex[base] playpath=sahand-500k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=Sahand TV
- 500K - Telewebion $$lsname=
<regex>
<name>base</name>
<expres>base="([^"]*)</expres>
<page>$doregex[page]</page>
<referer>http://www.telewebion.com/</referer>
</regex>
<regex>
<name>page</name>
<expres>"link": "([^"]*)</expres>
<page>http://m.pipeline.telewebion.com/op/op?action=getChannelLinks&ChannelID=31&smil_link=1</page>
<referer>http://www.telewebion.com/</referer>
</regex>
<thumbnail>http://www.telewebion.com/media//images/channel-icons/shabakeha-54.png</thumbnail>
<agent>Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101 Firefox/47.0</agent>
<fanart></fanart>
</item>
<item>
<title>Semnan TV</title>
<link>http://cdn1.live.irib.ir:1935/e-tv/semnan-300k.stream/playlist.m3u8|Accept-Encoding=gzip,
deflate,User-Agent=Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101
Firefox/47.0$$lsname=Semnan TV - 300K - IRIB$$lsname=
<link>$doregex[base] playpath=semnan-300k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=Semnan TV
- 300K - Telewebion $$lsname=
<regex>
<name>base</name>
<expres>base="([^"]*)</expres>
<page>$doregex[page]</page>
<referer>http://www.telewebion.com/</referer>
</regex>
<regex>
<name>page</name>
<expres>"link": "([^"]*)</expres>
<page>http://m.pipeline.telewebion.com/op/op?action=getChannelLinks&ChannelID=36&smil_link=1</page>
<referer>http://www.telewebion.com/</referer>
</regex>
<thumbnail>http://www.telewebion.com/media//images/channel-icons/shabakeha-45.png</thumbnail>
<agent>Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101 Firefox/47.0</agent>
<fanart></fanart>
</item>
<item>
<title>Jaame Jam TV</title>
<link>http://cdn1.live.irib.ir:1935/e-tv/jjtvn1-300k.stream/playlist.m3u8|Accept-Encoding=gzip,
deflate,User-Agent=Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101
Firefox/47.0$$lsname=Jaame Jam TV - 300K - IRIB$$lsname=
<link>http://s1.tv.asandl.com:1935/devices/jj1-300k.stream/playlist.m3u8$$lsname=Jaame Jam TV - 300K - Asandl S1$$lsname=
<link>http://s2.tv.asandl.com:1935/e-tv/jjtvn1-300k.stream/playlist.m3u8$$lsname=Jaame Jam TV - 300K - Asandl S2$$lsname=
<link>http://63.237.48.28/ios/JAME_JAM_TV_NETWORK_1/JAME_JAM_TV_NETWORK_1.m3u8$$lsname=Jaame Jam TV - 720x576 - IranProud$$lsname=
<link>$doregex[base] playpath=jj1-300k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=Jaame Jam
TV - 300K - Telewebion $$lsname=
<link>$doregex[base] playpath=jj1-500k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=Jaame Jam
TV - 500K - Telewebion $$lsname=
<regex>
<name>base</name>
<expres>base="([^"]*)</expres>
<page>$doregex[page]</page>
<referer>http://www.telewebion.com/</referer>
</regex>
<regex>
<name>page</name>
<expres>"link": "([^"]*)</expres>
<page>http://m.pipeline.telewebion.com/op/op?action=getChannelLinks&ChannelID=12&smil_link=1</page>
<referer>http://www.telewebion.com/</referer>
</regex>
<thumbnail>http://www.telewebion.com/media//images/channel-icons/shabakeha-13.png</thumbnail>
<agent>Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101 Firefox/47.0</agent>
<fanart></fanart>
</item>
<item>
<title>IFilm Farsi</title>
<link>http://cdn1.live.irib.ir:1935/e-tv/ifilmfa-300k.stream/playlist.m3u8|Accept-Encoding=gzip,
deflate,User-Agent=Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101
Firefox/47.0$$lsname=IFilm Farsi - 300K - IRIB$$lsname=
<link>http://s1.tv.asandl.com:1935/devices/ifilm-300k.stream/playlist.m3u8$$lsname=IFilm Farsi - 300K - Asandl S1$$lsname=
<link>http://s2.tv.asandl.com:1935/e-tv/ifilmfa-300k.stream/playlist.m3u8$$lsname=IFilm Farsi - 300K - Asandl S2$$lsname=
<link>http://efusion1-i.akamaihd.net/hls/live/252882/ifilmfa/playlist.m3u8$$lsname=IFilm Farsi - 512K - Asandl$$lsname=
<link>http://63.237.48.28/ios/IFILM/IFILM.m3u8$$lsname=IFilm Farsi - 720x576 - IranProud$$lsname=
<link>$doregex[base] playpath=ifilm-100k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=IFilm
Farsi - 100K - Telewebion $$lsname=
<link>$doregex[base] playpath=ifilm-300k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=IFilm
Farsi - 300K - Telewebion $$lsname=
<link>$doregex[base] playpath=ifilm-500k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=IFilm
Farsi - 500K - Telewebion $$lsname=
<link>$doregex[base] playpath=ifilm-1000k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=IFilm
Farsi - 1000K - Telewebion $$lsname=
<regex>
<name>base</name>
<expres>base="([^"]*)</expres>
<page>$doregex[page]</page>
<referer>http://www.telewebion.com/</referer>
</regex>
<regex>
<name>page</name>
<expres>"link": "([^"]*)</expres>
<page>http://m.pipeline.telewebion.com/op/op?action=getChannelLinks&ChannelID=9&smil_link=1</page>
<referer>http://www.telewebion.com/</referer>
</regex>
<thumbnail>http://www.telewebion.com/media//images/channel-icons/shabakeha-07.png</thumbnail>
<agent>Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101 Firefox/47.0</agent>
<fanart></fanart>
</item>
<item>
<title>Quran TV</title>
<link>http://cdn1.live.irib.ir:1935/e-tv/quran-300k.stream/playlist.m3u8|Accept-Encoding=gzip,
deflate,User-Agent=Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101
Firefox/47.0$$lsname=Quran TV - 300K - IRIB$$lsname=
<link>$doregex[base] playpath=quran-300k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=Quran TV -
300K - Telewebion $$lsname=
<link>$doregex[base] playpath=quran-500k.stream
swfUrl=http://static.pipeline.telewebion.com/newtw/ntwv28/js/jwPlayer/jwplayer.flash.swf
pageUrl=http://www.telewebion.com live=1 swfVfy=true $$lsname=Quran TV -
500K - Telewebion $$lsname=
<regex>
<name>base</name>
<expres>base="([^"]*)</expres>
<page>$doregex[page]</page>
<referer>http://www.telewebion.com/</referer>
</regex>
<regex>
<name>page</name>
<expres>"link": "([^"]*)</expres>
<page>http://m.pipeline.telewebion.com/op/op?action=getChannelLinks&ChannelID=20&smil_link=1</page>
<referer>http://www.telewebion.com/</referer>
</regex>
<thumbnail>http://www.telewebion.com/media//images/channel-icons/shabakeha-17.png</thumbnail>
<agent>Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101 Firefox/47.0</agent>
<fanart></fanart>
</item>
<item>
<title>Alborz TV</title>
<link>http://cdn1.live.irib.ir:1935/e-tv/alborz-300k.stream/playlist.m3u8|Accept-Encoding=gzip,
deflate,User-Agent=Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101
Firefox/47.0
<thumbnail>http://www1.live.irib.ir/templates/smartphone/images/sima/alborz-min.png.pagespeed.ce.TkSz-f4GVh.png</thumbnail>
<agent>Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101 Firefox/47.0</agent>
<fanart></fanart>
</item>
<item>
<title>Azarbayjan TV</title>
<link>http://cdn1.live.irib.ir:1935/e-tv/azarbayjan-300k.stream/playlist.m3u8|Accept-Encoding=gzip,
deflate,User-Agent=Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101
Firefox/47.0
<thumbnail>http://www1.live.irib.ir/templates/smartphone/images/sima/azarbayjan-min.png.pagespeed.ce._Ga8i0If4d.png</thumbnail>
<agent>Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101 Firefox/47.0</agent>
<fanart></fanart>
</item>
<item>
<title>Bushehr TV</title>
<link>http://cdn1.live.irib.ir:1935/e-tv/bushehr-300k.stream/playlist.m3u8|Accept-Encoding=gzip,
deflate,User-Agent=Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101
Firefox/47.0
<thumbnail>http://www1.live.irib.ir/templates/smartphone/images/sima/bushehr-min.png.pagespeed.ce.GX6FGZ3hH4.png</thumbnail>
<agent>Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101 Firefox/47.0</agent>
<fanart></fanart>
</item>
<item>
<title>Dena TV</title>
<link>http://cdn1.live.irib.ir:1935/e-tv/dena-300k.stream/playlist.m3u8|Accept-Encoding=gzip,
deflate,User-Agent=Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101
Firefox/47.0
<thumbnail>http://www1.live.irib.ir/templates/smartphone/images/sima/dena-min.png.pagespeed.ce.7TU-ImuFYm.png</thumbnail>
<agent>Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101 Firefox/47.0</agent>
<fanart></fanart>
</item>
<item>
<title>Noor TV</title>
<link>http://cdn1.live.irib.ir:1935/e-tv/noor-300k.stream/playlist.m3u8|Accept-Encoding=gzip,
deflate,User-Agent=Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101
Firefox/47.0
<thumbnail>http://www1.live.irib.ir/templates/smartphone/images/sima/noor-min.png.pagespeed.ce.4EsQJHfXKC.png</thumbnail>
<agent>Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101 Firefox/47.0</agent>
<fanart></fanart>
</item>
<item>
<title>Eshragh TV</title>
<link>http://cdn1.live.irib.ir:1935/e-tv/eshragh-300k.stream/playlist.m3u8|Accept-Encoding=gzip,
deflate,User-Agent=Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101
Firefox/47.0
<thumbnail>http://www1.live.irib.ir/templates/smartphone/images/sima/eshragh-min.png.pagespeed.ce.o-_yg-5dVB.png</thumbnail>
<agent>Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101 Firefox/47.0</agent>
<fanart></fanart>
</item>
<item>
<title>Qazvin TV</title>
<link>http://cdn1.live.irib.ir:1935/e-tv/qazvin-300k.stream/playlist.m3u8|Accept-Encoding=gzip,
deflate,User-Agent=Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101
Firefox/47.0
<thumbnail>http://www1.live.irib.ir/templates/smartphone/images/sima/qazvin-min.png.pagespeed.ce.XTbMAmiNGL.png</thumbnail>
<agent>Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101 Firefox/47.0</agent>
<fanart></fanart>
</item>
<item>
<title>Hamedan TV</title>
<link>http://cdn1.live.irib.ir:1935/e-tv/hamedan-300k.stream/playlist.m3u8|Accept-Encoding=gzip,
deflate,User-Agent=Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101
Firefox/47.0
<thumbnail>http://www1.live.irib.ir/templates/smartphone/images/sima/hamedan-min.png.pagespeed.ce.jKAtohmx63.png</thumbnail>
<agent>Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101 Firefox/47.0</agent>