-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy patht_television.sql
968 lines (962 loc) · 314 KB
/
t_television.sql
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
/*
Navicat MySQL Data Transfer
Source Server : 47.52.192.199
Source Server Version : 50726
Source Host : 47.52.192.199:3306
Source Database : webapi
Target Server Type : MYSQL
Target Server Version : 50726
File Encoding : 65001
Date: 2020-03-07 10:05:16
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for `t_television`
-- ----------------------------
DROP TABLE IF EXISTS `t_television`;
CREATE TABLE `t_television` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(100) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL,
`url_1` varchar(500) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL,
`url_2` varchar(500) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL,
`url_3` varchar(500) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL,
`type_ids` varchar(100) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL,
`is_hot` tinyint(1) DEFAULT '0',
`is_new` tinyint(1) DEFAULT '0',
`is_recommend` tinyint(1) DEFAULT '0',
`country` int(11) DEFAULT NULL,
`province` int(11) DEFAULT NULL,
`city` int(11) DEFAULT NULL,
`icon` varchar(100) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL,
`bg` varchar(200) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL,
`keyword` varchar(200) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL,
`context` varchar(1000) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL,
`hit` int(11) DEFAULT '0',
`icon_width` int(11) DEFAULT '0',
`icon_height` int(11) DEFAULT '0',
`status` int(11) DEFAULT '0',
`channelid` varchar(50) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `index_type_ids` (`type_ids`) USING HASH
) ENGINE=InnoDB AUTO_INCREMENT=1998 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of t_television
-- ----------------------------
INSERT INTO `t_television` VALUES ('4', 'CCTV-1', 'http://223.110.241.150:6610/gitv/live1/G_CCTV-1-CQ/G_CCTV-1-CQ/', 'http://211.137.115.110:8080/gitv_live/G_CCTV-1-MD/G_CCTV-1-MD.m3u8', 'http://39.135.36.151:18890/000000001000/1000000001000021973/1.m3u8?channel-id=ystenlive&Contentid=1000000001000021973&livemode=1&stbId=005203FF000360100001001A34C0CD33&userToken=4ef1f6fdd53988bdf19472c73151206f21vv&usergroup=g21077200000&version=1.0&owaccmark=1000000001000021973&owchid=ystenlive&owsid=1106497909461769539&AuthInfo=yOLXJswzZFfV3FvB8MhHuElKGJKLbU5H0jB3qAhfSE7AORAoVDZDWbFnJ0sXJEaRLaQJeR5usCQMKdpIDCZAoYPt4bOuuiUwGxs8%2fKxpb7Wa3xqB26AcGEvjhx3JJlw6', '2', '1', '0', '0', '100000', '0', '0', 'http://webapi.abigfish.net/static/upload/356c392f8a1f8c38/1683542cf1a1d4b5.png', 'http://webapi.abigfish.net/static/upload/e040fe1cb52240dc/de0a1597cab5658c59683c94962309d7/aad44074347a1deb.jpg', '综合HD', '', '521', '128', '128', '1', 'b3666b9d');
INSERT INTO `t_television` VALUES ('5', 'CCTV-2', 'http://223.110.241.150:6610/gitv/live1/G_CCTV-2-CQ/G_CCTV-2-CQ/', 'http://39.135.36.150:18890/000000001000/1000000001000012442/1.m3u8?channel-id=ystenlive&Contentid=1000000001000012442&livemode=1&stbId=005203FF000360100001001A34C0CD33&userToken=4ef1f6fdd53988bdf19472c73151206f21vv&usergroup=g21077200000&version=1.0&owaccmark=1000000001000012442&owchid=ystenlive&owsid=1106497909461775063&AuthInfo=yOLXJswzZFfV3FvB8MhHuElKGJKLbU5H0jB3qAhfSE7AORAoVDZDWbFnJ0sXJEaRknGE%2fO0VC9Co37x%2f7gMjaWYjatUfTQlAa15Ksg%2fXe8sQo%2fi5btdpzeV%2b1v4UwuHf', 'http://211.137.115.110:8080/gitv_live/G_CCTV-2-MD/G_CCTV-2-MD.m3u8', '2', '1', '0', '0', '100000', '0', '0', 'http://webapi.abigfish.net/static/upload/11044cc9da6274b6/c2c45fe50cdaa1fd.png', 'http://webapi.abigfish.net/static/upload/8a1f74ea8d333ac3/7a9fe795aa4183e23fc6d55e4445affa/1b8c0c07690c484a.jpg', '财经HD', '财经', '404', '128', '128', '1', 'c5717c2d');
INSERT INTO `t_television` VALUES ('6', 'CCTV-3', 'http://gslbserv.itv.cmvideo.cn:80/000000001000/8378175926191110263/1.m3u8?channel-id=ystenlive&Contentid=8378175926191110263&livemode=1&stbId=003901FF0001181003FC08A5C8C6C037&userToken=85a5a98cdcab4d800a8ec29a9d917e8d10vv&usergroup=g10045200000&version=1.0&owaccmark=8378175926191110263&owchid=ystenlive&owsid=7951969344460961673', 'http://39.135.15.70:6610/PLTV/88888888/224/3221226008/1/index.m3u8?fmt=ts2hls', 'http://223.110.241.150:6610/gitv/live1/G_CCTV-3-CQ/G_CCTV-3-CQ/', '2', '1', '0', '0', '100000', '0', '0', 'http://webapi.abigfish.net/static/upload/a03cba444f58925f/e538cd706db11ef9.png', 'http://webapi.abigfish.net/static/upload/3f360cef56560a72/3b16d10f2fdfc3529578a63fbe545bd8/2cc5bbe749636af1.jpg', '综艺HD', '', '71', '128', '128', '1', '53eda06f');
INSERT INTO `t_television` VALUES ('7', 'CCTV-4', 'http://211.137.115.110:8080/gitv_live/G_CCTV-4-MD/G_CCTV-4-MD.m3u8?p=GITV&area=SAXYD', 'http://39.135.36.150:18890/000000001000/1000000002000031664/1.m3u8?channel-id=ystenlive&Contentid=1000000002000031664&livemode=1&stbId=005203FF000360100001001A34C0CD33&userToken=bd8bb70bdb2b54bd84b587dffa024f7621vv&usergroup=g21077200000&version=1.0&owaccmark=1000000002000031664&owchid=ystenlive&owsid=1106497909461056460&AuthInfo=yOLXJswzZFfV3FvB8MhHuElKGJKLbU5H0jB3qAhfSE5oj7lZFbEKIj3xJcvQPkjhSaNRr4LzI3YsXQPQcGzS6VSIZXSs858JtCAdvl%2fg%2f2u5lawXOBSX%2fqESSB5FmTXS', 'http://223.110.241.150:6610/gitv/live1/G_CCTV-4-CQ/G_CCTV-4-CQ/', '2', '1', '0', '0', '100000', '0', '0', 'http://webapi.abigfish.net/static/upload/6dbe0e9dff3a8ad5/ab7de6894b4abb27.png', 'http://webapi.abigfish.net/static/upload/5683495c01530bcc/b72168dc75a983f1993543ca441bef23/95ed92533ad51f96.jpg', 'CCTV-4asia', '', '70', '128', '128', '1', 'b3666b9d');
INSERT INTO `t_television` VALUES ('8', 'CCTV-5', 'http://gslbserv.itv.cmvideo.cn:80/000000001000/reallive-cctv5/1.m3u8?channel-id=ystenlive&Contentid=reallive-cctv5&livemode=1&stbId=003901FF0001181003FC08A5C8C6C037&userToken=85a5a98cdcab4d800a8ec29a9d917e8d10vv&usergroup=g10045200000&version=1.0&owaccmark=reallive-cctv5&owchid=ystenlive&owsid=7951969344460933131', 'http://223.110.241.150:6610/gitv/live1/G_CCTV-5-CQ/G_CCTV-5-CQ/', 'http://223.110.243.136/PLTV/4/224/3221227537/index.m3u8', '2,3', '1', '0', '0', '100000', '0', '0', 'http://webapi.abigfish.net/static/upload/85b9bb704c8d90fd/b7a32056a9b61015.png', 'http://webapi.abigfish.net/static/upload/2d8d607eebaed8eb/e7ab545194237faed12d5b4f87954839/07457f1f7aabffcb.jpg', '体育', '', '169', '128', '128', '1', '6b26bee1');
INSERT INTO `t_television` VALUES ('9', 'CCTV-6', 'http://gslbserv.itv.cmvideo.cn:80/000000001000/6117099895556651277/1.m3u8?channel-id=ystenlive&Contentid=6117099895556651277&livemode=1&stbId=003901FF0001181003FC08A5C8C6C037&userToken=85a5a98cdcab4d800a8ec29a9d917e8d10vv&usergroup=g10045200000&version=1.0&owaccmark=6117099895556651277&owchid=ystenlive&owsid=7951969344460914262', 'http://223.110.241.150:6610/gitv/live1/G_CCTV-6-CQ/G_CCTV-6-CQ/', 'http://39.135.15.70:6610/PLTV/88888888/224/3221226011/1/index.m3u8?fmt=ts2hls', '2', '1', '0', '0', '100000', '0', '0', 'http://webapi.abigfish.net/static/upload/5277da8c6675a212/d60a4a66261504a8.png', 'http://webapi.abigfish.net/static/upload/c1020880214e7bbf/222d0069b7c77cb799bddc0e3c754871/4c48171b8595faac.jpg', '电影HD', '', '86', '128', '128', '1', 'ddb707c0');
INSERT INTO `t_television` VALUES ('10', 'CCTV-7', 'http://gslbserv.itv.cmvideo.cn:80/000000001000/7050628689018054317/1.m3u8?channel-id=ystenlive&Contentid=7050628689018054317&livemode=1&stbId=003901FF0001181003FC08A5C8C6C037&userToken=85a5a98cdcab4d800a8ec29a9d917e8d10vv&usergroup=g10045200000&version=1.0&owaccmark=7050628689018054317&owchid=ystenlive&owsid=7951969344461071292', 'http://223.110.241.150:6610/gitv/live1/G_CCTV-7-HQ/G_CCTV-7-HQ/', 'http://ott.fj.chinamobile.com/PLTV/88888888/224/3221226998/1.m3u8', '2', '0', '1', '0', '100000', '0', '0', 'http://webapi.abigfish.net/static/upload/a905adf3746736ac/05048e2761f67d0a.png', 'http://webapi.abigfish.net/static/upload/d77f939ce26039cc/0a0226aeb635d6dd4f10ac32425eaa39/b2f93cd9c67ff456.jpg', 'CCTV-7', '', '27', '128', '128', '1', 'f2d13f2a');
INSERT INTO `t_television` VALUES ('11', 'CCTV-8', 'http://gslbserv.itv.cmvideo.cn:80/000000001000/8871488051501921127/1.m3u8?channel-id=ystenlive&Contentid=8871488051501921127&livemode=1&stbId=003901FF0001181003FC08A5C8C6C037&userToken=85a5a98cdcab4d800a8ec29a9d917e8d10vv&usergroup=g10045200000&version=1.0&owaccmark=8871488051501921127&owchid=ystenlive&owsid=7951969344461083214', 'http://223.110.241.150:6610/gitv/live1/G_CCTV-8-CQ/G_CCTV-8-CQ/', 'http://183.207.248.71/cntv/live1/CCTV-8超HD/HD-8000k-1080P-cctv8', '2', '0', '1', '0', '100000', '0', '0', 'http://webapi.abigfish.net/static/upload/c3decc6d88b67b46/7a80c5783528f6b9.png', 'http://webapi.abigfish.net/static/upload/ef2bc70c1eb52a0c/9a3c0a7181807bbbd66d7531860ea509/30a6d1280ae9f5e3.jpg', 'CCTV-8', '', '28', '128', '128', '1', '13e8f054');
INSERT INTO `t_television` VALUES ('12', 'CCTV-9', 'http://gslbserv.itv.cmvideo.cn:80/000000001000/6275371742726901431/1.m3u8?channel-id=ystenlive&Contentid=6275371742726901431&livemode=1&stbId=003901FF0001181003FC08A5C8C6C037&userToken=85a5a98cdcab4d800a8ec29a9d917e8d10vv&usergroup=g10045200000&version=1.0&owaccmark=6275371742726901431&owchid=ystenlive&owsid=7951969344461093397', 'http://183.207.248.71/cntv/live1/CCTV-9超HD/HD-8000k-1080P-cctv9', 'http://ott.fj.chinamobile.com/PLTV/88888888/224/3221225929/1.m3u8', '2', '0', '0', '0', '100000', '0', '0', 'http://webapi.abigfish.net/static/upload/249c7be38b404b60/6bddbb6e7ed96f0b.png', 'http://webapi.abigfish.net/static/upload/2679bd294eecba09/a5de65ee3621198f85eecf84d689d21f/a27283a1a61be979.jpg', 'CCTV-9', '', '56', '128', '128', '1', '8f932b7b');
INSERT INTO `t_television` VALUES ('13', 'CCTV-10', 'http://gslbserv.itv.cmvideo.cn:80/000000001000/7019587760656900133/1.m3u8?channel-id=ystenlive&Contentid=7019587760656900133&livemode=1&stbId=003901FF0001181003FC08A5C8C6C037&userToken=85a5a98cdcab4d800a8ec29a9d917e8d10vv&usergroup=g10045200000&version=1.0&owaccmark=7019587760656900133&owchid=ystenlive&owsid=7951969344461108918', 'http://183.207.248.71/cntv/live1/CCTV-10超HD/HD-8000k-1080P-cctv10', 'http://ott.fj.chinamobile.com/PLTV/88888888/224/3221225931/1.m3u8', '2', '0', '1', '0', '100000', '0', '0', 'http://webapi.abigfish.net/static/upload/667a4db388dad890/26910998e099ed68.png', 'http://webapi.abigfish.net/static/upload/135e84b8aff5a3a5/4bbf9180e06772521fa4b1d28b57d347/7b32c1bb9e44b0a8.jpg', 'CCTV-10', '', '35', '128', '128', '1', '7651a0a2');
INSERT INTO `t_television` VALUES ('14', 'CCTV-11', 'http://gslbserv.itv.cmvideo.cn:80/000000001000/6351457414282570521/1.m3u8?channel-id=ystenlive&Contentid=6351457414282570521&livemode=1&stbId=003901FF0001181003FC08A5C8C6C037&userToken=85a5a98cdcab4d800a8ec29a9d917e8d10vv&usergroup=g10045200000&version=1.0&owaccmark=6351457414282570521&owchid=ystenlive&owsid=7951969344461118626', 'http://ott.fj.chinamobile.com/PLTV/88888888/224/3221225815/1.m3u8', 'http://111.0.27.27/tlivecloud-cdn.ysp.cctv.cn/001/2000204103.m3u8', '2', '0', '0', '0', '100000', '0', '0', 'http://webapi.abigfish.net/static/upload/360be1951b106054/8ed06d0464ad0ea4.png', 'http://webapi.abigfish.net/static/upload/d95d1855493a1ead/a43198062b58ed320c93a29986decf4a/ca9dd5e544c38fdb.jpg', 'CCTV-11', '', '20', '128', '128', '1', '0a2de840');
INSERT INTO `t_television` VALUES ('15', 'CCTV-12', 'http://gslbserv.itv.cmvideo.cn:80/000000001000/5325631075193490169/1.m3u8?channel-id=ystenlive&Contentid=5325631075193490169&livemode=1&stbId=003901FF0001181003FC08A5C8C6C037&userToken=85a5a98cdcab4d800a8ec29a9d917e8d10vv&usergroup=g10045200000&version=1.0&owaccmark=5325631075193490169&owchid=ystenlive&owsid=7951969344461128324', 'http://ott.fj.chinamobile.com/PLTV/88888888/224/3221225932/1.m3u8', 'http://183.207.248.71/cntv/live1/CCTV-12超HD/HD-8000k-1080P-cctv12', '2', '0', '0', '0', '100000', '0', '0', 'http://webapi.abigfish.net/static/upload/f8274bf310370107/c8a5b7ccabfd0518.png', 'http://webapi.abigfish.net/static/upload/4eed1153c6579c3f/4d406da8b34fc1d7a990d7a6b3327afe/16cff8e7bfa58114.jpg', 'CCTV-12', '', '21', '128', '128', '1', '1e983148');
INSERT INTO `t_television` VALUES ('16', 'CCTV-13', 'http://gslbserv.itv.cmvideo.cn:80/000000001000/6918130250570453526/1.m3u8?channel-id=ystenlive&Contentid=6918130250570453526&livemode=1&stbId=003901FF0001181003FC08A5C8C6C037&userToken=85a5a98cdcab4d800a8ec29a9d917e8d10vv&usergroup=g10045200000&version=1.0&owaccmark=6918130250570453526&owchid=ystenlive&owsid=7951969344461137026', 'http://111.0.27.30/tlivecloud-cdn.ysp.cctv.cn/013/2000204603.m3u8', 'http://111.48.79.139/tlivecloud-cdn.ysp.cctv.cn/001/2000204603.m3u8', '2', '0', '0', '0', '100000', '0', '0', 'http://webapi.abigfish.net/static/upload/cb66f2f469c884df/6eb8e09dd85f51e6.png', 'http://webapi.abigfish.net/static/upload/a57bf18e19b6b17e/3d4fbc20561e20552c9f4381a56ef0aa/281740223ac99e7f.jpg', 'CCTV-13', '', '22', '128', '128', '1', 'f5b1a323');
INSERT INTO `t_television` VALUES ('17', 'CCTV-14', 'http://gslbserv.itv.cmvideo.cn:80/000000001000/8203666801302077036/1.m3u8?channel-id=ystenlive&Contentid=8203666801302077036&livemode=1&stbId=003901FF0001181003FC08A5C8C6C037&userToken=85a5a98cdcab4d800a8ec29a9d917e8d10vv&usergroup=g10045200000&version=1.0&owaccmark=8203666801302077036&owchid=ystenlive&owsid=7951969344461164890', 'http://183.207.248.71/cntv/live1/CCTV-14超HD/HD-8000k-1080P-cctv14', 'http://117.148.187.37/PLTV/88888888/224/3221226126/index.m3u8', '2', '0', '0', '0', '100000', '0', '0', 'http://webapi.abigfish.net/static/upload/505b32fb5327e3ce/505bce163893166b.png', 'http://webapi.abigfish.net/static/upload/c7a33165556c1fc2/bd14114d3d7c7cdb468df2874368dc8f/c93a74a0977cfba5.jpg', 'CCTV-14', '', '23', '128', '128', '1', '6fff4f43');
INSERT INTO `t_television` VALUES ('18', 'CCTV-15', 'http://gslbserv.itv.cmvideo.cn:80/000000001000/4832596595465032187/1.m3u8?channel-id=ystenlive&Contentid=4832596595465032187&livemode=1&stbId=003901FF0001181003FC08A5C8C6C037&userToken=85a5a98cdcab4d800a8ec29a9d917e8d10vv&usergroup=g10045200000&version=1.0&owaccmark=4832596595465032187&owchid=ystenlive&owsid=7951969344461174577', 'http://ott.fj.chinamobile.com/PLTV/88888888/224/3221225818/1.m3u8', 'http://112.50.243.8/PLTV/88888888/224/3221225818/1.m3u8', '2', '1', '0', '0', '100000', '0', '0', 'http://webapi.abigfish.net/static/upload/97709130a0b58031/866f3b4e3600f3a4.png', 'http://webapi.abigfish.net/static/upload/3842cc134c8a40d4/77619af40a1b9813242c1eebf6c9cd45/23eb187d543a65b5.jpg', 'CCTV-15', '', '35', '128', '128', '1', '3201ff16');
INSERT INTO `t_television` VALUES ('19', '广东卫视', 'http://gslbserv.itv.cmvideo.cn:80/000000001000/6604532991586541024/1.m3u8?channel-id=ystenlive&Contentid=6604532991586541024&livemode=1&stbId=003901FF0001181003FC08A5C8C6C037&userToken=85a5a98cdcab4d800a8ec29a9d917e8d10vv&usergroup=g10045200000&version=1.0&owaccmark=6604532991586541024&owchid=ystenlive&owsid=7951969344461463247', 'http://223.110.241.150:6610/gitv/live1/G_GUANGDONG-CQ/G_GUANGDONG-CQ/', 'http://183.252.176.13/ott.js.chinamobile.com/PLTV/88888888/224/3221225942/index.m3u8', '7', '0', '1', '0', '100000', '440000', '0', 'http://webapi.abigfish.net/static/upload/c0160db7728e7b11/dca592c700649142.png', 'http://webapi.abigfish.net/static/upload/6673ddb795081d1e/b9a521fc583ece2afc82b0fc541ab922/a395543275ec203d.jpg', 'GDTV-1', '', '91', '300', '300', '1', 'cb608c10');
INSERT INTO `t_television` VALUES ('20', '浙江卫视', 'http://211.137.115.110:8080/gitv_live/G_ZHEJIANG-MD/G_ZHEJIANG-MD.m3u8?p=GITV&area=SAXYD', 'http://gslbserv.itv.cmvideo.cn:80/000000001000/4945391150963996912/1.m3u8?channel-id=ystenlive&Contentid=4945391150963996912&livemode=1&stbId=003901FF0001181003FC08A5C8C6C037&userToken=85a5a98cdcab4d800a8ec29a9d917e8d10vv&usergroup=g10045200000&version=1.0&owaccmark=4945391150963996912&owchid=ystenlive&owsid=7951969344461378244', 'http://223.110.241.150:6610/gitv/live1/G_ZHEJIANG-CQ/G_ZHEJIANG-CQ/', '7', '1', '0', '0', '100000', '330000', '0', 'http://webapi.abigfish.net/static/upload/40516d02e5e2c24e/4ca9f76995ea5e52.jpg', 'http://webapi.abigfish.net/static/upload/a507ec51009c382c/68a47078b1f8b419900e9a6cea0b0ddf/ecbfba02cc20b13f.jpg', 'ZJTV-1', '', '65', '427', '385', '1', '9f005630');
INSERT INTO `t_television` VALUES ('21', '北京卫视', 'http://gslbserv.itv.cmvideo.cn:80/000000001000/8258663409451267714/1.m3u8?channel-id=ystenlive&Contentid=8258663409451267714&livemode=1&stbId=003901FF0001181003FC08A5C8C6C037&userToken=85a5a98cdcab4d800a8ec29a9d917e8d10vv&usergroup=g10045200000&version=1.0&owaccmark=8258663409451267714&owchid=ystenlive&owsid=7951969344461450633', 'http://223.110.241.150:6610/gitv/live1/G_BEIJING-CQ/G_BEIJING-CQ/', 'http://183.252.176.13/ott.js.chinamobile.com/PLTV/88888888/224/3221225937/index.m3u8', '7', '0', '1', '0', '100000', '110000', '0', 'http://webapi.abigfish.net/static/upload/93dfee61b3041da6/76fb5c50c77b4a0e.png', 'http://webapi.abigfish.net/static/upload/34cb7e25851a9c98/dea6a2c75e7206764bdf1d939d3df9f2/fc7fc528c5c7cd32.jpg', 'BTV-1', '', '100', '300', '300', '1', '696f2203');
INSERT INTO `t_television` VALUES ('22', '湖南卫视', 'http://gslbserv.itv.cmvideo.cn:80/000000001000/8655038471675748531/1.m3u8?channel-id=ystenlive&Contentid=8655038471675748531&livemode=1&stbId=003901FF0001181003FC08A5C8C6C037&userToken=85a5a98cdcab4d800a8ec29a9d917e8d10vv&usergroup=g10045200000&version=1.0&owaccmark=8655038471675748531&owchid=ystenlive&owsid=7951969344461592272', 'http://211.137.115.110:8080/gitv_live/G_HUNAN-MD/G_HUNAN-MD.m3u8?p=GITV&area=SAXYD', 'http://223.110.241.150:6610/gitv/live1/G_HUNAN-CQ/G_HUNAN-CQ/', '7', '1', '1', '0', '100000', '430000', '0', 'http://webapi.abigfish.net/static/upload/ab65c541fcda417d/86404f2e87140a40.png', 'http://webapi.abigfish.net/static/upload/05b99715f32c973f/929cd22735389966d2a9aaedbe3616c7/be11e07856c29e2a.jpg', 'HNTV-1', '', '80', '300', '300', '1', '7d4daf1f');
INSERT INTO `t_television` VALUES ('23', '东方卫视', 'http://gslbserv.itv.cmvideo.cn:80/000000001000/4699937686040264690/1.m3u8?channel-id=ystenlive&Contentid=4699937686040264690&livemode=1&stbId=003901FF0001181003FC08A5C8C6C037&userToken=85a5a98cdcab4d800a8ec29a9d917e8d10vv&usergroup=g10045200000&version=1.0&owaccmark=4699937686040264690&owchid=ystenlive&owsid=7951969344461368555', 'http://211.137.115.110:8080/gitv_live/G_DONGFANG-MD/G_DONGFANG-MD.m3u8?p=GITV&area=SAXYD', 'http://223.110.241.150:6610/gitv/live1/G_DONGFANG-CQ/G_DONGFANG-CQ/', '7', '0', '1', '0', '100000', '310000', '0', 'http://webapi.abigfish.net/static/upload/9bfbb2b0f217ee74/56bdf94f3a19a0fe.jpg', 'http://webapi.abigfish.net/static/upload/6e895a319badc808/4b720c2b9802278cba0c3a8d191e1921/f963c1ac3edcb044.jpg', 'SMG', 'rtmp://202.195.240.8:1935/iptv/dfhd', '46', '1086', '1200', '1', '95f40184');
INSERT INTO `t_television` VALUES ('24', '天津卫视', 'http://211.137.115.110:8080/gitv_live/G_TIANJIN-MD/G_TIANJIN-MD.m3u8?p=GITV&area=SAXYD', 'http://gslbserv.itv.cmvideo.cn:80/000000001000/8798367982904688776/1.m3u8?channel-id=ystenlive&Contentid=8798367982904688776&livemode=1&stbId=003901FF0001181003FC08A5C8C6C037&userToken=85a5a98cdcab4d800a8ec29a9d917e8d10vv&usergroup=g10045200000&version=1.0&owaccmark=8798367982904688776&owchid=ystenlive&owsid=7951969344461336601', 'http://223.110.241.150:6610/gitv/live1/G_TIANJIN-CQ/G_TIANJIN-CQ/', '7', '0', '0', '0', '100000', '120000', '0', 'http://webapi.abigfish.net/static/upload/c9c100a81547a9fe/fe56cfd6805a7e84.png', 'http://webapi.abigfish.net/static/upload/b3aa1cf0bf964b2f/122eab9d18e8e7895f447df2f1d70893/e3805f3dab9183c4.jpg', 'TJTV-1', '', '31', '300', '300', '1', 'b5cb5697');
INSERT INTO `t_television` VALUES ('25', '重庆卫视', 'http://ott.fj.chinamobile.com/PLTV/88888888/224/3221225831/1.m3u8', 'http://183.207.248.71/cntv/live1/重庆卫视超HD/HD-8000k-1080P-chongqingstv', 'http://gslbserv.itv.cmvideo.cn:80/000000001000/4995134319251569870/1.m3u8?channel-id=ystenlive&Contentid=4995134319251569870&livemode=1&stbId=003901FF0001181003FC08A5C8C6C037&userToken=85a5a98cdcab4d800a8ec29a9d917e8d10vv&usergroup=g10045200000&version=1.0&owaccmark=4995134319251569870&owchid=ystenlive&owsid=7951969344462067550', '7', '0', '0', '0', '100000', '500000', '0', 'http://webapi.abigfish.net/static/upload/7dfd54f71b3615f0/a982677bb4549cb6.png', 'http://webapi.abigfish.net/static/upload/ead6d4ad482d8a33/8ec1de8a26504e9712a5750856a0b9bc/0e1e87c4018c3311.jpg', 'CQTV-1', '', '36', '300', '300', '1', '54cb9087');
INSERT INTO `t_television` VALUES ('26', '辽宁卫视', 'http://223.110.241.150:6610/gitv/live1/G_LIAONING-CQ/G_LIAONING-CQ/', 'http://gslbserv.itv.cmvideo.cn:80/000000001000/7638375013635582245/1.m3u8?channel-id=ystenlive&Contentid=7638375013635582245&livemode=1&stbId=003901FF0001181003FC08A5C8C6C037&userToken=85a5a98cdcab4d800a8ec29a9d917e8d10vv&usergroup=g10045200000&version=1.0&owaccmark=7638375013635582245&owchid=ystenlive&owsid=7951969344461605286', 'http://ott.fj.chinamobile.com/PLTV/88888888/224/3221226881/1.m3u8', '7', '1', '0', '0', '100000', '210000', '0', 'http://webapi.abigfish.net/static/upload/0b1338dd48dcc3f6/4db40375bb6ec212.png', 'http://webapi.abigfish.net/static/upload/9cc9632c123c5639/29a45066cda7b44ac4a5bfc785d65cf3/3cbdba29a84fe9ae.jpg', 'LNTV-1', '', '37', '154', '150', '1', '019d9e5e');
INSERT INTO `t_television` VALUES ('27', '东南卫视', 'http://39.135.15.70:6610/PLTV/88888888/224/3221225739/1/index.m3u8?fmt=ts2hls', 'http://gslbserv.itv.cmvideo.cn:80/000000001000/7721801662260370363/1.m3u8?channel-id=ystenlive&Contentid=7721801662260370363&livemode=1&stbId=003901FF0001181003FC08A5C8C6C037&userToken=85a5a98cdcab4d800a8ec29a9d917e8d10vv&usergroup=g10045200000&version=1.0&owaccmark=7721801662260370363&owchid=ystenlive&owsid=7951969344461473190', 'http://ott.fj.chinamobile.com/PLTV/88888888/224/3221226877/1.m3u8', '7', '0', '0', '0', '100000', '350000', '0', 'http://webapi.abigfish.net/static/upload/19a829b2efb914a3/3992deff6f755a9d.png', 'http://webapi.abigfish.net/static/upload/470fe954b680cf02/b4ca3137595cc603387484cc7cd48b4f/2dea413199d03710.jpg', 'DNWS', '', '53', '300', '300', '1', 'da0c3f96');
INSERT INTO `t_television` VALUES ('28', '江西卫视', 'http://39.135.15.70:6610/PLTV/88888888/224/3221225710/1/index.m3u8?fmt=ts2hls', 'http://gslbserv.itv.cmvideo.cn:80/000000001000/5616078396620462481/1.m3u8?channel-id=ystenlive&Contentid=5616078396620462481&livemode=1&stbId=003901FF0001181003FC08A5C8C6C037&userToken=85a5a98cdcab4d800a8ec29a9d917e8d10vv&usergroup=g10045200000&version=1.0&owaccmark=5616078396620462481&owchid=ystenlive&owsid=7951969344462021624', 'http://ott.fj.chinamobile.com/PLTV/88888888/224/3221226848/1.m3u8', '7', '0', '0', '0', '100000', '360000', '0', 'http://webapi.abigfish.net/static/upload/2796e2240a8f66d4/76477d5e4f3c984b.png', 'http://webapi.abigfish.net/static/upload/a66982859f712fac/9e59388fbf0806f554bb42353bb1b292/46f8649c6406e1d2.jpg', 'JXTV-1', '', '26', '300', '300', '1', '61914025');
INSERT INTO `t_television` VALUES ('29', '四川卫视', 'http://ott.fj.chinamobile.com/PLTV/88888888/224/3221227006/1.m3u8', 'http://gslbserv.itv.cmvideo.cn:80/000000001000/8744805262559782299/1.m3u8?channel-id=ystenlive&Contentid=8744805262559782299&livemode=1&stbId=003901FF0001181003FC08A5C8C6C037&userToken=85a5a98cdcab4d800a8ec29a9d917e8d10vv&usergroup=g10045200000&version=1.0&owaccmark=8744805262559782299&owchid=ystenlive&owsid=7951969344462057443', 'http://liveshow.sctv.com:1935/scgc/sctv1deu5453w/1.m3u8', '7', '0', '0', '0', '100000', '510000', '0', 'http://webapi.abigfish.net/static/upload/d57e1b0881db9aa5/668c13c98f28854e.png', 'http://webapi.abigfish.net/static/upload/2f90d5f4359b377e/5cf50c0865542db77995c3094c4273cd/014c7ad9bc93c649.jpg', 'SCTV-1', '', '37', '300', '300', '1', 'e5b252e4');
INSERT INTO `t_television` VALUES ('30', '广西卫视', 'http://gslbserv.itv.cmvideo.cn:80/000000001000/8069815772565148726/1.m3u8?channel-id=ystenlive&Contentid=8069815772565148726&livemode=1&stbId=003901FF0001181003FC08A5C8C6C037&userToken=85a5a98cdcab4d800a8ec29a9d917e8d10vv&usergroup=g10045200000&version=1.0&owaccmark=8069815772565148726&owchid=ystenlive&owsid=7951969344462006482', 'http://gslbserv.itv.cmvideo.cn:80/000000001000/8069815772565148726/1.m3u8?channel-id=ystenlive&Contentid=8069815772565148726&livemode=1&stbId=003901FF0001181003FC08A5C8C6C037&userToken=85a5a98cdcab4d800a8ec29a9d917e8d10vv&usergroup=g10045200000&version=1.0&owaccmark=8069815772565148726&owchid=ystenlive&owsid=7951969344462006482', 'http://111.0.27.27/tlivecloud-cdn.ysp.cctv.cn/001/2000294203.m3u8', '7', '0', '0', '0', '100000', '450000', '0', 'http://webapi.abigfish.net/static/upload/2714800506dc8aed/8522b85cb89e9d69.jpg', 'http://webapi.abigfish.net/static/upload/316df47e848efa60/f2904197ce470d49deabeaf0bc00589d/890fa81d23f56bf5.jpg', 'GXTV--1', '', '28', '200', '145', '1', 'da60566f');
INSERT INTO `t_television` VALUES ('31', '河北卫视', 'http://39.135.15.70:6610/PLTV/88888888/224/3221225713/1/index.m3u8?fmt=ts2hls', 'http://39.135.15.70:6610/PLTV/88888888/224/3221226058/1/index.m3u8?fmt=ts2hls', 'http://gslbserv.itv.cmvideo.cn:80/000000001000/8360637122634561354/1.m3u8?channel-id=ystenlive&Contentid=8360637122634561354&livemode=1&stbId=003901FF0001181003FC08A5C8C6C037&userToken=85a5a98cdcab4d800a8ec29a9d917e8d10vv&usergroup=g10045200000&version=1.0&owaccmark=8360637122634561354&owchid=ystenlive&owsid=7951969344461399812', '7', '0', '0', '0', '100000', '130000', '0', 'http://webapi.abigfish.net/static/upload/56df8f10d84904d2/85cf4e2e69eb53c8.png', 'http://webapi.abigfish.net/static/upload/549b0cfe3ea84f0a/249ae0aa8f6e8d644a04b7dcdd60a81d/834b3b779bc3d89f.jpg', 'HEBTV-1', '', '23', '300', '300', '1', '25feea76');
INSERT INTO `t_television` VALUES ('32', '贵州卫视', 'http://ott.fj.chinamobile.com/PLTV/88888888/224/3221226864/1.m3u8', 'http://gslbserv.itv.cmvideo.cn:80/000000001000/5468064193211864646/1.m3u8?channel-id=ystenlive&Contentid=5468064193211864646&livemode=1&stbId=003901FF0001181003FC08A5C8C6C037&userToken=85a5a98cdcab4d800a8ec29a9d917e8d10vv&usergroup=g10045200000&version=1.0&owaccmark=5468064193211864646&owchid=ystenlive&owsid=7951969344461411026', 'http://39.135.15.70:6610/PLTV/88888888/224/3221225703/1/index.m3u8?fmt=ts2hls', '7', '0', '0', '0', '100000', '520000', '0', 'http://webapi.abigfish.net/static/upload/dcdf3cf5cfd960e3/e7c62d332146b6e5.png', 'http://webapi.abigfish.net/static/upload/596676c0468e1aa7/7be2d247aa42455e7eb9e62d8ab75192/146e99c863a08119.jpg', 'GZTV-1', '', '40', '300', '300', '1', 'a136a49d');
INSERT INTO `t_television` VALUES ('33', '山西卫视', 'http://gslbserv.itv.cmvideo.cn:80/000000001000/4821787565788875765/1.m3u8?channel-id=ystenlive&Contentid=4821787565788875765&livemode=1&stbId=003901FF0001181003FC08A5C8C6C037&userToken=85a5a98cdcab4d800a8ec29a9d917e8d10vv&usergroup=g10045200000&version=1.0&owaccmark=4821787565788875765&owchid=ystenlive&owsid=7951969344461967835', 'http://wstv.cntv.myalicdn.com/cntvlive/shan1ximd.m3u8?auth=cntv00011my0pK9jYpZi/cEs51jtu6X5O220CyNn0Vmj3b+KOvmzqJV1R9uAYgQLEHUG4YymTPHqp5f95qVbwWulr7T4tQ==', 'http://223.82.250.72/live/shanxistv/1.m3u8', '7', '0', '0', '0', '100000', '140000', '0', 'http://webapi.abigfish.net/static/upload/86bb09aa1f5e0714/a60a14efc65aeb03.png', 'http://webapi.abigfish.net/static/upload/4dc81a70490100c0/bfa13295418a1b0a6d30c895a3d8536b/6b455705063e053f.jpg', 'SHANXITV-1', 'http://183.251.61.207/PLTV/88888888/224/3221225839/index.m3u8', '26', '300', '300', '1', 'd667526e');
INSERT INTO `t_television` VALUES ('34', '湖北卫视', 'http://gslbserv.itv.cmvideo.cn:80/000000001000/6956052407855047826/1.m3u8?channel-id=ystenlive&Contentid=6956052407855047826&livemode=1&stbId=003901FF0001181003FC08A5C8C6C037&userToken=85a5a98cdcab4d800a8ec29a9d917e8d10vv&usergroup=g10045200000&version=1.0&owaccmark=6956052407855047826&owchid=ystenlive&owsid=7951969344461779002', 'http://183.252.176.13/ott.js.chinamobile.com/PLTV/88888888/224/3221225948/index.m3u8', 'http://211.137.115.110:8080/gitv_live/G_HUBEI-MD/G_HUBEI-MD.m3u8?p=GITV&area=SAXYD', '7', '0', '0', '0', '100000', '420000', '0', 'http://webapi.abigfish.net/static/upload/a6a0159173ef8b59/fc1ac256a095dccc.png', 'http://webapi.abigfish.net/static/upload/8a662c4cd8df28ee/da49c30da8bcb92c8f09bb4a30562503/84a32cb6de23ba0d.jpg', 'HBTV-1', '', '28', '300', '300', '1', '526cbae7');
INSERT INTO `t_television` VALUES ('35', '青海卫视', 'http://gslbserv.itv.cmvideo.cn:80/000000001000/6721180114242078041/1.m3u8?channel-id=ystenlive&Contentid=6721180114242078041&livemode=1&stbId=003901FF0001181003FC08A5C8C6C037&userToken=85a5a98cdcab4d800a8ec29a9d917e8d10vv&usergroup=g10045200000&version=1.0&owaccmark=6721180114242078041&owchid=ystenlive&owsid=7951969344461946004', 'http://183.251.61.207/PLTV/88888888/224/3221225842/index.m3u8', 'http://wstv.cntv.myalicdn.com/cntvlive/qinghaimd.m3u8?auth=cntv0001e2W3H6TmOtg9/34IAgjxr0y/EWzVCIy13+5Iyde90Bt+xRX/CD8AxhFJQGgO8TPvcFEYHXC5J/Ihqaaac8PLBQ==', '7', '0', '0', '0', '100000', '630000', '0', 'http://webapi.abigfish.net/static/upload/a65e14bfe9ff9d4a/58f329bbd591a3fc.jpg', 'http://webapi.abigfish.net/static/upload/6a1180bdc37c178d/34c04ef0bcc2eedf770726111012a985/e2d90d9baa459491.jpg', 'QHTV-1', '', '15', '180', '180', '1', '6cf61152');
INSERT INTO `t_television` VALUES ('36', '河南卫视', 'http://gslbserv.itv.cmvideo.cn:80/000000001000/7304224304099543804/1.m3u8?channel-id=ystenlive&Contentid=7304224304099543804&livemode=1&stbId=003901FF0001181003FC08A5C8C6C037&userToken=85a5a98cdcab4d800a8ec29a9d917e8d10vv&usergroup=g10045200000&version=1.0&owaccmark=7304224304099543804&owchid=ystenlive&owsid=7951969344461755474', 'http://39.135.15.70:6610/PLTV/88888888/224/3221225709/1/index.m3u8?fmt=ts2hls', 'http://223.110.243.155:80/PLTV/3/224/3221225632/1.m3u8', '7', '0', '0', '0', '100000', '410000', '0', 'http://webapi.abigfish.net/static/upload/701c697ee627bcbc/7f6beb3118eb5fb5.png', 'http://webapi.abigfish.net/static/upload/0ccdcb33f85df880/37bd0701b351d5df7ec7e46746036a51/6270f69cbde75e53.jpg', 'HENANTV-1', '', '26', '300', '300', '1', '789d0d22');
INSERT INTO `t_television` VALUES ('37', '山东卫视', 'http://223.110.241.150:6610/gitv/live1/G_SHANDONG-CQ/G_SHANDONG-CQ/', 'http://183.252.176.13/ott.js.chinamobile.com/PLTV/88888888/224/3221225943/index.m3u8', 'http://gslbserv.itv.cmvideo.cn:80/000000001000/7347081113971056899/1.m3u8?channel-id=ystenlive&Contentid=7347081113971056899&livemode=1&stbId=003901FF0001181003FC08A5C8C6C037&userToken=85a5a98cdcab4d800a8ec29a9d917e8d10vv&usergroup=g10045200000&version=1.0&owaccmark=7347081113971056899&owchid=ystenlive&owsid=7951969344462114923', '7', '0', '0', '0', '100000', '370000', '0', 'http://webapi.abigfish.net/static/upload/e90bcbf8bb5f880d/0b1652e4800188eb.png', 'http://webapi.abigfish.net/static/upload/b709608f1aa518f7/25449a40ec72a649876bd8a49af1c763/3e997e95654588d9.jpg', 'SDTV-1', 'http://211.137.115.110:8080/gitv_live/G_SHANDONG-MD/G_SHANDONG-MD.m3u8?p=GITV&area=SAXYD', '22', '300', '300', '1', 'c62d45e9');
INSERT INTO `t_television` VALUES ('38', '安徽卫视', 'http://211.137.115.110:8080/gitv_live/G_ANHUI-MD/G_ANHUI-MD.m3u8?p=GITV&area=SAXYD', 'http://gslbserv.itv.cmvideo.cn:80/000000001000/4774346722046993363/1.m3u8?channel-id=ystenlive&Contentid=4774346722046993363&livemode=1&stbId=003901FF0001181003FC08A5C8C6C037&userToken=85a5a98cdcab4d800a8ec29a9d917e8d10vv&usergroup=g10045200000&version=1.0&owaccmark=4774346722046993363&owchid=ystenlive&owsid=7951969344461700339', 'http://223.110.241.150:6610/gitv/live1/G_ANHUI-CQ/G_ANHUI-CQ/', '7', '0', '0', '0', '100000', '340000', '0', 'http://webapi.abigfish.net/static/upload/cdbf20b022decec2/d7529e0356ecb469.png', 'http://webapi.abigfish.net/static/upload/2fb74bb81eb9b4fe/26fedd75ed7206a475097cb679824027/ce9a7684490caee2.jpg', 'AHTV-1', '', '18', '300', '300', '1', '06a195fd');
INSERT INTO `t_television` VALUES ('39', '甘肃卫视', 'http://117.156.28.119/270000001111/1110000072/index.m3u8', 'http://gslbserv.itv.cmvideo.cn:80/000000001000/8938598377512027715/1.m3u8?channel-id=ystenlive&Contentid=8938598377512027715&livemode=1&stbId=003901FF0001181003FC08A5C8C6C037&userToken=85a5a98cdcab4d800a8ec29a9d917e8d10vv&usergroup=g10045200000&version=1.0&owaccmark=8938598377512027715&owchid=ystenlive&owsid=7951969344461714249', 'http://223.82.250.72/live/gansustv/1.m3u8', '7', '0', '0', '0', '100000', '620000', '0', 'http://webapi.abigfish.net/static/upload/e849b46079591938/3e22966759506dd8.png', 'http://webapi.abigfish.net/static/upload/97cc775a12dd85b3/8c4c63bf11e43fef1b4c423abf96a91a/f57fcb3f5dc9491e.jpg', 'GSTV-1', '', '19', '300', '300', '1', 'fac1ecf6');
INSERT INTO `t_television` VALUES ('40', '内蒙古卫视', 'http://223.82.250.72/live/neimenggustv/1.m3u8', 'http://wstv.cntv.myalicdn.com/cntvlive/neimenggumd.m3u8?auth=cntv0001dbSKDyvEKQzr0ZBdo751IRkxH3iuJFSGoQm1UK+E7S3NIoesTkdCl8N2OVs07v1QIpET53muukmpef12HjCFxA==', 'http://223.110.243.155:80/PLTV/3/224/3221225624/1.m3u8', '7', '0', '0', '0', '100000', '150000', '0', 'http://webapi.abigfish.net/static/upload/3f3554352b715c6b/5a12887e5357b342.png', 'http://webapi.abigfish.net/static/upload/b864a611f4287594/2e887b3698c6b1219a874c88405f2fc9/644fb523e09f8413.jpg', 'NMGTV-1', '', '19', '200', '57', '1', '442cb1d6');
INSERT INTO `t_television` VALUES ('41', '江苏卫视', 'http://223.110.241.150:6610/gitv/live1/G_JIANGSU-CQ/G_JIANGSU-CQ/', 'http://gslbserv.itv.cmvideo.cn:80/000000001000/4690153511271751319/1.m3u8?channel-id=ystenlive&Contentid=4690153511271751319&livemode=1&stbId=003901FF0001181003FC08A5C8C6C037&userToken=85a5a98cdcab4d800a8ec29a9d917e8d10vv&usergroup=g10045200000&version=1.0&owaccmark=4690153511271751319&owchid=ystenlive&owsid=7951969344461388681', 'http://211.137.115.110:8080/gitv_live/G_JIANGSU-MD/G_JIANGSU-MD.m3u8?p=GITV&area=SAXYD', '7', '1', '1', '0', '100000', '320000', '0', 'http://webapi.abigfish.net/static/upload/756b28dbdb660f7b/976f652f138b71d8.png', 'http://webapi.abigfish.net/static/upload/93b43a398be2af41/e8308adc8b0cc18d89557533cf4fa9fd/9cd31c7f3c99d89c.jpg', 'JSTV-1', '', '40', '300', '300', '1', '69e7e66e');
INSERT INTO `t_television` VALUES ('42', '深圳卫视', 'http://gslbserv.itv.cmvideo.cn:80/000000001000/7696950400632248401/1.m3u8?channel-id=ystenlive&Contentid=7696950400632248401&livemode=1&stbId=003901FF0001181003FC08A5C8C6C037&userToken=85a5a98cdcab4d800a8ec29a9d917e8d10vv&usergroup=g10045200000&version=1.0&owaccmark=7696950400632248401&owchid=ystenlive&owsid=7951969344461357746', 'http://211.137.115.110:8080/gitv_live/G_SHENZHEN-MD/G_SHENZHEN-MD.m3u8?p=GITV&area=SAXYD', 'http://223.110.241.150:6610/gitv/live1/G_SHENZHEN-CQ/G_SHENZHEN-CQ/', '7', '0', '1', '0', '100000', '440000', '440300', 'http://webapi.abigfish.net/static/upload/9f384389d437b949/430e03c462353e12.png', 'http://webapi.abigfish.net/static/upload/51d3a6f35b8dfe61/1ff24214c8ef79d11316d5d46fc585c7/0c24fa29e53c2461.png', 'SHENZHENTV-1', '', '30', '300', '300', '1', '50ca1f4c');
INSERT INTO `t_television` VALUES ('44', '陕西卫视', 'http://gslbserv.itv.cmvideo.cn:80/000000001000/7120278140251237664/1.m3u8?channel-id=ystenlive&Contentid=7120278140251237664&livemode=1&stbId=003901FF0001181003FC08A5C8C6C037&userToken=85a5a98cdcab4d800a8ec29a9d917e8d10vv&usergroup=g10045200000&version=1.0&owaccmark=7120278140251237664&owchid=ystenlive&owsid=7951969344461996999', 'http://223.82.250.72/live/shanxi1stv/1.m3u8', 'http://wstv.cntv.myalicdn.com/cntvlive/shan3ximd.m3u8?auth=cntv00016RmeH5/p1r5ci7UORH/+figdq0JKyIdNm8bdmjR+MDmAQVDqIEdddH4O/m5n1Ik3GsYg7Pk+w+Wk6fAySeyt8Q==', '7', '0', '0', '0', '100000', '610000', '0', 'http://webapi.abigfish.net/static/upload/033a4689440c10f2/048c5549d4f2fbd5.png', 'http://webapi.abigfish.net/static/upload/c56202b66d431a16/fbc0260c3d2bd1f6a6a95a9dc083cc32/18868b33c9b7084c.png', 'SXTV-1', '', '15', '300', '300', '1', '6ef94ac4');
INSERT INTO `t_television` VALUES ('45', '吉林卫视', 'http://gslbserv.itv.cmvideo.cn:80/000000001000/6042486520432105075/1.m3u8?channel-id=ystenlive&Contentid=6042486520432105075&livemode=1&stbId=003901FF0001181003FC08A5C8C6C037&userToken=85a5a98cdcab4d800a8ec29a9d917e8d10vv&usergroup=g10045200000&version=1.0&owaccmark=6042486520432105075&owchid=ystenlive&owsid=7951969344462039628', 'http://39.135.15.70:6610/PLTV/88888888/224/3221225753/1/index.m3u8?fmt=ts2hls', 'http://39.135.15.70:6610/PLTV/88888888/224/3221226078/1/index.m3u8?fmt=ts2hls', '7', '0', '0', '0', '100000', '220000', '0', 'http://webapi.abigfish.net/static/upload/46d56b800c205009/176185383c9144f3.png', 'http://webapi.abigfish.net/static/upload/c9cd5d2b279e1d9f/873b3689390170092c5baeed3fd87044/7056fc00bf792427.jpg', 'JLTV-1', '', '15', '170', '86', '1', 'a3aa4d01');
INSERT INTO `t_television` VALUES ('46', '新疆卫视', 'http://223.110.243.155:80/PLTV/3/224/3221225523/1.m3u8', 'http://gslbserv.itv.cmvideo.cn:80/000000001000/5802765535081445534/1.m3u8?channel-id=ystenlive&Contentid=5802765535081445534&livemode=1&stbId=003901FF0001181003FC08A5C8C6C037&userToken=85a5a98cdcab4d800a8ec29a9d917e8d10vv&usergroup=g10045200000&version=1.0&owaccmark=5802765535081445534&owchid=ystenlive&owsid=7951969344462129202', 'http://wstv.cntv.myalicdn.com/cntvlive/xinjiangmd.m3u8?auth=cntv00013Kt6jLalPH17p4/puyVB/lSgJOm3gwAmNm0Tp5CAyQlpvoQxhlFoX2EPwut75d+yXv2w07qYoiQwjjab73007g==', '7', '0', '0', '0', '100000', '650000', '0', 'http://webapi.abigfish.net/static/upload/b4de63de7c901e53/eb3a862d6ffb7921.png', 'http://webapi.abigfish.net/static/upload/5e72a74d8b2d25bc/4ed9f479909c4b981a220dd17d9cabc5/858dd5d7f2274f30.jpg', 'XJTV-1', '', '17', '300', '300', '1', 'aa83e122');
INSERT INTO `t_television` VALUES ('47', '云南卫视', 'http://gslbserv.itv.cmvideo.cn:80/000000001000/8567124785369040339/1.m3u8?channel-id=ystenlive&Contentid=8567124785369040339&livemode=1&stbId=003901FF0001181003FC08A5C8C6C037&userToken=85a5a98cdcab4d800a8ec29a9d917e8d10vv&usergroup=g10045200000&version=1.0&owaccmark=8567124785369040339&owchid=ystenlive&owsid=7951969344461986086', 'http://39.130.206.132:6410/gitv_live/G_YUNNAN-HD/G_YUNNAN-HD.m3u8', 'http://223.82.250.72/live/yunnanstv/1.m3u8', '7', '0', '0', '0', '100000', '530000', '0', 'http://webapi.abigfish.net/static/upload/25b240ae01ad2f98/f671b5e732fb113d.png', 'http://webapi.abigfish.net/static/upload/69a4241986721658/eb6237d56c1b8abc709a76e418675b74/3018a0e6824b5c03.jpg', 'YNTV-1', '', '21', '300', '300', '1', '3a19b822');
INSERT INTO `t_television` VALUES ('50', '黑龙江卫视', 'http://211.137.115.110:8080/gitv_live/G_HEILONGJIANG-MD/G_HEILONGJIANG-MD.m3u8?p=GITV&area=SAXYD', 'http://gslbserv.itv.cmvideo.cn:80/000000001000/8467838254824392379/1.m3u8?channel-id=ystenlive&Contentid=8467838254824392379&livemode=1&stbId=003901FF0001181003FC08A5C8C6C037&userToken=85a5a98cdcab4d800a8ec29a9d917e8d10vv&usergroup=g10045200000&version=1.0&owaccmark=8467838254824392379&owchid=ystenlive&owsid=7951969344461634763', 'http://223.110.241.150:6610/gitv/live1/G_HEILONGJIANG-CQ/G_HEILONGJIANG-CQ/', '7', '0', '0', '0', '100000', '230000', '0', 'http://webapi.abigfish.net/static/upload/9b0414a69ecaec0e/dce2b5564d3ceca9.png', 'http://webapi.abigfish.net/static/upload/c04ee68bad31e814/e67c402f57dbf1d239b8faaf928ad46f/59df7c4ca9ae0dce.jpg', 'HLJTV-1', '', '21', '300', '300', '1', '59736a35');
INSERT INTO `t_television` VALUES ('51', '凤凰卫视', 'http://223.110.243.155:80/PLTV/3/224/3221226977/1.m3u8', 'http://223.110.243.155:80/PLTV/3/224/3221226922/1.m3u8', 'http://117.169.120.142:8080/wh7f454c46tw1875988299_1988371409/ysten-businessmobile/live/fhzixun/dujuejiami.m3u8', '7,18', '0', '0', '0', '100000', '810000', '0', 'http://webapi.abigfish.net/static/upload/9d68ceac5077ed33/d54dd72a0e614baa.png', 'http://webapi.abigfish.net/static/upload/d4c5ee388670c4a2/9987462458c5310f26fdf7a66ca64f8a/53765bf80d84a4ed.jpg', 'fhws', '', '81', '300', '300', '1', '65e0f71a');
INSERT INTO `t_television` VALUES ('52', '凤凰资讯台', 'http://223.110.243.155:80/PLTV/3/224/3221226923/1.m3u8', 'http://223.110.243.155:80/PLTV/3/224/3221226980/1.m3u8', 'http://59.37.84.35/hls6.kascend.com/chushou_live/jade.m3u8', '8,18', '1', '1', '1', '100000', '810000', '0', 'http://webapi.abigfish.net/static/upload/2c58aaabe409943a/16984f9b9dd86374.png', 'http://webapi.abigfish.net/static/upload/70b2618c65e5189d/e3a43c2d69f0466f0eb178c5581f6518/76fadae5a8980899.jpg', '', '', '237', '185', '60', '1', null);
INSERT INTO `t_television` VALUES ('53', 'Bestv超级体育HD', 'http://183.251.61.207/PLTV/88888888/224/3221225908/index.m3u8', 'http://183.251.61.207/PLTV/88888888/224/3221225909/index.m3u8', '#', '3', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/22f382a8f889318e/d4768189c051f4f2ebae5f81d1c4563a/e8f8d07b9290324f.png', null, null, '12', null, null, '1', null);
INSERT INTO `t_television` VALUES ('54', 'CHC高清電影', 'http://zzcs1.ott.henancatv.com/mlive/172_30_100_78_/cdn_proxy/os_ott_henancatv_com/live/CHC-HD/3.m3u8', 'http://ivi.bupt.edu.cn/hls/chchd.m3u8', 'rtmp://202.195.240.8:1935/iptv/chchd', '6', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/95acdbc499bb02f0/d90c24b053fece6eebd74b9b3bfd11de/b539e4242d95078b.jpg', '高清電影', '', '61', null, null, '1', null);
INSERT INTO `t_television` VALUES ('55', 'CHC动作电影', 'http://zzcs1.ott.henancatv.com/mlive/172_30_100_78_/cdn_proxy/os_ott_henancatv_com/live/CHC-DZ/3.m3u8', 'http://hbmc.chinashadt.com:2739/live/dzdy.stream_360p/playlist.m3u8', 'rtmp://202.195.240.8:1935/iptv/chcatv', '6', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/da7d43641905dc5b/fffa9cd1bd42b50fe41e9151e2886d75/406ba99e3de98323.png', '动作电影', '', '65', null, null, '1', null);
INSERT INTO `t_television` VALUES ('56', '珠江电影', 'http://pili-live-hls.vzan.com/vzanlive/131537114530803474.m3u8', '#', '#', '6', '0', '1', '0', '100000', '440000', '440100', '', 'http://webapi.abigfish.net/static/upload/def74019e8cec6e1/8be8be43bab0006d41b88f496bddccec/2f8fb8a7560bcdc7.png', '', '', '47', null, null, '1', null);
INSERT INTO `t_television` VALUES ('63', '外语动作片', 'http://live.g3proxy.lecloud.com/gslb?stream_id=lb_hk_movies2_3000&tag=live&ext=m3u8&ext=m3u8&platid=10&splatid=1009', '#', '#', '6', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/1821d610457bf367/d203388e5e2ba3f561662c8ebe084a06/a4aca24bdf054d14.png', '', '', '31', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('65', '动作电影', 'http://183.207.249.15/PLTV/3/224/3221225529/index.m3u8', 'http://rotation.vod.zlive.cc/channel/1258.m3u8', 'http://223.110.243.155:80/PLTV/3/224/3221225529/1.m3u8', '6', '0', '0', '1', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/290f3bc899e6c7f6/9fff513048513324d778c2ed6131c916/2f2332a245d8864a.jpg', '', '', '153', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('67', '海外剧场', 'http://ott.fj.chinamobile.com/PLTV/88888888/224/3221225881/1.m3u8', 'http://183.207.249.16/PLTV/3/224/3221225547/index.m3u8', 'http://223.110.243.155:80/PLTV/3/224/3221225547/1.m3u8', '9', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/5689d978ec9e1c5b/b7c9403bc782c58feee683c03a8c960e/1309ce1cb5523a1e.jpg', '', '', '9', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('73', '广东公共', 'http://36.111.42.44:81/hls/live-gdgg-005/stream800/index.m3u8', '#', '#', '4', '0', '0', '0', '100000', '440000', '440100', '', 'http://webapi.abigfish.net/static/upload/d6e5f33e5a94d935/fe0f15dc0cf4a1e5a94bf653ef1d2946/2d0e5b2a3df8b9bd.png', '', '', '9', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('75', '潮州综合', 'http://live.zscz0768.com/live/zhpd.m3u8', '#', '#', '4', '0', '0', '0', '100000', '440000', '445100', '', 'http://webapi.abigfish.net/static/upload/3af3ccd7551b9679/edb2ae60d326cb0184ecc6b400aa7edb/60770f7baa73abd1.jpg', '', '', '10', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('76', '潮州公共', 'http://live.zscz0768.com/live/ggpd.m3u8', '#', '#', '4', '0', '0', '0', '100000', '440000', '445100', '', 'http://webapi.abigfish.net/static/upload/f9c2801a33e8b736/477d9b364dab1130ebf76e113d5506e0/b532903328160b3a.jpg', '', '', '6', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('77', '广东体育', 'http://36.111.42.44:81/hls/live-gdty-004/stream800/index.m3u8', 'http://116.199.5.51:8114/LIVES/index.m3u8?Fsv_otype=1&FvSeid=&Pcontent_id=&Provider_id=&Fsv_chan_hls_se_idx=15', 'http://183.59.185.74:30001/PLTV/88888956/224/3221227703/1.m3u8', '3,4', '0', '0', '0', '100000', '440000', '440100', '', 'http://webapi.abigfish.net/static/upload/42a460a507083d28/6198775b413b2143b3d8835898ba14ec/ce2e029ee99c6ab5.png', '', '', '25', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('236', '韩国EBS2', 'http://ebsonair.ebs.co.kr:1935/ebs2familypc/familypc1m/playlist.m3u8', '#', '#', '17', '0', '0', '0', '999992', '0', '0', '', 'http://webapi.abigfish.net/static/upload/a59e1db34bbf5ab0/ab6884f5cfe8dd7d752897afcefc0275/da154f3811d6eed0.jpg', '', '', '10', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('244', '澳门卫星台', 'http://live3.tdm.com.mo:1935/ch3/ch3.live/media_w30461384.m3u8', '#', '#', '18', '0', '0', '0', '100000', '820000', '0', '', 'http://webapi.abigfish.net/static/upload/73238969e4d494a8/64d5bc6313ac524e9ddaf0a81725e6a6/eee4ee61d4949f90.png', '', '', '12', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('246', '澳亚卫视', 'http://live.mastvnet.com/iVx460D/live.m3u8', 'http://live.mastvnet.com/n1rtlHG/500/live.m3u8?time=1508310036672', '#', '18', '0', '0', '0', '100000', '820000', '0', '', 'http://webapi.abigfish.net/static/upload/c31cd9eb0233c998/e5d682c4d826d8c64bf2e36242180a43/1a457dce30c90763.png', '', '', '15', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('248', '澳视高清', 'http://live3.tdm.com.mo:1935/ch6/hd_ch6.live/media_w2145388172.m3u8', '#', '#', '18', '0', '0', '0', '100000', '820000', '0', '', 'http://webapi.abigfish.net/static/upload/8e580e6df6a56e3c/2b15d41946b7ef9df3ef4cfeab43e65e/8a071821a2e70522.png', '', '', '7', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('252', '济南新闻综合', 'http://jntxqc1.sobeycache.com/txqc/zb.m3u8', '#', '#', '4', '0', '0', '0', '100000', '370000', '370100', '', 'http://webapi.abigfish.net/static/upload/58426cf937eb0514/3f82b6d41e8968bd33769ddfe7d275ad/fcacc149fe886c75.png', '', '', '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('253', '济南章丘TV-1', 'http://live.zhihuizq.com:1935/live/4_channel-0_output-0_live/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '370000', '370100', '', 'http://webapi.abigfish.net/static/upload/8895f98065e4aecb/b7fa0359d8f85e57f5ea287e37175b40/f6567eb0cf6878c7.png', '', '', '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('254', '济南章丘TV-2', 'http://live.zhihuizq.com:1935/live/4_channel-1_output-0_live/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '370000', '370100', '', 'http://webapi.abigfish.net/static/upload/1a13007220675812/1a5412db8e726a215fba8e71b7c129b4/ce7fe2afc4206e96.png', '', '', '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('255', '三立台湾台', 'http://104.238.198.60:8866/nimble_live/521122aa/playlist.m3u8', '#', '#', '18', '0', '0', '0', '100000', '710000', '0', '', 'http://webapi.abigfish.net/static/upload/d14cdc898fba7e1b/fbc325e9b7dea86c5a0948634378d18b/07e1615c0f953076.png', '', '', '13', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('256', '福州生活', 'rtmp://live1.fzntv.cn:1935/live/zohi_fztv3', '#', '#', '4', '0', '0', '0', '100000', '350000', '350100', '', 'http://webapi.abigfish.net/static/upload/cc073c2619c2b1db/a60b509cd5b5f9f63ff0b1069625ef5a/4c2f8ed4f14f1f33.png', '', '', '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('257', '福州新闻', 'rtmp://live1.fzntv.cn:1935/live/zohi_fztv1', '#', '#', '4', '0', '0', '0', '100000', '350000', '350100', '', 'http://webapi.abigfish.net/static/upload/f9336428f089c760/49388dd7ec23faeacd0588435f80d516/9d3b5f0033d2a509.jpg', '', '', '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('258', '福州影视', 'rtmp://live1.fzntv.cn:1935/live/zohi_fztv2', '#', '#', null, '0', '0', '0', '100000', '350000', '350100', '', 'http://webapi.abigfish.net/static/upload/9878253904482726/e741460a99adba86e441ee64e0aae130/223c66e31153cd5e.png', '', '', '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('263', '开封新闻综合', 'http://117.158.206.60:9080/kaifeng/kftv1.m3u8', '#', '#', '4,8', '0', '0', '0', '100000', '410000', '410200', '', 'http://webapi.abigfish.net/static/upload/0ef007c827d338fc/ef4c44b1dee6bb7666ad035835bf4dd7/962874781ba6a953.png', '', '', '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('265', '开封公共频道', 'http://117.158.206.60:9080/kaifeng/kftv3.m3u8', '#', '#', '4', '0', '0', '0', '100000', '410000', '410200', '', 'http://webapi.abigfish.net/static/upload/1ebe9ef81c526d79/357e34efb873bdcfb527e3339f309cec/e10812a019376d12.png', '', '', '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('266', '开封睛彩开封', 'http://117.158.206.60:9080/kaifeng/kftv4.m3u8', '#', '#', '4', '0', '0', '0', '100000', '410000', '410200', '', 'http://webapi.abigfish.net/static/upload/2994e2b04679895f/b263d6b31428c990164f4bfe061c94c6/0871d700d953f2f5.png', '', '', '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('270', '抗战剧场', 'http://live.g3proxy.lecloud.com/gslb?stream_id=lb_kangz_720p&tag=live&ext=m3u8&sign=live_tv&platid=10&splatid=1009&format=letv&expect=1', '#', '#', '9', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/5a9080350f368791/d955fcb5b3fb405784fde371d2d8fc28/8efe6f932d8af208.png', '', '', '10', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('299', '汽车', 'http://live.gslb.letv.com/gslb?stream_id=lb_qiche_1300&tag=live&ext=m3u8&sign=live_tv&platid=10&splatid=1009&format=letv&expect=1', '#', '#', '5', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/3b16216efde64666/60a484136da48890ff5e0db92a7dbf4d/8b02c888188d76c3.png', '', '', '7', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('302', '足球', 'http://live.g3proxy.lecloud.com/gslb?stream_id=lb_zuqiu_720p&tag=live&ext=m3u8&sign=live_tv&platid=10&splatid=1009&format=letv&expect=1', '#', '#', '3', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/972e236a9bac1ea3/7984c33fef8e3cdeb30c63ad46e24f77/9ffd764e8c7e762d.png', '', '', '10', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('303', '德甲', 'http://live.g3proxy.lecloud.com/gslb?stream_id=lb_lb_dejia_1800&tag=live&ext=m3u8&sign=live_tv&platid=10&splatid=1009&format=letv&expect=1', '#', '#', '3', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/6cc6c2fa05299e2f/134952a0e9cc8955d4f70439fda8ca94/61a44c58e0a0943a.png', '', '', '9', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('304', '篮球', 'http://live.g3proxy.lecloud.com/gslb?stream_id=lb_lanqiu_720p&tag=live&ext=m3u8&sign=live_tv&platid=10&splatid=1009&format=letv&expect=1', '#', '#', '3', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/bb1c11c1e8ac4193/b55320100bab0eb24012e4ca51f4f19e/7d001e568a7f4394.png', '', '', '15', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('305', '高尔夫', 'http://live.g3proxy.lecloud.com/gslb?stream_id=lb_golf_720p&tag=live&ext=m3u8&sign=live_tv&platid=10&splatid=1009&format=letv&expect=1', '#', '#', '3', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/83870fb924770546/76ffda84e1e22f9fecc008a2e2e0a623/95ada91aaf5d6236.png', '', '', '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('306', '网球', 'http://live.g3proxy.lecloud.com/gslb?stream_id=lb_wangqiu_720p&tag=live&ext=m3u8&sign=live_tv&platid=10&splatid=1009&format=letv&expect=1', '#', '#', '3', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/bdba92535c1d9e8d/4c4bf739243bb546dfd10b577adecd1f/6ae8c9a477b0bf2d.png', '', '', '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('307', '粤语音乐', 'http://live.g3proxy.lecloud.com/gslb?stream_id=lb_yyyy_1800&tag=live&ext=m3u8&sign=live_tv&platid=10&splatid=1009&format=letv&expect=1', '#', '#', '5', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/be7b0d3ad04f5cb9/97e3031e00861c730ce61067c7468e6a/55d128f0dc8f0106.png', '', '', '7', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('308', '电子音乐', 'http://live.g3proxy.lecloud.com/gslb?stream_id=lb_dzyy_1800&tag=live&ext=m3u8&sign=live_tv&platid=10&splatid=1009&format=letv&expect=1', '#', '#', '5', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/45b4a8b2d70e7e26/25321550a034df0027f0681af3b501d1/a5e313be097da0a6.png', '', '', '4', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('309', 'MV', 'http://live.g3proxy.lecloud.com/gslb?stream_id=lb_mv_720p&tag=live&ext=m3u8&sign=live_tv&platid=10&splatid=1009&format=letv&expect=1', '#', '#', '5', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/223fa774f48cac82/119ba7bbcdd475d2c6a993800680d7a2/e9b54fedbf15d644.png', '', '', '8', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('310', '爵士音乐', 'http://live.g3proxy.lecloud.com/gslb?stream_id=lb_jsyy_1800&tag=live&ext=m3u8&sign=live_tv&platid=10&splatid=1009&format=letv&expect=1', '#', '#', '5', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/960b0b807b8d3bab/15ebec50b4cefa7e6e81b4b2cccb03cf/163e23582effced9.png', '', '', '6', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('311', '摇滚音乐', 'http://live.g3proxy.lecloud.com/gslb?stream_id=lb_ygyy_1800&tag=live&ext=m3u8&sign=live_tv&platid=10&splatid=1009&format=letv&expect=1', '#', '#', '5', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/1d47a22cf09ca6de/619b7623f90b40b5324d6370574676dc/632b66048978e51b.png', '', '', '6', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('312', '最强大脑', 'http://live.g3proxy.lecloud.com/gslb?stream_id=lb_zqdn_1800&tag=live&ext=m3u8&sign=live_tv&platid=10&splatid=1009&format=letv&expect=1', '#', '#', '5', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/7becd2141bacd6f5/77ad073493a1cc60560c1dde5494fe2d/205690c541e0c3df.png', '', '', '5', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('313', '战旗-1', 'http://dlhls.cdn.zhanqi.tv/zqlive/2869_tUPFz.m3u8', '#', '#', '6', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/256cbeb35f0e1f24/b335571b8c79cfe20a33c05c8200d67b/633e1d8b9e24371f.png', '', '', '13', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('315', '连云港新闻综合', 'http://222.189.4.165:8199/live/XWZH_496.m3u8', 'http://222.189.4.165:8199/live/XWZH_928.m3u8', 'http://222.189.4.165:8199/live/XWZH.m3u8', '4,8', '0', '0', '0', '100000', '320000', '320700', '', 'http://webapi.abigfish.net/static/upload/0bdd128ea21d481c/ddf93a54815802dcd9dee4a88d9cbf8f/ad9fb8d3f06a7681.png', '', '', '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('316', '连云港城市公共', 'http://222.189.4.165:8199/live/CSGG_928.m3u8', 'http://222.189.4.165:8199/live/CSGG_496.m3u8', 'http://222.189.4.165:8199/live/CSGG.m3u8', '4', '0', '0', '0', '100000', '320000', '320700', '', 'http://webapi.abigfish.net/static/upload/2ab0ebde9cc0cd85/fc47ce045d440cafd5bbb0d819183ff5/6b09858f0acda9d2.png', '', '', '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('317', '战旗影院1', 'http://dlhls.cdn.zhanqi.tv/zqlive/80918_cr4oy.m3u8', '#', '#', '6', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/b02d27666964db92/58b673accd36c27a20fdca2dff35a443/6892299d2ec66f9e.jpg', null, null, '353', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('319', '战旗影院4', 'http://dlhls.cdn.zhanqi.tv/zqlive/88945_Kligp.m3u8', 'http://dlhls.cdn.zhanqi.tv/zqlive/80918_cr4oy.m3u8', '#', '6', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/c629cce6f3643188/c3e2224033dce30516e064167ef793f5/8aed5ba0d1f1629c.png', '', '', '38', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('320', '战旗影院5', 'http://dlhls.cdn.zhanqi.tv/zqlive/7032_0s2qn.m3u8', '#', '#', '6', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/b399bd87fbb9e77b/e540a03191f109e90bddac7512f3a93b/174c33117a370741.jpg', null, null, '31', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('321', '战旗影院6', 'http://dlhls.cdn.zhanqi.tv/zqlive/49858_wgGj1.m3u8', 'http://dlhls.cdn.zhanqi.tv/zqlive/88945_Kligp.m3u8', '#', '6', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/9045195de46d69f9/05707309331c759b0b6412624cfd8ebe/e546fa2dc1db6945.png', '', '', '29', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('322', '战旗影院7', 'http://dlhls.cdn.zhanqi.tv/zqlive/20910_uUMgC.m3u8', '#', '#', '6', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/cf6c52221905bfcf/348a5744df9ed07698a8d94b175e803d/909403d57bf283ef.png', null, null, '34', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('323', '战旗影院8', 'http://dlhls.cdn.zhanqi.tv/zqlive/35349_iXsXw.m3u8', '#', '#', '6', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/0bae6e6182d08d4c/b16f87505dcb60ca481f0dd7ae83e185/13be0b4e400a9535.jpg', null, null, '49', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('325', '战旗影院10', 'http://dlhls.cdn.zhanqi.tv/zqlive/53346_ESoth.m3u8', '#', '#', '6', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/7cd26db58f0de313/08f6954245630c03e1b036022a6aaa7d/187caae163216533.jpg', null, null, '40', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('328', '战旗影院14', 'http://dlhls.cdn.zhanqi.tv/zqlive/96851_ZeePd.m3u8', 'http://dlhls.cdn.zhanqi.tv/zqlive/7032_0s2qn.m3u8', '#', '6', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/66680987a9c47ea7/9d27eed171203481baedb74804484199/9a16d08bbb7e7299.png', '', '', '35', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('330', '战旗影院17', 'http://dlhls.cdn.zhanqi.tv/zqlive/102444_ZGmRp.m3u8', '#', '#', '6', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/31512882b56aad75/c6cce98a40cbafe41255cf469c8d5b6a/41a6cc61fc0d18c7.png', null, null, '125', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('331', '战旗影院18', 'http://dlhls.cdn.zhanqi.tv/zqlive/2869_tUPFz.m3u8', '#', '#', '6', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/15d5bf7ca822a733/27ec03b168f90c5a5ba84bfdbe3f1a73/d16b56c5c6ce17e0.png', null, null, '34', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('339', '南充公共', 'http://live.ncntv.com.cn:9600/relay/live2/tzwj_video.m3u8', '#', '#', '4', '0', '0', '0', '100000', '510000', '511300', '', 'http://webapi.abigfish.net/static/upload/e4343ac10dbaada9/82a3108b5ae6315fc491f184f2627488/4a833745369d78b6.jpg', '', '', '7', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('340', '南充综合', 'http://live.ncntv.com.cn:9600/live/live1/tzwj_video.m3u8', '#', '#', '4', '0', '0', '0', '100000', '510000', '511300', '', 'http://webapi.abigfish.net/static/upload/5435356714a010c0/94414aaea430121d19d68f6ca8cc5e2a/52ade5516d359e52.jpg', '', '', '9', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('341', '南充科教', 'http://live.ncntv.com.cn:9600/relay/live3/tzwj_video.m3u8', '#', '#', '4', '0', '0', '0', '100000', '510000', '511300', '', 'http://webapi.abigfish.net/static/upload/d82ed9151fa8898d/5f442a3d98e1e9b9dc0ca50e7a83a8f0/df262fea6f6cd293.jpg', '', '', '13', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('342', '宜宾新闻综合', 'http://218.89.69.211:8088/streamer/yb01/yb01-500.m3u8', '#', '#', null, '0', '0', '0', '100000', '510000', '511500', '', 'http://webapi.abigfish.net/static/upload/98a733901e530524/74f2320d0a3a94737a7b972a8c9afdb8/c0e4fe47dd4fd176.jpg', '', '', '7', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('343', '宜宾公共频道', 'http://218.89.69.211:8088/streamer/yb02/yb02-500.m3u8', '#', '#', '4', '0', '0', '0', '100000', '510000', '511500', '', 'http://webapi.abigfish.net/static/upload/36f1d27cb92222b3/4c31b8abab2b96ff355e1a7b56e95137/d9649e56cdf4025b.jpg', '', '', '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('344', '绵阳新闻', 'http://cdn1.myntv.cn/myntv1/MYNTV1.flv/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '510000', '510700', '', 'http://webapi.abigfish.net/static/upload/6642423ec0eeccca/6fb0a7f46b75b19c28621a1d674452b4/94c68902224f1dcd.png', '', '', '6', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('345', '绵阳公共', 'http://cdn1.myntv.cn/mytv2/mytv2.flv/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '510000', '510700', '', 'http://webapi.abigfish.net/static/upload/c447ab43abce9a09/d6fe73e39fd6e967a6982c85f030efa4/fedbad1b2e5722f0.png', '', '', '10', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('346', '绵阳文化', 'http://cdn1.myntv.cn/mylv/mylv.flv/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '510000', '510700', '', 'http://webapi.abigfish.net/static/upload/8f5c8acfebc4073f/fd8f56522d1372232457249c8fba559c/6d9f0542809050fc.png', '', '', '7', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('347', '绵阳信息', 'http://cdn1.myntv.cn/myzhxx/myzhxx.flv/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '510000', '510700', '', 'http://webapi.abigfish.net/static/upload/3e8f9c678ebc77ab/3419c7af205912259402eff56401fcdc/896285a503b7c36b.png', '', '', '9', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('348', '绵阳交通', 'http://cdn1.myntv.cn/myszxw/myszxw.flv/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '510000', '510700', '', 'http://webapi.abigfish.net/static/upload/6ec9b80924f3a895/8e3cb4a1ba8daca9cc23f504fb95a05f/58d0b9b680721dcd.png', '', '', '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('349', '广州综合频道', 'rtmp://lss.gztv.com/live/gzbn_tv', '#', '#', '4', '0', '0', '0', '100000', '440000', '440100', '', 'http://webapi.abigfish.net/static/upload/e5c8f30b30415b1f/c94d820ba9d4d08cd70e32743f8e7a78/de2f837c5b4d3833.png', '', '', '7', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('350', '广州新闻频道', 'rtmp://lss.gztv.com/live/gzbn_new', '#', '#', '4,8', '0', '0', '0', '100000', '440000', '440100', '', 'http://webapi.abigfish.net/static/upload/f85bd553b37ed73e/571f8140dc519e0d4b997c95a3cd22f4/f5a45903bc4f319a.png', '', '', '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('351', '广州经济频道', 'rtmp://lss.gztv.com/live/gzbn_jingji', '#', '#', '4', '0', '0', '0', '100000', '440000', '440100', '', 'http://webapi.abigfish.net/static/upload/fb10fcfd03929483/dac99dbc61ebdf480f42a80e732fe8d8/026c65a75217778d.png', '', '', '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('352', '广州生活频道', 'rtmp://lss.gztv.com/live/gzbn_en', '#', '#', '4', '0', '0', '0', '100000', '440000', '440100', '', 'http://webapi.abigfish.net/static/upload/db95de20a58de330/4969375da7c979780a6e8b98a0b8391a/a544d471c5a19918.jpg', '', '', '6', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('353', '广州少儿频道', 'rtmp://lss.gztv.com/live/gzbn_shaoer', '#', '#', '4', '0', '0', '0', '100000', '440000', '440100', '', 'http://webapi.abigfish.net/static/upload/73a7827edfe1091a/9a3033e4431899b73b86e315ae7833fe/33a2bcdc954aacee.png', '', '', '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('354', '湖南经视', 'http://175.6.15.36:8080/nn_live.m3u8?id=HNJSMPP360', '#', '#', '4', '0', '0', '0', '100000', '430000', '0', '', 'http://webapi.abigfish.net/static/upload/40ddaee25009b9e6/16272713206535a1f1461909ac11780a/cf665caf329c10b9.png', '', '', '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('355', '湖南都市', 'http://175.6.15.36:8080/nn_live.m3u8?id=HNDSMPP360', '#', '#', '4', '0', '0', '0', '100000', '430000', '0', '', 'http://webapi.abigfish.net/static/upload/ef78696cd7010762/dd352b66f28acf951e81d9ddb81fa084/81c942a7f794300e.png', '', '', '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('356', '湖南国际', 'http://175.6.15.36:8080/nn_live.m3u8?id=HNGJMPP360', '#', '#', '4', '0', '0', '0', '100000', '430000', null, null, 'http://webapi.abigfish.net/static/upload/446bb09dcd581c1f/5e2574caf2ed4784236815f1be7b0bd0/459e040d8ff78caa.png', null, null, '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('357', '湖南公共', 'http://175.6.15.36:8080/nn_live.m3u8?id=HNGGMPP360', '#', '#', '4', '0', '0', '0', '100000', '430000', null, null, 'http://webapi.abigfish.net/static/upload/8aece181921be590/89ef8a679d87ef75245cca12894c9142/01034751b4485e86.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('358', '湖南娱乐', 'http://175.6.15.36:8080/nn_live.m3u8?id=HNYLMPP360', '#', '#', '4', '0', '0', '0', '100000', '430000', null, null, 'http://webapi.abigfish.net/static/upload/7d2d180c45c41870/f36e7478164561902414c941cffe8500/c628fa977e3b66b3.png', null, null, '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('359', '湖南电视剧', 'http://175.6.15.36:8080/nn_live.m3u8?id=HNDSJMPP360', '#', '#', '4', '0', '0', '0', '100000', '430000', null, null, 'http://webapi.abigfish.net/static/upload/14c76e43c96a0124/2e2c61e918e9d4ba3116e950b3286184/e6057e9ce5e34ea3.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('360', '湖南茶频道', 'http://175.6.15.36:8080/nn_live.m3u8?id=CPDMPP360', '#', '#', '4', '0', '0', '0', '100000', '430000', null, null, 'http://webapi.abigfish.net/static/upload/2414c941cffe8500/c628fa977e3b66b354fe590119b6f4ad/f3b06220b6303824.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('361', '金鹰纪实', 'http://175.6.15.36:8080/nn_live.m3u8?id=JYJSMPP360', '#', '#', '4', '0', '0', '0', '100000', '430000', null, null, 'http://webapi.abigfish.net/static/upload/480af385c4ccec6d/0580b4dcc7dad45aacf5f6c0f191807c/f4e35ca95fd9a486.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('362', '快乐垂钓', 'http://175.6.15.36:8080/nn_live.m3u8?id=KLCDMPP360', '#', '#', '4', '0', '0', '0', '100000', '430000', null, null, 'http://webapi.abigfish.net/static/upload/d87e487d05fcd326/aa4ce217a82ec593f7e9e6f145a4977e/83d2eb21b2a4db4e.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('363', '长沙新闻', 'http://175.6.15.36:8080/nn_live.m3u8?id=CSXWMPP360', '#', '#', '4', '0', '0', '0', '100000', '430000', null, null, 'http://webapi.abigfish.net/static/upload/70cf1f7eb14c9f52/277f07e84a2775f33251b4976f4b163e/a8a8eadc83115c49.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('364', '长沙政法', 'http://175.6.15.36:8080/nn_live.m3u8?id=CSZFMPP360', '#', '#', '4', '0', '0', '0', '100000', '430000', null, null, 'http://webapi.abigfish.net/static/upload/453967200e1a3da4/4c065d694e98a58bdb6e7e2b449fafc5/5decaa715c08590e.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('365', '长沙女性', 'http://175.6.15.36:8080/nn_live.m3u8?id=CSNXMPP360', '#', '#', '4', '0', '0', '0', '100000', '430000', null, null, 'http://webapi.abigfish.net/static/upload/fb24ba7c91317911/316716b23c72e9123e0cb8f5570b4c38/bd5790414ec5a21e.png', null, null, '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('367', '四海钓鱼', 'http://175.6.15.36:8080/nn_live.m3u8?id=SHDYMPP360', '#', '#', '4', '0', '0', '0', '100000', '430000', null, null, 'http://webapi.abigfish.net/static/upload/f44d0da5c3d3bcab/b20590a3486df9a6a31eac18e1ef6f14/5361562af428de25.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('368', '阳江-1', 'http://183.47.0.220:8081/abr/yjtv1/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '440000', '441700', '', 'http://webapi.abigfish.net/static/upload/e67f54930c92615e/d1eefa93b73b12d0a8225fc412044a06/c16cf142c105e33d.png', '', '', '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('369', '东方电影', 'http://web-play.pptv.com/web-m3u8-300149.m3u8?type=m3u8.web.phone&playback=0&kk=&o=pub.pptv.com', '#', '#', '6', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/a7334b01fe6a739f/143014243e6a1c9949fa999b52e754c0/7a4fa9ca01276859.jpg', '', '', '22', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('370', '南京新闻综合', 'http://live.xwei.tv/channels/njtv/video_xwzh/flv:300k/live', '#', '#', '4', '0', '0', '0', '100000', '320000', '320100', '', 'http://webapi.abigfish.net/static/upload/ae22c9a5b68c3715/d9c91444facc4e70ed8b48e1c4539c20/a31939ea517e043a.png', '', '', '7', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('376', '西安-1', 'http://stream2.xiancity.cn/xatv1/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '610000', null, null, 'http://webapi.abigfish.net/static/upload/fed5f9554346ac74/550943df6a7e5eb9562349ff82356987/7f0937b1bfc481ec.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('377', '西安-2', 'http://stream2.xiancity.cn/xatv2/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '610000', null, null, 'http://webapi.abigfish.net/static/upload/837e868ffbb3a674/51e480e1864e071d0414042bbb67899e/6d058a5c1cb87503.jpg', null, null, '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('378', '西安-3', 'http://stream2.xiancity.cn/xatv3/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '610000', null, null, 'http://webapi.abigfish.net/static/upload/a91ee15c9d0fe18c/f9cd647dc67d4d5ed5a1930d166cd2bc/2ca54b3405e641d0.jpg', null, null, '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('379', '西安-4', 'http://stream2.xiancity.cn/xatv4/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '610000', null, null, 'http://webapi.abigfish.net/static/upload/ddff211bab997e0d/c169cf80a93f29e094106d15d8b886cc/439a60cac1e619c9.jpg', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('380', '西安-5', 'http://stream2.xiancity.cn/xatv5/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '610000', null, null, 'http://webapi.abigfish.net/static/upload/37a59e737e77a879/6c20e07de64458c2a232176a129c157a/9e406cabbd1d9bc6.jpg', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('427', '河源综合', 'http://tmpstream.hyrtv.cn/xwzh/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '440000', null, null, 'http://webapi.abigfish.net/static/upload/618d8cb4eae98f78/3b4285e692e91d389c9fd5e2abffc80d/2d3299f8d969e570.png', null, null, '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('428', '河源公共', 'http://tmpstream.hyrtv.cn/hygg/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '440000', null, null, 'http://webapi.abigfish.net/static/upload/59378da7650a0c66/5518961273af6b0533e975d6dfed7f8e/7a591f3d37231bd6.png', null, null, '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('429', '台山台', 'http://220.249.195.38:1935/app_1/ls_1.stream/chunklist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '440000', null, null, 'http://webapi.abigfish.net/static/upload/61204932bccb9483/57e1a0281de240803ba2523b7e2781fb/751a6a9d79af6ebd.jpg', null, null, '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('430', '茂名综合', 'rtmp://183.2.230.133:1935/livepkgr/mmzh', '#', '#', '4', '0', '0', '0', '100000', '440000', null, null, 'http://webapi.abigfish.net/static/upload/d4ae72ec5374a998/c56865d04fb32da587c9938850e381a5/163a174a143f6c30.png', null, null, '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('431', '茂名公共', 'rtmp://183.2.230.133:1935/livepkgr/mmgg', '#', '#', '4', '0', '0', '0', '100000', '440000', null, null, 'http://webapi.abigfish.net/static/upload/3a4f7e1f9ad99948/b7e922c8a70dddb1f657fe6129962ac0/a912607080db1d2c.png', null, null, '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('432', '中山综合', 'rtmp://183.58.24.152:1935/dreamStreamCore/qTl38me/lv800', '#', '#', '4', '0', '0', '0', '100000', '440000', null, null, 'http://webapi.abigfish.net/static/upload/cd79499e36195ac3/c3296eb666f9d39eed0dde28b964e062/63b6aa35dc2ee277.png', null, null, '6', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('433', '中山公共', 'rtmp://183.58.24.152:1935/dreamStreamCore/H3QclaV/lv800', '#', '#', '4', '0', '0', '0', '100000', '440000', null, null, 'http://webapi.abigfish.net/static/upload/eca0a9d84c873189/914325cd870396effa6f278a192469e3/da1a8d72f1e5af23.png', null, null, '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('434', '中山教育', 'rtmp://183.58.24.152:1935/dreamStreamCore/O06b0Mw/lv800', '#', '#', '4', '0', '0', '0', '100000', '440000', null, null, 'http://webapi.abigfish.net/static/upload/88cc8890c7a0d462/b0c6335788aa67f20b042def78a422e6/eaa1af56349a917a.png', null, null, '6', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('435', '蛇口', 'http://218.17.99.211:5080/hls/ttsw6ccn.m3u8', '#', '#', '4', '0', '0', '0', '100000', '440000', null, null, 'http://webapi.abigfish.net/static/upload/1a00d3d0d22df253/d3cee0a109084dadecc008a2e2e0a623/95ada91aaf5d6236.jpg', null, null, '9', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('436', '怀集综合', 'http://cdn.huaijitv.com/live/1/play.m3u8', '#', '#', '4', '0', '0', '0', '100000', '440000', null, null, 'http://webapi.abigfish.net/static/upload/512844c25cd1c9af/079ba08f868eb637bb998f8df06cc07f/627a046617ff2533.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('437', '甘肃卫视', 'http://stream.gstv.com.cn/gsws/hd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '620000', null, null, 'http://webapi.abigfish.net/static/upload/881863d0a0f6fee7/d97c6be6eadb905dc113d499cd1461d6/bc2f2db7c99fcd47.png', null, null, '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('438', '甘肃经济', 'http://stream.gstv.com.cn/jjpd/hd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '620000', null, null, 'http://webapi.abigfish.net/static/upload/3de6b3bc1b015cc1/c8ecdc8415a1d693b96a8568462d9ae6/10a32fcd2efca899.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('439', '甘肃文化影视', 'http://stream.gstv.com.cn/whys/hd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '620000', null, null, 'http://webapi.abigfish.net/static/upload/aae21e1ca430b314/ba7e1db08542ec71d54be4ff5a9dad8e/016206a562bb7915.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('440', '甘肃都市', 'http://stream.gstv.com.cn/dspd/hd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '620000', null, null, 'http://webapi.abigfish.net/static/upload/6558c7e9646d2675/0d8cff3100f641a5dfe66cd233ded2fe/4e706dc4bcfe7a50.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('441', '甘肃公共', 'http://stream.gstv.com.cn/ggpd/hd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '620000', null, null, 'http://webapi.abigfish.net/static/upload/906d5920ee90a983/ae36ae31689eef9e5a8148b0049b5d6f/b68025ff69a2bf6d.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('442', '甘肃少儿', 'http://stream.gstv.com.cn/sepd/hd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '620000', null, null, 'http://webapi.abigfish.net/static/upload/992ac551f746527e/9877cc252eac81c81428719a8c6da305/619b66da5d6a1471.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('443', '甘肃移动电视', 'http://stream.gstv.com.cn/ydds/hd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '620000', null, null, 'http://webapi.abigfish.net/static/upload/e7a0681c0c6541d2/6d83817efea9f94cc66f26ab5ddca983/3364d8497a752ef8.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('444', '甘肃品质生活', 'http://stream.gstv.com.cn/pzsh/hd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '620000', null, null, 'http://webapi.abigfish.net/static/upload/7a2840144e358df7/7a74ad2d896d02a85cd0ca29ade0c8b5/adbc3dda52100424.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('445', '兰州新闻综合', 'http://stream.lztv.tv/xwzh/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '620000', null, null, 'http://webapi.abigfish.net/static/upload/69ae57a20fbf05b1/b85b4f1ed95c3feefbdf42a1e05260c8/a58057ed7e2eb77b.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('446', '兰州生活经济', 'http://stream.lztv.tv/shjj/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '620000', null, null, 'http://webapi.abigfish.net/static/upload/98f57d973e7f90b1/b813f13e5ebd847c4b8bb685bf6a7916/cd0e9e61121af5d4.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('447', '兰州综艺体育', 'http://stream.lztv.tv/zyty/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '620000', null, null, 'http://webapi.abigfish.net/static/upload/f2866ef09bf7628c/7e556aa22cdbdd406c10c39286ab5e5e/a221c26206a7fbc9.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('448', '兰州公共频道', 'http://stream.lztv.tv/ggpd/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '620000', null, null, 'http://webapi.abigfish.net/static/upload/22f87e31b18a6193/4efe3ff46e79c16c7f628a8eb4e3f0c1/6b03be3bad0ef1fa.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('449', '兰州新闻综合', 'http://61.178.81.206/seg/8.m3u8', '#', '#', '4', '0', '0', '0', '100000', '620000', null, null, 'http://webapi.abigfish.net/static/upload/638ece875121a2e5/ee41ffc10ff35dc86e4f47d6a3e00616/a565c69757bf59c5.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('450', '兰州生活经济', 'http://61.178.81.206/seg/9.m3u8', '#', '#', '4', '0', '0', '0', '100000', '620000', null, null, 'http://webapi.abigfish.net/static/upload/300e69f72139feae/f597540971ab598eb51f1e6772bfe3de/10bab904f5c0c04d.png', null, null, '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('451', '兰州综艺体育', 'http://61.178.81.206/seg/10.m3u8', '#', '#', '4', '0', '0', '0', '100000', '620000', null, null, 'http://webapi.abigfish.net/static/upload/771b3a960a55367f/d8cf29815e6a6818e7b6074b6404e43a/d16b514806050428.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('452', '兰州公共频道', 'http://61.178.81.206/seg/11.m3u8', '#', '#', '4', '0', '0', '0', '100000', '620000', null, null, 'http://webapi.abigfish.net/static/upload/0c699e07f34a3a28/3bc0be89d8c4eef1497bb6aede2ddbf3/c81ef8e2ba5cfce3.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('453', '嘉峪关综合', 'http://111.11.179.22:9800/live/3.m3u8', '#', '#', '4', '0', '0', '0', '100000', '620000', null, null, 'http://webapi.abigfish.net/static/upload/ce09fdc57ad1f29c/9e750a8f0c3977f24c01db56212bfa9e/a334c215774695af.png', null, null, '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('454', '嘉峪关公共', 'http://111.11.179.22:9800/live/1.m3u8', '#', '#', '4', '0', '0', '0', '100000', '620000', null, null, 'http://webapi.abigfish.net/static/upload/1c9fcae7146273d7/443f5b7eac02d56d9f9d8edfbd4baab2/060a115bbdcee1d6.png', null, null, '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('457', '庆阳综合', 'http://stream.gsqytv.com.cn/xwzh/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '620000', null, null, 'http://webapi.abigfish.net/static/upload/85a4413ecea7122b/cc399cf0a53bba269933cf189d874695/3f90b35b9020f4a6.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('458', '庆阳公共', 'http://stream.gsqytv.com.cn/ggpd/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '620000', null, null, 'http://webapi.abigfish.net/static/upload/ae66a054611a12a6/73d91a170194b6817cc1c3f0a0831480/b59a456b3fd2f711.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('459', '玉门1', 'http://live.mudu.tv/watch/nt33at.m3u8', '#', '#', '4', '0', '0', '0', '100000', '620000', null, null, 'http://webapi.abigfish.net/static/upload/942a706b2807e4b2/52d83c0f584cbd72c9d150fc2f559ece/872d42d7a4b71454.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('460', '南京科教', 'http://live.xwei.tv/channels/njtv/video_kj/flv:250k/live', '#', '#', '4', '0', '0', '0', '100000', '320000', null, null, 'http://webapi.abigfish.net/static/upload/60a52d6250f2541b/d7a002be5c30ab4088903f12da23bba2/fe342982583e7993.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('461', '南京生活', 'http://live.xwei.tv/channels/njtv/video_shh/flv:250k/live', '#', '#', '4', '0', '0', '0', '100000', '320000', null, null, 'http://webapi.abigfish.net/static/upload/739677cb4816a8a7/797f72c5219301bded0eebbaa23beae2/d9fcb2fd70cd6feb.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('462', '南京娱乐', 'http://live.xwei.tv/channels/njtv/video_yl/flv:500k/live', '#', '#', '4', '0', '0', '0', '100000', '320000', null, null, 'http://webapi.abigfish.net/static/upload/2e15c92cadb8f2b0/06c03d7a189231be70d5c573c693c405/3f908d9d9314ce87.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('464', '南京少儿', 'http://live.xwei.tv/channels/njtv/video_shaoer/flv:mobile/live', '#', '#', '4', '0', '0', '0', '100000', '320000', null, null, 'http://webapi.abigfish.net/static/upload/67291d7fc6fc86a4/10e31b307bc0124985153144817f7683/d85f0e6a1bbd4fa2.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('465', '南京信息', 'http://live.xwei.tv/channels/njtv/video_xx/flv:500k/live', '#', '#', '4', '0', '0', '0', '100000', '320000', null, null, 'http://webapi.abigfish.net/static/upload/73a2e4a4721851fa/b207428a7288f46ece22b0f51b97223c/828b5763fad97f62.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('466', '南京十八频道', 'http://live.xwei.tv/channels/njtv/video_18/flv:500k/live', '#', '#', '4', '0', '0', '0', '100000', '320000', null, null, 'http://webapi.abigfish.net/static/upload/423aba7c2acfc597/e43e90830bf4524bbabbaf1148b4298e/19dd5d3dd251cdce.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('467', '南京生活', 'http://live.xwei.tv/channels/njtv/video_shh/flv:500k/live', '#', '#', '4', '0', '0', '0', '100000', '320000', null, null, 'http://webapi.abigfish.net/static/upload/d600a2c0f0abaa26/5941e3c4c2510c2655ce9983bd34eb58/8124dc84b353f5b2.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('470', '耀才財經', 'http://202.69.67.66:443/webcast/bshdlive-pc/playlist.m3u8', '#', '#', '18', '0', '0', '0', '100000', '810000', null, null, 'http://webapi.abigfish.net/static/upload/333a55a4dd50a0fa/fb33f7e2e5b0df039dc5e69cae378ee0/5057e4489ad8b728.jpg', null, null, '7', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('473', '港台RTHK31', 'http://rthklive1-lh.akamaihd.net/i/rthk31_1@167495/index_2052_av-b.m3u8', '#', '#', '18', '0', '0', '0', '100000', '810000', null, null, 'http://webapi.abigfish.net/static/upload/f88ed723f75415e1/382439a735c638fb664a50707334b30e/6fd702d6ab22ce30.png', null, null, '7', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('474', '港台RTHK32', 'http://rthklive2-lh.akamaihd.net/i/rthk32_1@168450/index_2052_av-b.m3u8', '#', '#', '18', '0', '0', '0', '100000', '810000', null, null, 'http://webapi.abigfish.net/static/upload/7357b0fb2ec0541b/99592b5612f87b920c898e44d210fe2d/268f4ef11b19542d.png', null, null, '6', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('475', '高清翡翠台', 'http://dlhls.cdn.zhanqi.tv/zqlive/2869_tUPFz.m3u8', 'http://acm.gg/jade.m3u8', '#', '18', '0', '0', '0', '100000', '810000', '0', '', 'http://webapi.abigfish.net/static/upload/d67c657294b9abc8/222519ab83bddda10f4a21d571adbe66/3374dbe676987dbc.jpg', '', '', '27', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('476', '宏观电视台', 'http://mobile.ccdntech.com/live/_definst_/vod62_Live/live2/playlist.m3u8', '#', '#', '18', '0', '0', '0', '100000', '810000', null, null, 'http://webapi.abigfish.net/static/upload/31bbeb867c695411/485ebf8a2f748b6b4e9682671e5f02af/659a48d15ee19ab2.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('477', 'TVB翡翠台(亚洲版)', 'http://acm.gg/jade.m3u8', '#', '#', '18', '0', '0', '0', '100000', '810000', null, null, 'http://webapi.abigfish.net/static/upload/4b3b38f40aadfedd/a73aff2e4ad53cce6d287702e0f31511/8da3186374b4a191.jpg', null, null, '40', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('478', '亚太第一', 'rtmp://v1.one-tv.com:1935/live/mpegts.stream', '#', '#', '18', '0', '0', '0', '100000', '810000', null, null, 'http://webapi.abigfish.net/static/upload/1037133936e623fd/56c5c23a101d65cf09ffc64839b15450/d1239229d9e1c7a6.png', null, null, '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('479', '香港卫视', 'http://live.hkstv.hk.lxdns.com/live/hks/playlist.m3u8', '#', '#', '18', '0', '0', '0', '100000', '810000', null, null, 'http://webapi.abigfish.net/static/upload/3d0f155fdc86b8d9/012d8a30e6298b72d6aa56c3cd6341dd/6c3ab5757a5e103b.png', null, null, '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('480', '澳门资讯', 'http://live4.tdm.com.mo/ch5/_definst_/info_ch5.live/playlist.m3u8', '#', '#', '18', '0', '0', '0', '100000', '820000', null, null, 'http://webapi.abigfish.net/static/upload/7961483e4bc7be37/29c46f24a33d88c427424f3a283c3902/7eb12a690d4b6d39.png', null, null, '6', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('481', '香港HKS', 'rtmp://live.hkstv.hk.lxdns.com:1935/live/hks', '#', '#', '18', '0', '0', '0', '100000', '810000', null, null, 'http://webapi.abigfish.net/static/upload/1fe10e386da84395/f02f3196879550c6e4343ac10dbaada9/82a3108b5ae6315f.jpg', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('482', '香港HKS2', 'rtmp://live.hkstv.hk.lxdns.com/live//hks', '#', '#', '18', '0', '0', '0', '100000', '810000', null, null, 'http://webapi.abigfish.net/static/upload/04378bb0508f7368/7db537f0488cc1be95681e2981bc11b7/c6d2276f61d68064.jpg', null, null, '9', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('483', '香港RTHK32', 'http://rthklive2-lh.akamaihd.net/i/rthk32_1@168450/index_1296_av-b.m3u8', '#', '#', '18', '0', '0', '0', '100000', '810000', null, null, 'http://webapi.abigfish.net/static/upload/b28edfff2e95646d/396b275666bd458bbeb6904ef6823ca5/32299ff3c4eee53f.png', null, null, '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('486', '泰国SUVARNABHUMI', 'http://203.146.129.233:1935/live/mp4:suwan/playlist.m3u8', '#', '#', '19', '0', '0', '0', '999991', '0', null, null, 'http://webapi.abigfish.net/static/upload/107486f6ecb38224/0b4e37d287bfbec00f25cea70b58dcde/9842156cc6dec5f0.png', null, null, '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('487', '美国ABC NEWS', 'http://abclive.abcnews.com/i/abc_live4@136330/index_1200_av-b.m3u8', '#', '#', '19', '0', '0', '0', '999991', '0', null, null, 'http://webapi.abigfish.net/static/upload/b56ecb91e505cc30/ffba96419af1cf19f3b614d2513a2d1f/b80a779cc79520a2.png', null, null, '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('488', '俄罗斯MTV', 'http://85.132.78.6:1935/live/muztv.stream/lihattv.m3u8', '#', '#', '19', '0', '0', '0', '999991', '0', null, null, 'http://webapi.abigfish.net/static/upload/b86480c921ac7a48/3e0a7d91804ed28ca412963e013751a9/0654aa344bc26efe.jpg', null, null, '8', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('489', '卡塔尔半岛台', 'http://aljazeera-doc-apple-live.adaptive.level3.net/apple/aljazeera/hq-doc/800kStream.m3u8', '#', '#', '19', '0', '0', '0', '999991', '0', null, null, 'http://webapi.abigfish.net/static/upload/dfe89ebbee81281b/d34ffe5cb660159e1ca43cceffde49d1/16e8b60e416e3521.jpg', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('495', '法国FANCE24', 'http://static.france24.com/live/F24_EN_LO_HLS/live_web.m3u8', '#', '#', '19', '0', '0', '0', '999991', '0', null, null, 'http://webapi.abigfish.net/static/upload/efa57f545a5b7a72/11c8538e65f35d986f04f0d75f687085/8bae14ac0b6d9f73.png', null, null, '6', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('497', '美國中文台', 'http://ec.sinovision.net/video/ts/lv.m3u8', '#', '#', '19', '0', '0', '0', '999991', '0', null, null, 'http://webapi.abigfish.net/static/upload/c2b0e140029533c8/1a1793e5930e29eddb8f4ae3a92c3f6a/85b2d0e84ba6e409.jpg', null, null, '8', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('498', '美东频道', 'http://174.127.67.246/live330/playlist.m3u8', '#', '#', '19', '0', '0', '0', '999991', '0', null, null, 'http://webapi.abigfish.net/static/upload/38d6996f11a4b0f4/04d4219625ca24c2f055b4347e4dc60d/67fde96768a6fe56.jpg', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('499', '英国天空新闻台', 'http://skydvn-nowtv-atv-prod.skydvn.com/atv/skynews/1404/live/04.m3u8', '#', '#', '19', '0', '0', '0', '999991', '0', null, null, 'http://webapi.abigfish.net/static/upload/6886442ba24a2b87/df682d7c632eab669504c1af6b347e37/3fac1baceabf46ef.jpg', null, null, '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('501', '韩国EBS2', 'http://ebsonair.ebs.co.kr:1935/ebs2familypc/familypc1m/playlist.m3u8', '#', '#', '17', '0', '0', '0', '999992', '0', null, null, 'http://webapi.abigfish.net/static/upload/683ebb557d4e37fc/c017bcf793aa67f3f485b39a8367a039/15ec7b45d3ec1c0e.jpg', null, null, '6', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('502', '韩国CBS,', 'rtmp://cbs-live.gscdn.com/cbs-live/cbs-live.stream', '#', '#', '17', '0', '0', '0', '999992', '0', null, null, 'http://webapi.abigfish.net/static/upload/7cae82486b0acc6f/def141bfdc7809d3239608097faba986/099105ae99a8e63b.jpg', null, null, '7', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('503', '韩版TV-CHOSUN', 'http://live.chosun.gscdn.com/live/_definst_/tvchosun1.stream/playlist.m3u8', '#', '#', '17', '0', '0', '0', '999992', '0', null, null, 'http://webapi.abigfish.net/static/upload/d6ee7b3b36173224/366cfb05f8d6ec53069041db774c7c0b/aa53b1779ae1e29b.png', null, null, '7', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('504', '韩国CMC HD,', 'rtmp://edge1.everyon.tv/etv1sb/phd1', '#', '#', '17', '0', '0', '0', '999992', '0', null, null, 'http://webapi.abigfish.net/static/upload/89f569993f4af498/b320aaaf4eb610c3a045219c760c6f76/5dfb3c5a6abf54c0.jpg', null, null, '8', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('568', '广东珠江频道', 'http://stream1.grtn.cn/zjpd/playlist.m3u8?_upt=dd0189831510287406', '#', '#', '4', '0', '0', '0', '100000', '440000', null, null, 'http://webapi.abigfish.net/static/upload/21ddd604f061d571/546dcffc82e7143aae8fec2f6956a092/2e374a7c9d096d28.png', null, null, '7', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('600', '厦门新闻综合频道', 'http://cstv.live.wscdns.com/live/xiamen1/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '350000', '350200', '', 'http://webapi.abigfish.net/static/upload/febb75eccd1101d8/4a2aa5eb87859ce004ab1f885b52adc7/a11278073b3c4f74.png', '', '', '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('601', '厦门海峡频道', 'http://cstv.live.wscdns.com/live/xiamen2/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '350000', '350200', '', 'http://webapi.abigfish.net/static/upload/080e8d277fd35c6b/839e062d62aced593716117c62e07aa6/f23b6fe84990378e.png', '', '', '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('602', '厦门少儿生活频道', 'http://cstv.live.wscdns.com/live/xiamen3/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '350000', '350200', '', 'http://webapi.abigfish.net/static/upload/7102c62c6558e55b/32142e0994c6dac0f63ca18283fce920/f258fe42b153b199.png', '', '', '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('603', '厦门影视频道', 'http://cstv.live.wscdns.com/live/xiamen4/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '350000', '350200', '', 'http://webapi.abigfish.net/static/upload/75bd0bef20cc5d06/a370e65d167ea1d27bbeb6ee3bfac673/2d2df45227ae0e69.png', '', '', '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('604', '厦门移动频道', 'http://cstv.live.wscdns.com/live/xiamenyidong/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '350000', '350200', '', 'http://webapi.abigfish.net/static/upload/86ee663c363fb281/9cc78dc2ea1181f97225b7ce5961a930/ed0ab47476b7befa.png', '', '', '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('605', '沈阳新闻', 'http://lms.csytv.com/Live/122/live/livestream.m3u8', '#', '#', '4', '0', '0', '0', '100000', '210000', '210100', '', 'http://webapi.abigfish.net/static/upload/06b059534e43b293/8117a83912c62f3d6944ed1afb7c0b05/57d52a5e61a6d9c9.jpg', '', '', '7', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('606', '沈阳公共', 'http://lms.csytv.com/Live/124/live/livestream.m3u8', '#', '#', '4', '0', '0', '0', '100000', '210000', '210100', '', 'http://webapi.abigfish.net/static/upload/be330ead65c3533c/b1c86350fdcda9a30b68e5c590b3463d/8fe27a4b0e9434cd.png', '', '', '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('607', '沈阳经济', 'http://lms.csytv.com/Live/123/live/livestream.m3u8', '#', '#', '4', '0', '0', '0', '100000', '210000', '210100', '', 'http://webapi.abigfish.net/static/upload/5774b6bb3970f538/74a09e9eec130980b6d6956cc1fc1e8f/b824782187fb6b09.png', '', '', '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('609', '哈尔滨娱乐', 'http://ott1.ysbn.cn:8088/live/YSGD_YSGD2016010106500634_800.m3u8', '#', '#', '4', '0', '0', '0', '100000', '230000', null, null, 'http://webapi.abigfish.net/static/upload/1c3ef503ecadc5b8/674be1540c609009041d7fccff9c39b0/681ffcd0595349b8.png', null, null, '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('610', '哈尔滨新闻', 'http://ott1.ysbn.cn:8088/live/YSGD_YSGD2016010106514768_800.m3u8', '#', '#', '4', '0', '0', '0', '100000', '230000', null, null, 'http://webapi.abigfish.net/static/upload/7bbc9c659df818a7/dfe58a4bc89f6442c84cb4b5c23ac354/11414b9300dd323c.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('611', '哈尔滨影视', 'http://ott1.ysbn.cn:8088/live/YSGD_YSGD2016010106500632_800.m3u8', '#', '#', '4', '0', '0', '0', '100000', '230000', null, null, 'http://webapi.abigfish.net/static/upload/7fcd2c2c590bdb8e/a5e96e3ccb6ef81cfea68355a2b250eb/95468fb15c087d8c.png', null, null, '6', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('612', '哈尔滨生活', 'http://ott1.ysbn.cn:8088/live/YSGD_YSGD2016010106500633_800.m3u8', '#', '#', '4', '0', '0', '0', '100000', '230000', null, null, 'http://webapi.abigfish.net/static/upload/9709b5a6d576ef9c/5beecc9e5b726c1ddab326c968549761/f859172f2942db00.png', null, null, '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('613', '哈尔滨资讯', 'http://ott1.ysbn.cn:8088/live/YSGD_YSGD2016010106500419_800.m3u8', '#', '#', '4', '0', '0', '0', '100000', '230000', null, null, 'http://webapi.abigfish.net/static/upload/4a90b77f16bb3ac4/f4c56a6504ff8b2ad6cd1caa0374b57e/d756e93e72d9b496.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('614', '浙江经济生活', 'http://yf.m.l.cztv.com/channels/lantian/channel11/360p.m3u8', '#', '#', '4', '0', '0', '0', '100000', '330000', '0', '', 'http://webapi.abigfish.net/static/upload/5c71dd758876eed3/51796c7cd2e56a543478a1d3a06a8e6d/e7d8f7dcba944a8e.png', '', '', '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('615', '浙江钱江', 'http://yf.m.l.cztv.com/channels/lantian/channel12/360p.m3u8', '#', '#', '4', '0', '0', '0', '100000', '330000', null, null, 'http://webapi.abigfish.net/static/upload/233f2bd30b2b037a/18d80be4727bdf96d68229f521316a03/b517e42128c87060.jpg', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('616', '浙江教育科技', 'http://yf.m.l.cztv.com/channels/lantian/channel10/360p.m3u8', '#', '#', '4', '0', '0', '0', '100000', '330000', null, null, 'http://webapi.abigfish.net/static/upload/8bbc26aaeaf86d95/6feaae2a162be4efd75329ccac3548b3/1b25ded9fde8866f.jpg', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('617', '浙江影视娱乐', 'http://yf.m.l.cztv.com/channels/lantian/channel09/360p.m3u8', '#', '#', '4', '0', '0', '0', '100000', '330000', null, null, 'http://webapi.abigfish.net/static/upload/f9fb7c79045fc492/a18b051150c2b2694bc336b15417584f/cec3e7dcc531d836.png', null, null, '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('618', '浙江民生休闲', 'http://yf.m.l.cztv.com/channels/lantian/channel08/360p.m3u8', '#', '#', '4', '0', '0', '0', '100000', '330000', null, null, 'http://webapi.abigfish.net/static/upload/2d321b74176afd49/6ffdd4240de35f976f7b9e11d7c19b10/334ddbb8ef024c9f.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('619', '浙江公共新闻', 'http://yf.m.l.cztv.com/channels/lantian/channel07/360p.m3u8', '#', '#', '4', '0', '0', '0', '100000', '330000', null, null, 'http://webapi.abigfish.net/static/upload/f2a40c043c478051/e6230e5c6be59d0f0a30984ca2e5f170/d14cc06c70e087aa.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('620', '浙江少儿', 'http://yf.m.l.cztv.com/channels/lantian/channel06/360p.m3u8', '#', '#', '4', '0', '0', '0', '100000', '330000', null, null, 'http://webapi.abigfish.net/static/upload/9bfc135ec3b061b6/9049bd96c11cfb5eae0de04da95f06c3/c85934ea84bcccc0.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('621', '浙江国际', 'http://yf.m.l.cztv.com/channels/lantian/channel04/360p.m3u8', '#', '#', '4', '0', '0', '0', '100000', '330000', null, null, 'http://webapi.abigfish.net/static/upload/83774c98fe319e7f/a074740a7fd507f03eb4c11722507eae/902e13a8f202e947.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('623', '宁波镇海', 'http://r.gslb.lecloud.com/live/hls/2017020930000004m13/desc.m3u8', '#', '#', '4', '0', '0', '0', '100000', '330000', null, null, 'http://webapi.abigfish.net/static/upload/ad8f440f64fec53f/e63059be890e18413d418f70518bdced/b1a6c778cc614ea0.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('624', '温州新闻综合', 'rtmp://liveplay.dhtv.cn/live/news', '#', '#', '4', '0', '0', '0', '100000', '330000', null, null, 'http://webapi.abigfish.net/static/upload/57163f9955c113c7/e85619a3f009281dc182e3a40c87876b/592585b7a5b5ab08.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('625', '温州经济科教', 'rtmp://livetv.dhtv.cn/live/financial', '#', '#', '4', '0', '0', '0', '100000', '330000', null, null, 'http://webapi.abigfish.net/static/upload/d52b1dc033ab0c8a/c84f3169c53762354f77188fcaa6619c/0979f180614ac486.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('626', '温州都市生活', 'rtmp://livetv.dhtv.cn/live/citylife', '#', '#', '4', '0', '0', '0', '100000', '330000', null, null, 'http://webapi.abigfish.net/static/upload/abc596d1cf6af3c4/31422ebc2b18f0576644cb08d30b2ca5/5c284344a9750c2e.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('627', '温州公共频道', 'rtmp://livetv.dhtv.cn/live/peoples', '#', '#', '4', '0', '0', '0', '100000', '330000', null, null, 'http://webapi.abigfish.net/static/upload/7b01caa07b92e842/4d45487ee923bdd49de47c0f9e122a45/cf2ebee383695ed3.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('628', '温州瓯江先锋', 'rtmp://livetv.dhtv.cn/live/oujiangxianfeng', '#', '#', '4', '0', '0', '0', '100000', '330000', null, null, 'http://webapi.abigfish.net/static/upload/d5a6c60ee2150ca0/a126b63cea344408877e78cf1d978ce2/2dbddfc3d34810a4.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('629', '温州瑞安经济', 'http://live.mudu.tv/watch/bblu14.m3u8', '#', '#', '4', '0', '0', '0', '100000', '330000', null, null, 'http://webapi.abigfish.net/static/upload/834b421a9ceaf217/1416fca96c960d6e86c083a10ba70052/98fb701ee0e2dcd4.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('630', '温州瑞安新闻综合', 'http://live.mudu.tv/watch/ryvybw.m3u8', '#', '#', '4', '0', '0', '0', '100000', '330000', null, null, 'http://webapi.abigfish.net/static/upload/d13f6aa1117f0a36/d3478a998f9925b7bed53b6e609695fe/0f88c6ef2a87f5b5.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('631', '温州瑞安新闻综合HD', 'http://live.mudu.tv/watch/4xu94b.m3u8', '#', '#', '4', '0', '0', '0', '100000', '330000', null, null, 'http://webapi.abigfish.net/static/upload/8507437c904f3c25/073d22599fffcaf04654bbe0a0074175/fd24c997805831cf.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('633', '温州乐清新闻频道', 'http://183.2.249.151/YQTV/stream__redirect__3466.m3u8', '#', '#', '4', '0', '0', '0', '100000', '330000', null, null, 'http://webapi.abigfish.net/static/upload/ffe9304fba15f7a1/b039ab4e066cbfcd50d9d6bb715066e6/8ba37f7988bfe1f4.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('634', '湖州新闻综合', 'http://61.175.232.157/tslslive/zyys888/hls/live_sd.m3u8', '#', '#', '4', '0', '0', '0', '100000', '330000', null, null, 'http://webapi.abigfish.net/static/upload/08a1cf3abf2457b3/cd090aaa532c39f3c187a286b7bb1ed4/b50c1fac266bfc78.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('635', '湖州文化娱乐', 'http://61.175.232.157/tslslive/rk8Z088/hls/live_sd.m3u8', '#', '#', '4', '0', '0', '0', '100000', '330000', null, null, 'http://webapi.abigfish.net/static/upload/7209d3da552f73fb/b3af2a1803153c92fbf8ca43dcc014c2/c94549d6b8ca0375.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('636', '湖州德清文化生活', 'http://live.yingxi.tv/ylpd/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '330000', null, null, 'http://webapi.abigfish.net/static/upload/2b218cef7f94da41/9d8c6a904791b7a1e7c353252230b141/2400e7b64cc41bc6.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('637', '湖州德清新闻综合', 'http://live.yingxi.tv/xwzh/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '330000', null, null, 'http://webapi.abigfish.net/static/upload/e51e26bd5855b6ea/5fc7bcc2c4010124c6ecd86d6c3cbe8f/9afe12271fcf64fe.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('638', '嘉兴海盐新闻综合', 'http://haiyan.liveyun.hoge.cn/xwpd/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '330000', null, null, 'http://webapi.abigfish.net/static/upload/9664a35ab26bcb83/51d981e4decc2162e6ca77b059a8ec5a/7842944270fbe749.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('639', '嘉兴嘉善文化', 'http://116.62.31.234:1935/jsgdswh/myStream/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '330000', null, null, 'http://webapi.abigfish.net/static/upload/ca06de1352336b57/1a93ec0da84d841c88cd5f09652e5b4b/12be5e44148c344c.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('640', '嘉兴嘉善新闻综合', 'http://116.62.31.234:1935/jsgdxwzh/myStream/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '330000', null, null, 'http://webapi.abigfish.net/static/upload/b1d37b77fc96a75a/703d7932a9aa588fdeb11b15b671eada/f70891544294f0bd.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('641', '金华新闻综合', 'http://stream.jinhua.com.cn/xwzh/app/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '330000', null, null, 'http://webapi.abigfish.net/static/upload/b6ddc699659f7367/c8ef5843c08a854af0ff2eaef41dd9e6/e3dcb49d53c1bf11.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('642', '金华教育科技', 'http://stream.jinhua.com.cn/jykj/app/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '330000', null, null, 'http://webapi.abigfish.net/static/upload/42fde095fa9ae979/84a49087edebfb49aea4b641ed399a8e/eebbe438b7380975.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('643', '金华公共频道', 'http://stream.jinhua.com.cn/jjsh/app/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '330000', null, null, 'http://webapi.abigfish.net/static/upload/a9392709d6d4e139/eef1c81ed1d6ae6b6530afc263e3e7b3/36571433b7dc1266.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('644', '金华都市农村', 'http://stream.jinhua.com.cn/dsnc/app/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '330000', null, null, 'http://webapi.abigfish.net/static/upload/d776fa0e9fbd7e02/c14b9c6f4d167355c12e7ed7912df872/8b06ac86ad8333ff.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('645', '金华东阳新闻综合', 'http://stream.dybtv.com/xwzh/hd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '330000', null, null, 'http://webapi.abigfish.net/static/upload/4b6eb75e8ed35420/4af087cda663517161b5c68987f97137/56fcddf407618e52.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('646', '金华东阳影视生活', 'http://stream.dybtv.com/yssh/hd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '330000', null, null, 'http://webapi.abigfish.net/static/upload/011540ce92c39d68/2c0e4e358abe27151c4b086a02f46ca9/4fe183336887ff4e.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('647', '金华兰溪生活娱乐', 'http://live.lxzc.net/channels/tvie/channel02/flv:500/live', '#', '#', '4', '0', '0', '0', '100000', '330000', null, null, 'http://webapi.abigfish.net/static/upload/4e9c2f3f7487566a/2153aa263adebb564815717d5a93704f/7d9f0e23dd3d78fc.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('648', '金华兰溪新闻综合', 'http://live.lxzc.net/channels/tvie/channel01/flv:500/live', '#', '#', '4', '0', '0', '0', '100000', '330000', null, null, 'http://webapi.abigfish.net/static/upload/3bcda54aa2a73ba8/162fd2739d5e4ecb8a71776b63d75e0a/9a2eb4f50e1990c7.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('649', '衢州公共', 'http://lv.qz123.com:1935/live/qtv2/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '330000', null, null, 'http://webapi.abigfish.net/static/upload/71130edeac889032/89a899fb58524e3aea5c58302223090e/e5b9486b3a61de0a.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('650', '衢州新闻综合', 'http://lv.qz123.com:1935/live/qtv1/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '330000', null, null, 'http://webapi.abigfish.net/static/upload/aee4436ebf66b868/354f054ab2681c0ee754f51b729bf0a2/f665d0d2b285f34e.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('651', '舟山新闻综合', 'http://live.wifizs.cn/xwzh/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '330000', null, null, 'http://webapi.abigfish.net/static/upload/d571bad1ee6caad8/8a2cebf794122edd23d2344c1a6d5287/10e9158a3f94a7da.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('652', '舟山公共生活', 'http://live.wifizs.cn/ggsh/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '330000', null, null, 'http://webapi.abigfish.net/static/upload/a3dfb5ca009d062c/cff6d3386d2bcd57dd4ecdeacbbdf832/5aa8f9288b99fba1.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('653', '舟山群岛旅游', 'http://live.wifizs.cn/qdly/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '330000', null, null, 'http://webapi.abigfish.net/static/upload/408cebdf5e2849ad/edc881583586e74dc0f234358e247916/48b4dc2be0d248d7.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('654', '丽水新闻综合', 'http://video.lsol.com.cn/applive_lstv1/manifest.m3u8', '#', '#', '4', '0', '0', '0', '100000', '330000', null, null, 'http://webapi.abigfish.net/static/upload/4551b3217b3a88e5/b01c40d1d05f2d49237815456a745990/3d344a5caf89d233.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('655', '丽水文化休闲', 'http://video.lsol.com.cn/applive_lstv3/manifest.m3u8', '#', '#', '4', '0', '0', '0', '100000', '330000', null, null, 'http://webapi.abigfish.net/static/upload/5bad1ee29d26170d/91491dab90d8fd3ce26c55ed95245ec1/d682ea371f2c9947.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('656', '丽水青田', 'http://61.153.68.139:1935/live/live1/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '330000', null, null, 'http://webapi.abigfish.net/static/upload/4c6c5a798d2e7f2e/007de69322bb2359ae60ff4eff93006d/95d1b08d9418a9c3.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('657', '深圳卫视高清', 'http://www.szmgiptv.com:14436/hls/7.m3u8', '#', '#', '4', '0', '0', '0', '100000', '440000', null, null, 'http://webapi.abigfish.net/static/upload/9756b8c0f002d729/d89ed515f2c2d455c0b2793adf7e6c25/d04630a6d5bd0832.png', null, null, '9', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('658', '深圳都市', 'http://www.szmgiptv.com:14436/hls/8.m3u8', 'https://sztv-live.cutv.com/ZwxzUXr/500/810kwsz.m3u8?sign=85465add9454336423dec8a57dba6e51&t=5a98fa73', '#', '4', '0', '0', '0', '100000', '440000', '0', '', 'http://webapi.abigfish.net/static/upload/d13d9eeabd80c068/6f448b7161d8a2b6520cddb88726b423/316f90adae403029.png', '', '', '8', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('659', '深圳DV生活', 'http://www.szmgiptv.com:14436/hls/9.m3u8', '#', '#', '4', '0', '0', '0', '100000', '440000', null, null, 'http://webapi.abigfish.net/static/upload/b019e36b7cbc0a9b/8ae633ef8e0627fbf99413118c15585b/6dffad00b6c3d19e.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('660', '深圳体育健康', 'http://www.szmgiptv.com:14436/hls/10.m3u8', '#', '#', '4', '0', '0', '0', '100000', '440000', null, null, 'http://webapi.abigfish.net/static/upload/ce548937d479b760/d4d7c5d5568f02a0bbf734d4ed0eb8a4/76cad8d7d967bb64.png', null, null, '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('661', '深圳电视剧', 'http://www.szmgiptv.com:14436/hls/11.m3u8', 'https://sztv-live.cutv.com/4azbkoY/500/i0iasbj.m3u8?sign=c5237adfa39751a4edb3ce96dc0a99a7&t=5a98fa94', '#', '4', '0', '0', '0', '100000', '440000', '0', '', 'http://webapi.abigfish.net/static/upload/d7a2d2d3ff62e2bd/0dabaa9be1603e1862834c05f0f49e63/a12115db688560ee.png', '', '', '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('662', '深圳少儿', 'http://www.szmgiptv.com:14436/hls/21.m3u8', '#', '#', '4', '0', '0', '0', '100000', '440000', null, null, 'http://webapi.abigfish.net/static/upload/bc68599029928a93/ff775e686c3be325bacea30d16b0bb49/c20bbd59106591e4.jpg', null, null, '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('663', '深圳娱乐', 'http://www.szmgiptv.com:14436/hls/22.m3u8', '#', '#', '4', '0', '0', '0', '100000', '440000', null, null, 'http://webapi.abigfish.net/static/upload/2077dc004452e1db/d5c28850979cc1cbb8c78ee23d4f42c6/c58cede44fedb0cd.jpg', null, null, '7', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('664', '深圳公共', 'http://www.szmgiptv.com:14436/hls/23.m3u8', '#', '#', '4', '0', '0', '0', '100000', '440000', null, null, 'http://webapi.abigfish.net/static/upload/b16caa2fa08a03ed/5bfe3e889dfba641e47883e8ec16860e/a2385727a6824c28.png', null, null, '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('665', '深圳财经生活', 'http://www.szmgiptv.com:14436/hls/24.m3u8', '#', '#', '4', '0', '0', '0', '100000', '440000', null, null, 'http://webapi.abigfish.net/static/upload/da254f3712cb28c7/261dbc8733d7c0ba3643a063a3898ec4/b50f3576209f23cb.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('666', '长春-1', 'http://live.chinactv.com/ctv1/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '220000', null, null, 'http://webapi.abigfish.net/static/upload/1d9c993799203ea6/09d1584e0db3a9b28cfebc3e119ed2fe/0dd172eb59b0a595.png', null, null, '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('667', '长春-2', 'http://live.chinactv.com/ctv2/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '220000', null, null, 'http://webapi.abigfish.net/static/upload/53da08266aad6be6/bdb9da7f238c6c3870b04185b1e0a17f/468a13593457510b.png', null, null, '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('668', '长春-3', 'http://live.chinactv.com/ctv3/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '220000', null, null, 'http://webapi.abigfish.net/static/upload/1fe44f35e90dc6c8/0dbd840c81b736f56d93ec0ed55722ef/4c3f7b0abb2ce3a5.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('669', '长春-4', 'http://live.chinactv.com/ctv4/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '220000', null, null, 'http://webapi.abigfish.net/static/upload/51f2f4fdef85eb9d/f15c09889867cf4406ab8d9df63b8361/29099247301c038b.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('670', '长春-5', 'http://live.chinactv.com/ctv5/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '220000', null, null, 'http://webapi.abigfish.net/static/upload/984e72dfa9b287cf/863f4e0a1244b714e8f104ee25abc2bb/f7080be1923bbf07.png', null, null, '6', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('671', '通化-1', 'http://www.thtv.org.cn:1935//live/live1/tzwj_video.m3u8', '#', '#', '4', '0', '0', '0', '100000', '220000', null, null, 'http://webapi.abigfish.net/static/upload/823daea78d4603e9/a8ccd4d1cb7b57ecbdf429cf164fa35c/126cfc08dbb80395.png', null, null, '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('672', '延边YBTV-1', 'http://live.ybtvyun.com/video/s10006-ybtv1/index.m3u8', '#', '#', '4', '0', '0', '0', '100000', '220000', null, null, 'http://webapi.abigfish.net/static/upload/29c60e8cce9e070c/cd32fcfda7a5c52769e68ae46c3eb3e6/f36abb5d7addee43.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('673', '延边YBTV-2', 'http://live.ybtvyun.com/video/s10006-ybtv2/index.m3u8', '#', '#', '4', '0', '0', '0', '100000', '220000', null, null, 'http://webapi.abigfish.net/static/upload/9b6a747d73af015e/524040137a2ae9b911a5b5ef81cff76a/0a1f3d042f635df3.png', null, null, '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('712', '南宁新闻', 'rtmp://rtmp.nntv.cn/nnlive/NNTV_NEWS', '#', '#', '4', '0', '0', '0', '100000', '450000', '450100', '', 'http://webapi.abigfish.net/static/upload/fd03dab17837acad/985cb01431fce5010a5a1e198d8d7139/df2137f519c3bf57.png', '', '', '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('713', '南宁都市', 'rtmp://rtmp.nntv.cn/nnlive/NNTV_METRO', '#', '#', '4', '0', '0', '0', '100000', '450000', '450100', '', 'http://webapi.abigfish.net/static/upload/d79b641ddd329ff7/f410ff8af526b4ae7520c259a25776cc/5c05b3065e9be8ef.png', '', '', '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('714', '南宁影视', 'rtmp://rtmp.nntv.cn/nnlive/NNTV_VOD', '#', '#', '4', '0', '0', '0', '100000', '450000', null, null, 'http://webapi.abigfish.net/static/upload/7686068674869a65/771830aa499930eaa9845b38a3ac130c/477e928d09194c59.png', null, null, '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('715', '南宁公共', 'rtmp://rtmp.nntv.cn/nnlive/NNTV_PUB', '#', '#', '4', '0', '0', '0', '100000', '450000', null, null, 'http://webapi.abigfish.net/static/upload/dfad157111623423/c17cfbcd0d5680989a29c32994158d26/c4169dfd81ba440b.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('716', '横县电视台', 'rtmp://rtmp.nntv.cn/nnlive/HXTV', '#', '#', '4', '0', '0', '0', '100000', '450000', null, null, 'http://webapi.abigfish.net/static/upload/b36fd154dd0df788/b77b7cfe39200ba3b2efc211f8eb6733/9432f58418e4b0cf.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('717', '隆安电视台', 'rtmp://rtmp.nntv.cn/nnlive/LATV', '#', '#', '4', '0', '0', '0', '100000', '450000', null, null, 'http://webapi.abigfish.net/static/upload/05de265b83af799a/d4f6753aff62d1eea887fcc8f90c90ed/6f74f560c86c9826.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('718', '马山电视台', 'rtmp://rtmp.nntv.cn/nnlive/MSTV', '#', '#', '4', '0', '0', '0', '100000', '450000', null, null, 'http://webapi.abigfish.net/static/upload/7fd3e49001505e6d/3c7fb707f3cb990d7a091ac4b9158189/c01bfd12b2ae148f.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('720', '陕西新闻', 'http://stream.cnwest.com/sxtvs-1/live-1.m3u8?auth_key=1508142786-0-0-759291911e7fe4bef62014c6f0703835', '#', '#', '4', '0', '0', '0', '100000', '610000', '0', '', 'http://webapi.abigfish.net/static/upload/38cca1363531ea99/0168f56b051baa7986f2df8b1f35b23f/913ca2da72522a36.png', '', '', '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('721', '陕西生活', 'http://stream.cnwest.com/sxtvs-3/live-3.m3u8?auth_key=1508142834-0-0-69b80ac08900f8a674103cef713ea2fb', '#', '#', '4', '0', '0', '0', '100000', '610000', null, null, 'http://webapi.abigfish.net/static/upload/b8213dd6cdc0bfb7/d1ca745b9aaf2ba27db6ca85a15f53f8/c59fa4c56905020e.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('722', '陕西公共', 'http://stream.cnwest.com/sxtvs-5/live-5.m3u8?auth_key=1508142866-0-0-15d2f721a88d954d8c047f232ffa2f54', '#', '#', '4', '0', '0', '0', '100000', '610000', null, null, 'http://webapi.abigfish.net/static/upload/1297bcaf6f829c2a/fe9cae03f197568329ad35cc34dbeb17/96cc55e2dbe7dc13.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('723', '陕西秦腔', 'http://stream.cnwest.com/sxtvs-qinqiang/live-10.m3u8?auth_key=1508146168-0-0-3e7e6582488c814887f87a7e3d67875d', '#', '#', '4', '0', '0', '0', '100000', '610000', null, null, 'http://webapi.abigfish.net/static/upload/37683caa2760759f/33b94b22ef62dc8ed98420da8d2b76e4/1ceb98085569e395.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('725', '延安公共', 'http://stream2.liveyun.hoge.cn/YATV2/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '610000', null, null, 'http://webapi.abigfish.net/static/upload/7e005ca999324839/685fc304fa5ac33cf254a7815117d693/4f984ddd705c52b5.jpg', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('726', '韩城综合', 'http://stream.hsqtv.cn/2/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '610000', null, null, 'http://webapi.abigfish.net/static/upload/9f5335187593ac45/32c9fa0b993dc6bfc13aa14c57d4ad45/5bc0694eb98ea14b.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('727', '平利电视台', 'http://livepldst.sobeycache.com/pldst/zb1.m3u8?auth_key=1558838826-0-0-4685bb03d8543bd5cc7804f1763a6800', '#', '#', '4', '0', '0', '0', '100000', '610000', null, null, 'http://webapi.abigfish.net/static/upload/ba979247885fff1b/f52c5788244b492f895bbadee80b41e9/8a5e78ecf1ece53d.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('728', '麻栗坡', 'http://store.ovp.wsrtv.com.cn:9091/mlptv/hls/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '530000', null, null, 'http://webapi.abigfish.net/static/upload/2555b8e9861b4b0e/141181b725fb1b3bed6464d92b56d9be/671fdd1b05a6aa87.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('729', '富宁县', 'http://store.ovp.wsrtv.com.cn:9092/fntv/hls/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '530000', null, null, 'http://webapi.abigfish.net/static/upload/1b50430453690d6b/7e42d983403253dd36c5d795235ef304/afd54a4c84934d00.jpg', null, null, '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('730', '丘北县', 'http://store.ovp.wsrtv.com.cn:9092/qbtv/hls/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '530000', null, null, 'http://webapi.abigfish.net/static/upload/0ae9e6ebb3f4246d/8a09479d00ba273164f58a786e712454/81e8d68aadaa52bf.png', null, null, '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('732', '怒江综合', 'http://onsite.cdvcloud.com/vip_slbf6h/or78mw.m3u8', '#', '#', '4', '0', '0', '0', '100000', '530000', null, null, 'http://webapi.abigfish.net/static/upload/347b1af975e48d6d/ac95eb6c2ced8913a4bc4f2ca738fc2d/5377a713c2ea5cec.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('733', '楚雄综合台', 'http://onsite.cdvcloud.com/vip_dg879u/f71gt8.m3u8', '#', '#', '4', '0', '0', '0', '100000', '530000', null, null, 'http://webapi.abigfish.net/static/upload/e3d23b257cd19c27/ca38fb7a8eeb9cd1e8cfa1b8296a5f45/36585197256b2572.png', null, null, '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('734', '楚雄公共台', 'http://onsite.cdvcloud.com/vip_y1j0m8/je1tkh.m3u8', '#', '#', '4', '0', '0', '0', '100000', '530000', null, null, 'http://webapi.abigfish.net/static/upload/c2544f44973327ef/fb265a6b63006cd40cea79def03ef55c/5bc5493a0be86b41.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('735', '临沧LC综合', 'http://onsite.cdvcloud.com/vip_0gy921/28fp9k.m3u8', '#', '#', '4', '0', '0', '0', '100000', '530000', null, null, 'http://webapi.abigfish.net/static/upload/d0be108008af12f0/ef87feb443bef5c6d2a9c67619d9d372/84ab7322ea242ee9.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('736', '临沧LC公共', 'http://onsite.cdvcloud.com/vip_dx9lto/ma314r.m3u8', '#', '#', '4', '0', '0', '0', '100000', '530000', null, null, 'http://webapi.abigfish.net/static/upload/53f11e9f142ad7e4/c5943c25758ffa055f91618d35331c9d/b76dcec8a6ab445f.png', null, null, '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('737', '德宏电视台', 'http://onsite.cdvcloud.com/vmwl9e/no3kf8.m3u8', '#', '#', '4', '0', '0', '0', '100000', '530000', null, null, 'http://webapi.abigfish.net/static/upload/13e2d1e935fde5d1/e38bd68af16e1b3fd2efdc8105ab515d/848706a152f6d623.png', null, null, '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('738', '个旧GJTV', 'http://112.113.230.5:9099/gjtv/gjtv.m3u8', '#', '#', '4', '0', '0', '0', '100000', '530000', null, null, 'http://webapi.abigfish.net/static/upload/2b7d7ea550d05a13/86ce3aef76f041f461c3ea9fb954034c/3c481fd1e767e23e.png', null, null, '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('739', '河口HKTV', 'http://112.113.230.5:9099/hktv/hktv.m3u8', '#', '#', '4', '0', '0', '0', '100000', '530000', null, null, 'http://webapi.abigfish.net/static/upload/12f7312b4d964397/5b72b9c5c032e2be7e1ce4ce3124fd9e/cc13a151afcff11b.png', null, null, '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('740', '元阳YYTV', 'http://112.113.230.5:9099/yytv/yytv.m3u8', '#', '#', '4', '0', '0', '0', '100000', '530000', null, null, 'http://webapi.abigfish.net/static/upload/6e6d3a48505c9144/377de6cf01dcfd235e9f086b776d10c5/1ad89ed3c61f9329.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('741', '红河县电视', 'http://112.113.230.4:9099/hhtv/hhtv.m3u8', '#', '#', '4', '0', '0', '0', '100000', '530000', null, null, 'http://webapi.abigfish.net/static/upload/f26990c534c3b5a5/50f83fceb0efce0591d0fd47a42aa7ce/a5d1cccd126d2345.png', null, null, '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('744', '黔东南凯里', 'http://r.gslb.lecloud.com/live/hls/2016101930000010899/desc.m3u8', '#', '#', '4', '0', '0', '0', '100000', '520000', null, null, 'http://webapi.abigfish.net/static/upload/128e6141ff674e96/c2a7d342aba23c120563266e58d8b270/300cb92e7479558f.jpg', null, null, '6', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('745', '黔南新闻频道', 'http://gzqn.chinashadt.com:1936/live/qntv5.stream/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '520000', null, null, 'http://webapi.abigfish.net/static/upload/a33e4b17ce2c355f/b3e65ee0425098030d5e4b60c2e7f83a/2a03b4ef26220fcc.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('746', '黔南都市频道', 'http://gzqn.chinashadt.com:1936/live/qntv2.stream/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '520000', null, null, 'http://webapi.abigfish.net/static/upload/785ab11b3be62fbe/6de25e5d1b0c036ae25f50c93d321b7f/dff05757de426238.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('747', '贵州公共', 'http://pili-live-hls.live.v2gogo.com/v2gogo-live/03aef427665c4c91b8ff2d9e7311d99d.m3u8', '#', '#', '4', '0', '0', '0', '100000', '520000', null, null, 'http://webapi.abigfish.net/static/upload/476d4d316a8d5e97/47eda32700173553337e54f8a37228d6/7f9d2af8d8d8a2b0.png', null, null, '6', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('748', '黔南新闻频道', 'http://gzqn.chinashadt.com:1936/live/qntv5.stream/chunklist_w1939859642.m3u8', '#', '#', '4', '0', '0', '0', '100000', '520000', null, null, 'http://webapi.abigfish.net/static/upload/c81b59a1e08f93cd/ea2fa3637aee0565099ba65d1143542d/90b8c40c0df683bd.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('749', '黔西南新闻综合', 'http://114.112.96.199:5080/hls/vv79csa2.m3u8', '#', '#', '4', '0', '0', '0', '100000', '520000', null, null, 'http://webapi.abigfish.net/static/upload/09c28abe5016ce19/5db4ffb4585e8e66e1360bb1174a56e6/2f5a7d1194950342.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('750', '铜仁', 'http://media.trrtv.com:8083/videos/live/10/37/iY2ZjcOkrjAJN/iY2ZjcOkrjAJN.m3u8', '#', '#', '4', '0', '0', '0', '100000', '520000', null, null, 'http://webapi.abigfish.net/static/upload/da2412d2fc99067e/7fa748d3b747c15a8b8fe94a04798b1e/b618e4a12d569091.jpg', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('751', '湘西新闻', 'http://hnfh.chinashadt.com:1995/live/live3.stream/chunklist_w672459926.m3u8', 'http://hnxxz.chinashadt.com:2036/live/tv1.stream/chunklist_w1686925245.m3u8', '#', '4', '0', '0', '0', '100000', '430000', '433100', '', 'http://webapi.abigfish.net/static/upload/e8059b089c71e24e/dcbf1e58bee4797b409cc06019869013/7a12782c09282608.png', '', '', '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('752', '湘西公共', 'http://hnfh.chinashadt.com:1995/live/live4.stream/chunklist_w1311640428.m3u8', 'http://hnxxz.chinashadt.com:2036/live/tv2.stream/chunklist_w1009670378.m3u8', '#', '4', '0', '0', '0', '100000', '430000', '433100', '', 'http://webapi.abigfish.net/static/upload/6e890e85592f3ffa/529332e0e35bc207aa701f8c8f45e242/157491149b8c6fd3.png', '', '', '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('753', '浏阳生活', 'http://58.20.59.58:8020/live/nvod1.stream_aac/chunklist_w203520975.m3u8', '#', '#', '4', '0', '0', '0', '100000', '430000', null, null, 'http://webapi.abigfish.net/static/upload/134da3e4a5cd2b2e/b99885a4062fbc719ab992246105fe33/610d1fba848c6cc9.jpg', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('754', '浏阳新闻', 'http://58.20.59.58:8020/live/nvod4.stream_aac/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '430000', null, null, 'http://webapi.abigfish.net/static/upload/0e378899538cb35f/829a8191314b3649bdbd5ebfde493414/2c8a88e7a3796cd5.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('765', '泉州新闻', 'http://live.qztvxwgj.com/live/news.m3u8', '#', '#', '4', '0', '0', '0', '100000', '350000', null, null, 'http://webapi.abigfish.net/static/upload/eb9996ba82b8594e/08eaa35e3e753922da1e732bc2b7ce5d/afda6bfc58a4b5ec.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('768', '泉州闽南语', 'rtmp://live.qztvxwgj.com/live/mny', '#', '#', '4', '0', '0', '0', '100000', '350000', null, null, 'http://webapi.abigfish.net/static/upload/4158345f3687fcb8/4c1795cbf3c2e638bca0870cfef8e4e8/35b6ac8cb8b5b9bb.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('773', '福州少儿', 'rtmp://live1.fzntv.cn:1935/live/zohi_fztv4', '#', '#', '4', '0', '0', '0', '100000', '350000', null, null, 'http://webapi.abigfish.net/static/upload/d0b4e01838505f45/8873617cfe0e0fc562d9febd7d3d606f/3f673244348a0d4d.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('774', '福州生活', 'rtmp://live1.fzntv.cn:1935/live/zohi_fztv3', '#', '#', '4', '0', '0', '0', '100000', '350000', null, null, 'http://webapi.abigfish.net/static/upload/d2d053d37a8924d0/297b22ebc744c4ce980023eafc2c4191/80916d7eb6d29599.png', null, null, '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('775', '福州新闻', 'rtmp://live1.fzntv.cn:1935/live/zohi_fztv1', '#', '#', '4', '0', '0', '0', '100000', '350000', null, null, 'http://webapi.abigfish.net/static/upload/35a8b29b1e59fa29/0eea9888ac038e7d09559348ab4c41dd/dc39f6be1a1547fc.jpg', null, null, '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('776', '福州影视', 'rtmp://live1.fzntv.cn:1935/live/zohi_fztv2', '#', '#', '4', '0', '0', '0', '100000', '350000', null, null, 'http://webapi.abigfish.net/static/upload/98e76d4492ecb950/2f369f3e0c876607c83d501e36d6dca7/fc8b91356c3c8954.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('778', '龙岩综合', 'http://stream.lytv.net.cn/2/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '350000', null, null, 'http://webapi.abigfish.net/static/upload/80ddea7f4c358d2a/47c0292bd58a635f812b6699cbb55bc9/ef10635388da1d67.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('779', '龙岩公共', 'http://stream.lytv.net.cn/1/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '350000', null, null, 'http://webapi.abigfish.net/static/upload/2c193e4e451ea34c/360ed9a03f5df1cc47097dc5bb200916/487d7d569023b537.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('783', '三明1', 'http://stream3.liveyun.hoge.cn/smtv1/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '350000', null, null, 'http://webapi.abigfish.net/static/upload/41884c79b3339f66/e8b7e121f785d641ad3bcbcdf2f2fcc4/8424b0bc41355740.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('794', '三明永安综合', 'rtmp://r.gslb.lecloud.com/live/2017011630000005b99', '#', '#', '4', '0', '0', '0', '100000', '350000', null, null, 'http://webapi.abigfish.net/static/upload/b919ca32fd6d9623/19b3a33515ac8cec1f65bda5e79ca695/5abebf7ab73bc821.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('795', '三明永安生活', 'rtmp://r.gslb.lecloud.com/live/2017011630000005d99', '#', '#', '4', '0', '0', '0', '100000', '350000', null, null, 'http://webapi.abigfish.net/static/upload/686521d89e105b1f/afccc477c865241d3bad48cdf807c5c6/10b810ce96de4f48.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('798', '漳州-1', 'http://wshls.yizhibo.tv/live/S71069239807178036140/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '350000', null, null, 'http://webapi.abigfish.net/static/upload/5d12d5a76a968353/6eb23a6a1c9767ccc69657b504b93b9e/403e6b3f34aaa3e7.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('799', '漳州漳浦', 'http://220.161.87.62:8800/hls/0/index.m3u8', '#', '#', '4', '0', '0', '0', '100000', '350000', null, null, 'http://webapi.abigfish.net/static/upload/a4aa14f82fe856ff/4e66dfca2c94e0e8a0103ed24c395e85/0215f7020dbe8166.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('801', '呼伦贝尔1', 'http://live1.hrtonline.cn:1935/live/live100/500K/tzwj_video.m3u8', '#', '#', '4', '0', '0', '0', '100000', '150000', '150700', '', 'http://webapi.abigfish.net/static/upload/f962ca0f52cb4fb4/658780f317085ddb42d15f0a37b7d0a1/51bb2ca9cc7e5548.png', '', '', '7', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('802', '呼伦贝尔2', 'http://live1.hrtonline.cn:1935/live/live102/500K/tzwj_video.m3u8', '#', '#', '4', '0', '0', '0', '100000', '150000', '150700', '', 'http://webapi.abigfish.net/static/upload/a1f82b2345f91a09/a524f048a6c1fdae7fcbff32ba6970c5/a98efe594b17c6a8.png', '', '', '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('803', '内蒙古新闻综合', 'http://stream.nmtv.cn/7/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '150000', null, null, 'http://webapi.abigfish.net/static/upload/5fc624523b2074a3/440e9312f271d68c0cc7249c8a95bd7a/2a05d3673c5a2b38.png', null, null, '7', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('804', '内蒙古经济生活', 'http://stream.nmtv.cn/2/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '150000', null, null, 'http://webapi.abigfish.net/static/upload/1c474e7b437a3729/231a4105790a63401de16907c72cefcb/01975c3e61185ced.png', null, null, '6', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('805', '内蒙古文体娱乐', 'http://stream.nmtv.cn/8/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '150000', null, null, 'http://webapi.abigfish.net/static/upload/745cd59c307a0ad8/b95a27a5c904528b6da5e300f4ba3a07/eda6b9ffa8b62166.png', null, null, '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('806', '内蒙农牧频道', 'http://stream.nmtv.cn/6/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '150000', null, null, 'http://webapi.abigfish.net/static/upload/26f5629849c2de70/39dabaaa868ce2036ad2e2b2ea01af0b/391c7b912c844dba.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('807', '内蒙古少儿', 'http://stream.nmtv.cn/4/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '150000', null, null, 'http://webapi.abigfish.net/static/upload/90615830ceb48019/aa001fe45233f1bb3c3c9c9207af380d/2ee406d6d9cb64ad.png', null, null, '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('808', '内蒙古蒙语', 'http://stream.nmtv.cn/3/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '150000', null, null, 'http://webapi.abigfish.net/static/upload/7842858ddde53cb0/a24dc8c9fea4f92b4b63f86874af45ac/8e61cd781eff205d.png', null, null, '6', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('809', '包头市新闻综合', 'http://live.btgdt.com/channels/btgd/xwzh/m3u8:500k', '#', '#', '4', '0', '0', '0', '100000', '150000', null, null, 'http://webapi.abigfish.net/static/upload/cae7c5e5eb4169ad/ade9008aa37fe0a787e00febf3b903f5/3a8d1387ed34c5b6.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('810', '包头市经济', 'http://live.btgdt.com/channels/btgd/jjpd/m3u8:500k', '#', '#', '4', '0', '0', '0', '100000', '150000', null, null, 'http://webapi.abigfish.net/static/upload/b53c8d02b0d52794/7d06491f519e0fa4df1913f2b19b4b3c/c1181f0f3327515c.jpg', null, null, '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('811', '包头市生活家居', 'http://live.btgdt.com/channels/btgd/shfw/m3u8:500k', '#', '#', '4', '0', '0', '0', '100000', '150000', null, null, 'http://webapi.abigfish.net/static/upload/8433ddfeaa9887f6/2f36e8c05b6e70220c0a1e2d798ac9af/02ff1fbbb0bb88d8.png', null, null, '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('812', '呼伦贝尔新闻', 'http://live1.hrtonline.cn:1935/live/live100/500K/tzwj_video.m3u8?auth=6196289170699653@1595@2D36834A312C3FC898D87585B9FC5612', '#', '#', '4', '0', '0', '0', '100000', '150000', null, null, 'http://webapi.abigfish.net/static/upload/e80da4bfb9f42df5/e6d9fc06b93126f1ea1e6f1509d9e505/a9af7c3a52c37475.png', null, null, '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('813', '鄂尔多斯蒙古语频道 ', 'http://olive.ordosrt.com:1935/live/v3/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '150000', null, null, 'http://webapi.abigfish.net/static/upload/fc73483cfec371c6/1e8f755f0ed49da434fc4fed862fd1a1/4362ead592726b47.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('814', '新疆2维语新闻', 'http://playback-livehyuwxjtv122qn.sobeycache.com/sobeylive/xjtv2.m3u8', '#', '#', '4', '0', '0', '0', '100000', '650000', null, null, 'http://webapi.abigfish.net/static/upload/c4eb90fdc9fb2961/fe28b5f6f587187b9e57f78cdc3a5f50/52ff53af3df8e6eb.png', null, null, '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('815', '新疆3哈语新闻', 'http://playback-livehyuwxjtv122qn.sobeycache.com/sobeylive/xjtv3.m3u8', '#', '#', '4', '0', '0', '0', '100000', '650000', null, null, 'http://webapi.abigfish.net/static/upload/47b59726d1b8f8a9/cc98c13fc4a6386290fa69c82c06e9f1/2bb739cf7ea53fe4.png', null, null, '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('816', '新疆4汉语综艺', 'http://playback-livehyuwxjtv122qn.sobeycache.com/sobeylive/xjtv4.m3u8', '#', '#', '4', '0', '0', '0', '100000', '650000', null, null, 'http://webapi.abigfish.net/static/upload/cf0dbcee2c0aa259/23754825d6d066756692e03714de64fb/c32753e3312b1071.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('817', '新疆5维语综艺', 'http://playback-livehyuwxjtv122qn.sobeycache.com/sobeylive/xjtv5.m3u8', '#', '#', '4', '0', '0', '0', '100000', '650000', null, null, 'http://webapi.abigfish.net/static/upload/10014e1a27fa093c/0208c43a2331ef04d9f417a5bd4b0575/f56ff26c7a473a61.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('818', '新疆7汉语经济', 'http://playback-livehyuwxjtv122qn.sobeycache.com/sobeylive/xjtv7.m3u8', '#', '#', '4', '0', '0', '0', '100000', '650000', null, null, 'http://webapi.abigfish.net/static/upload/ff3ec3c8e2728bb2/7462a546ea460bb4dc9fe2c73f3addc7/fb6062fff36cca6e.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('819', '新疆8哈语综艺', 'http://playback-livehyuwxjtv122qn.sobeycache.com/sobeylive/xjtv8.m3u8', '#', '#', '4', '0', '0', '0', '100000', '650000', null, null, 'http://webapi.abigfish.net/static/upload/b05b64b135c654de/acc33cf7c4a8aeb53139f8dbb4af553a/b05bb8d63f0db947.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('820', '新疆9维语经济', 'http://playback-livehyuwxjtv122qn.sobeycache.com/sobeylive/xjtv9.m3u8', '#', '#', '4', '0', '0', '0', '100000', '650000', null, null, 'http://webapi.abigfish.net/static/upload/ddf26bf6c716f9ad/2d1b05a321e4b5b8007203e95299b072/b3a5e6f1f3d4c725.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('821', '新疆10体育', 'http://playback-livehyuwxjtv122qn.sobeycache.com/sobeylive/xjtv10.m3u8', '#', '#', '4', '0', '0', '0', '100000', '650000', null, null, 'http://webapi.abigfish.net/static/upload/21b64b533c7445e6/d7ccb6345af652b73ffa944140b77ef7/b5e7500eb4ca2fe5.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('822', '新疆11法制信息', 'http://playback-livehyuwxjtv122qn.sobeycache.com/sobeylive/xjtv11.m3u8', '#', '#', '4', '0', '0', '0', '100000', '650000', null, null, 'http://webapi.abigfish.net/static/upload/e2d5b645da58c9ff/438ee2a7f168ae618db9f220b4440d34/82cc85657b2d7d23.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('823', '新疆12少儿', 'http://playback-livehyuwxjtv122qn.sobeycache.com/sobeylive/xjtv12.m3u8', '#', '#', '4', '0', '0', '0', '100000', '650000', null, null, 'http://webapi.abigfish.net/static/upload/c626050b06e0c362/65899a5c42a98bc1c25eef5f1e1c6cd8/ea2d0a65476c1745.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('825', 'BTV-科教', 'http://ivi.bupt.edu.cn/hls/btv3.m3u8', '#', '#', '4', '0', '0', '0', '100000', '110000', null, null, 'http://webapi.abigfish.net/static/upload/53fff04f95749464/651e24ef46cd41024572837cfa3489c4/ef6c180ff21eb8ca.jpg', null, null, '65', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('826', 'BTV-影视', 'http://ivi.bupt.edu.cn/hls/btv4.m3u8', '#', '#', '4', '0', '0', '0', '100000', '110000', null, null, 'http://webapi.abigfish.net/static/upload/3e876673f7084aca/c8faf552ea971523a78f38f1d46f350b/a1b7685b57d15be3.jpg', null, null, '78', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('827', 'BTV-财经', 'http://ivi.bupt.edu.cn/hls/btv5.m3u8', '#', '#', '4', '0', '0', '0', '100000', '110000', null, null, 'http://webapi.abigfish.net/static/upload/2e970f99fa7f2805/d8be0cc8a73f770f6b03eab4f067cf87/39e85bd408f05d94.jpg', null, null, '38', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('828', 'BTV-生活', 'http://ivi.bupt.edu.cn/hls/btv7.m3u8', '#', '#', '4', '0', '0', '0', '100000', '110000', null, null, 'http://webapi.abigfish.net/static/upload/f9d3a954de632777/30a1c66d8b38dee3fa2bb63769b5280b/13957feadeea5502.jpg', null, null, '57', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('829', 'BTV-青年', 'http://ivi.bupt.edu.cn/hls/btv8.m3u8', '#', '#', '4', '0', '0', '0', '100000', '110000', null, null, 'http://webapi.abigfish.net/static/upload/9ef957ba61e7dd37/b0984e3901c8720c792e3e4ce8552ed3/d0dd92f54e7344a0.jpg', null, null, '56', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('830', 'BTV-新闻', 'http://ivi.bupt.edu.cn/hls/btv9.m3u8', '#', '#', '4', '0', '0', '0', '100000', '110000', null, null, 'http://webapi.abigfish.net/static/upload/10c91cbec1b70835/824b898ef16a0de792e53de4d143543b/931fb5a393b44f93.jpg', null, null, '54', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('831', 'BTV-KAKU少儿', 'http://ivi.bupt.edu.cn/hls/btv10.m3u8', '#', '#', '4', '0', '0', '0', '100000', '110000', null, null, 'http://webapi.abigfish.net/static/upload/bf65f07beaf1780a/c1cf7dcf51cc8bfcab0677a84bf1fad3/578631280d3ee334.jpg', null, null, '63', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('832', 'BTV-体育', 'http://ivi.bupt.edu.cn/hls/btv6.m3u8', '#', '#', '4', '0', '0', '0', '100000', '110000', null, null, 'http://webapi.abigfish.net/static/upload/c8c3e560f7587e3f/d915d53910288dbd9d27fbdf40c05843/4eea6b8e822d003d.jpg', null, null, '71', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('834', '海南综合1', 'http://stream1.hnntv.cn/zhpd/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '460000', null, null, 'http://webapi.abigfish.net/static/upload/51d25b6e0d5cd607/26d4e3447431e477bfb7adf7a9943880/7f685ad24c7dd7fd.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('835', '海南综合', 'http://stream1.hnntv.cn/zhpd/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '460000', null, null, 'http://webapi.abigfish.net/static/upload/ef200a32b994b315/7cd21a976c580dcad82cc2ff75687cc5/1cdf860934f06779.jpg', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('836', '海南影视', 'http://stream1.hnntv.cn/ysjpd/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '460000', null, null, 'http://webapi.abigfish.net/static/upload/d4f70439fda8ca94/61a44c58e0a0943af99308ec839a2482/6c5c92a4b16006e8.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('837', '海南公共', 'http://stream1.hnntv.cn/ggpd/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '460000', null, null, 'http://webapi.abigfish.net/static/upload/26f17e8dbf8c2c06/485d08cb0bd067e37da995c4475a937d/fdd1dbc776850f36.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('840', '海口一台', 'http://player.pptvyun.com/svc/m3u8player/pl/0a2dnq6ZoKKknKeL4K2dmqqW7KGgn6uWoqU.m3u8', '#', '#', '4', '0', '0', '0', '100000', '460000', null, null, 'http://webapi.abigfish.net/static/upload/92e9276c7e25c4a8/21e57bddb2202b6af36c95070399e5d6/9f5ae982b8b664f6.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('841', '三亚新闻', 'http://hnsy.chinashadt.com:1935/live/syzb.stream/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '460000', null, null, 'http://webapi.abigfish.net/static/upload/1a7c50825e7911dd/b5a2c9e8800c433525dd30ae03e63faa/6b82d5a6a8dadff4.png', null, null, '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('843', '旅游卫视', 'http://stream1.hnntv.cn/lyws/playlist.m3u8', 'http://223.82.250.72/live/lvyoustv/1.m3u8', '#', '4,7', '0', '0', '0', '100000', '460000', '0', '', 'http://webapi.abigfish.net/static/upload/da3a4e993d97b91c/a0b6206556e22f836d13c2f44f841673/e9097c2137cf6def.png', 'lyws', '', '5', '0', '0', '1', '8024c685');
INSERT INTO `t_television` VALUES ('844', '三沙卫视', 'http://stream1.hnntv.cn/ssws/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '460000', null, null, 'http://webapi.abigfish.net/static/upload/5a1c75edbbb57641/d5479f233810a79848bce22626105218/f21db616ac43293b.png', null, null, '6', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('848', 'HBO', 'http://tstv.lcdn.claro.net.co/Content/hls_clear/Live/Channel(HBO_HD)/index.m3u8', '#', '#', '19', '0', '0', '0', '999991', '0', '0', '', 'http://webapi.abigfish.net/static/upload/2fc1df7ac6e00ffa/c3509b070b117ddca5f3c488082d3141/6e5323823b4bc5d5.png', '', '', '11', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('851', '保定一套', 'http://live.bdgdw.com/channel1/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '130000', '130600', '', 'http://webapi.abigfish.net/static/upload/d1558cccd99d12f1/5331f34747737d64ddf36ce0658efd6e/aaaddb4aa9de7c7e.jpg', '', '', '6', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('852', '保定二套', 'http://live.bdgdw.com/channel2/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '130000', '130600', '', 'http://webapi.abigfish.net/static/upload/af510bf0d85300a0/865178e3cd99e6c3e3ad1e95332cceed/5043c6920c2d48cf.png', '', '', '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('853', '保定三套', 'http://live.bdgdw.com/channel3/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '130000', '130600', '', 'http://webapi.abigfish.net/static/upload/badc93fe6e796293/6c7f7d5ad32f69e438d7344a5191f5ca/93aba1fe11b92f35.png', '', '', '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('857', '济南影视', 'http://ts1.ijntv.cn/jnyd/sd/live.m3u8?_upt=32257ff01486023715', '#', '#', '4', '0', '0', '0', '100000', '370000', '370100', '', 'http://webapi.abigfish.net/static/upload/16ef40d34ab73c87/1b120a870f4d730ef5b8c2566771a688/a65cf97202fb5f0f.png', '', '', '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('858', '济南少儿', 'http://ts2.ijntv.cn/jnse/sd1/live.m3u8?_upt=8f7883a21486023985', '#', '#', '4', '0', '0', '0', '100000', '370000', '370100', '', 'http://webapi.abigfish.net/static/upload/2c0b63ee34715edf/629f6c3e41c8a6b256f7ed0e911f0477/6495f9363e5aea6c.png', '', '', '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('859', '济南生活', 'http://ts2.ijntv.cn/jnsh/sd/live.m3u8?_upt=df0be60e1486023840', '#', '#', '4', '0', '0', '0', '100000', '370000', '370100', '', 'http://webapi.abigfish.net/static/upload/542907b161d7afd1/6500fb0b7dac53293e97f6b6e0271a1b/e746cc6768b52563.png', '', '', '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('860', '济南娱乐', 'http://ts2.ijntv.cn/jnyl/sd/live.m3u8?_upt=eb04591b1486023769', '#', '#', '4', '0', '0', '0', '100000', '370000', '0', '', 'http://webapi.abigfish.net/static/upload/dcf05231c4925692/70f19d3f1780e4755c4c8e0b2d4430b0/51776616f2b5a2aa.png', '', '', '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('861', '济南都市', 'http://ts1.ijntv.cn/jnds/sd/live.m3u8?_upt=730e770e1486023640', '#', '#', '4', '0', '0', '0', '100000', '370000', '370100', '', 'http://webapi.abigfish.net/static/upload/ae852ba7ae75fa4c/5c7d186a61fcce923cf05261987750d4/bc066c5026dc7437.png', '', '', '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('862', '济南商务', 'http://ts1.ijntv.cn/jnsw/sd/live.m3u8?_upt=979d28231486023926', '#', '#', '4', '0', '0', '0', '100000', '370000', '370100', '', 'http://webapi.abigfish.net/static/upload/9efac0e475dc2f72/3bb7f1b6cad1a371508418383c13fa9d/6550f957161fd750.png', '', '', '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('865', '山西经济', 'http://live3.sxrtv.com/flvss?bitrate=800000&channel=Shan1XiFinance&start=0&provider=www.tvmining.com', '#', '#', '4', '0', '0', '0', '100000', '140000', '0', '', 'http://webapi.abigfish.net/static/upload/d7d1b0e1c2ba164a/103f995abd07662f5f65c233d57a4b31/b1e4edbaa79bf6ca.jpg', '', '', '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('866', '山西影视', 'http://live2.sxrtv.com/flvss?bitrate=800000&channel=Shan1XiFilm&start=0&provider=www.tvmining.com', '#', '#', '4', '0', '0', '0', '100000', '140000', null, null, 'http://webapi.abigfish.net/static/upload/08392f6fb14f085b/29b5a223923da5512988178ffc225e59/eaeff9e6578e1651.jpg', null, null, '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('867', '山西科教', 'http://live3.sxrtv.com/flvss?bitrate=800000&channel=Shan1XiEdu&start=0&provider=www.tvmining.com', '#', '#', '4', '0', '0', '0', '100000', '140000', null, null, 'http://webapi.abigfish.net/static/upload/d372946744bcac7b/37c4083bcbf443e9b9b37cdd198e940b/73969ea6ba7aaf72.jpg', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('868', '山西公共', 'http://live2.sxrtv.com/flvss?bitrate=800000&channel=Shan1XiPublic&start=0&provider=www.tvmining.com', '#', '#', '4', '0', '0', '0', '100000', '140000', null, null, 'http://webapi.abigfish.net/static/upload/60a77e068efeffff/1391d72e4fbfec5c761067fbba1d6ef1/59173bfb8109abc2.jpg', null, null, '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('869', '山西少儿', 'http://live2.sxrtv.com/flvss?bitrate=800000&channel=Shan1XiChild&start=0&provider=www.tvmining.com', '#', '#', '4', '0', '0', '0', '100000', '140000', null, null, 'http://webapi.abigfish.net/static/upload/caca633d466787a2/605a386d6cd58cec78d936bf02c85bb8/8a22952a506ace4c.jpg', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('870', '晴彩山西', 'http://live3.sxrtv.com/flvss?bitrate=800000&channel=JingCaisx&start=0&provider=www.tvmining.com', '#', '#', '4', '0', '0', '0', '100000', '140000', null, null, 'http://webapi.abigfish.net/static/upload/eac985bdaa76cf35/2ab7e8ecc48c0618b2abed343c4faf5d/13c585bbf2429538.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('871', '中国黄河', 'http://live3.sxrtv.com/flvss?bitrate=800000&channel=ChinaHuangHe&start=0&provider=www.tvmining.com', '#', '#', '4', '0', '0', '0', '100000', '140000', null, null, 'http://webapi.abigfish.net/static/upload/d3d0b83accadaea9/8c2067b460b00c5def482c2b5df361eb/e176e3bade57d833.jpg', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('874', '德云社', 'http://cdn.okokyun.com/ppvod/9E0F93EA5F31D138953D02203A9F34C5.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/1801803254d671f2/ea754a94e56df59a2c2f296b71dfd73c/ea9435d24de06153.jpg', '', '', '24', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('876', '伊犁一套', 'http://202.107.188.149:5002/yili1_hdcq-1.m3u8?token=abc', '#', '#', '4', '0', '0', '0', '100000', '650000', '0', '', 'http://webapi.abigfish.net/static/upload/c5194e3607ca860e/4118b1ef63533c956ef77bd3e3cfb00c/d02bba48e6e9a9e3.png', '', '', '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('878', '喀什一套', 'http://202.107.188.151:5002/kashi1_hdcq-1.m3u8?token=abc', '#', '#', '4', '0', '0', '0', '100000', '650000', '0', '', 'http://webapi.abigfish.net/static/upload/56488ded4129d5e7/fbad989e1dad1494882f7bde3c8c51d2/1a726d4384d6cd69.png', '', '', '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('879', '博州一套', 'http://202.107.188.151:5002/bozhou_hdcq-1.m3u8?token=abc', '#', '#', '4', '0', '0', '0', '100000', '650000', '0', '', 'http://webapi.abigfish.net/static/upload/6003822a5989689b/efd308ce1be4ac75ec6019ea251a4e03/b08d4135153be64e.jpg', '', '', '6', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('880', '和田综合', 'http://202.107.188.151:5002/hetianhanyu_hdcq-1.m3u8?token=abc', '#', '#', '4', '0', '0', '0', '100000', '650000', '0', '', 'http://webapi.abigfish.net/static/upload/69929f09452f582f/e0ddc6b518b5d91c305d54c3ebc00858/60c653b1938bcbce.jpg', '', '', '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('881', '苏州新闻综合', 'http://livetv.2500city.com/live/sbs1hd.m3u8', '#', '#', '4', '0', '0', '0', '100000', '320000', '320500', '', 'http://webapi.abigfish.net/static/upload/e5ecd35edda80674/3600022c9908213ae099dcaa1fbe6ed7/d9f843e37efc5097.png', '', '', '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('882', '苏州社会经济', 'http://livetv.2500city.com/live/sbs2hd/index.m3u8', '#', '#', '4', '0', '0', '0', '100000', '320000', null, null, 'http://webapi.abigfish.net/static/upload/e54bacb7737f0a18/0ed006df65f75e7bc093845623401e5e/741cd40af98413f6.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('883', '苏州文化生活', 'http://livetv.2500city.com/live/sbs3hd/index.m3u8', '#', '#', '4', '0', '0', '0', '100000', '320000', null, null, 'http://webapi.abigfish.net/static/upload/045ea21539823cd6/8606177a4d1e60a9977b10329616a032/a676a3a96c5e32e2.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('884', '苏州生活资讯', 'http://livetv.2500city.com/live/sbs5hd/index.m3u8', '#', '#', '4', '0', '0', '0', '100000', '320000', null, null, 'http://webapi.abigfish.net/static/upload/e914db7a13fcf852/a53fed682f3df33d35ce49daeea2bdae/89607a6c0a8e8527.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('885', '张家港民生', 'rtmp://3gvod.zjgonline.com.cn:1935/live/shehuishenghuo', '#', '#', '4', '0', '0', '0', '100000', '320000', null, null, 'http://webapi.abigfish.net/static/upload/5b48cf6d948c7003/4f7a239f8e5c566def92ec48a92ac863/84c1c08a8651fb72.png', null, null, '6', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('886', '张家港新闻', 'rtmp://3gvod.zjgonline.com.cn:1935/live/xinwenzonghe', '#', '#', '4', '0', '0', '0', '100000', '320000', null, null, 'http://webapi.abigfish.net/static/upload/d56184285e24d57e/ebb9540ac92d8cbf6c6bea31aa6f6df3/b292c729e98d024c.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('887', '太仓新闻', 'http://58.211.172.37:1935/live/tcxwpc/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '320000', null, null, 'http://webapi.abigfish.net/static/upload/b2f6eec3a2f05c66/6cca0126700c4ea7874b2add857bd9bc/c60635a51eb2b697.png', null, null, '6', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('888', '太仓娄东民生', 'http://58.211.172.37:1935/live/ldmspc/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '320000', null, null, 'http://webapi.abigfish.net/static/upload/c02ffbf925247668/93492ff928c19176847b61728ca14c80/8adcc076cbc96a7d.png', null, null, '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('889', '太仓党建', 'http://58.211.172.37:1935/live/djpdpc/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '320000', null, null, 'http://webapi.abigfish.net/static/upload/7d84664db16c21fe/30d1808be5ea428a59927624ef868805/8cd5d1e351304f1a.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('890', '昆山新闻综合', 'http://221.6.85.150:9000/live/ksxwzh_800/ksxwzh_800.m3u8', '#', '#', '4', '0', '0', '0', '100000', '320000', null, null, 'http://webapi.abigfish.net/static/upload/44f89aa962e57f9f/1cd9ec2b53284dad72750ee512b0ef9c/77aa7e84765a8173.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('891', '昆山社会生活', 'http://221.6.85.150:9000/live/ksshsh_800/ksshsh_800.m3u8', '#', '#', '4', '0', '0', '0', '100000', '320000', null, null, 'http://webapi.abigfish.net/static/upload/d0b7f2a36b6838fe/81fcee29d2f410a291086a8afd18de7c/8c1158f7fcc89091.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('892', '徐州-1HD', 'http://183.207.249.15/PLTV/3/224/3221225945/index.m3u8', '#', '#', '4', '0', '0', '0', '100000', '320000', null, null, 'http://webapi.abigfish.net/static/upload/12e369da0630f39b/da204840c316a6ed2f96a6bd87ff056f/a63b286cb3899f30.jpg', null, null, '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('893', '徐州-4HD', 'http://183.207.249.15/PLTV/3/224/3221225951/index.m3u8', '#', '#', '4', '0', '0', '0', '100000', '320000', null, null, 'http://webapi.abigfish.net/static/upload/f65454346463d95c/4a771e973b93afdc7a3103d455a0879a/4aa75c181c2f44c5.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('894', '徐州-1', 'http://stream1.huaihai.tv/xwzh/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '320000', null, null, 'http://webapi.abigfish.net/static/upload/dc80df84c09ee9d0/90df898030eb0b46654f44bbdf1894d0/d1ab934282e9444e.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('895', '徐州-2', 'http://stream1.huaihai.tv/jjsh/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '320000', null, null, 'http://webapi.abigfish.net/static/upload/629531d0a1e6d4ba/2234c38c9c859f534c37107b9dedb73b/90f677930bf7728b.jpg', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('896', '徐州-3', 'http://stream1.huaihai.tv/wyys/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '320000', null, null, 'http://webapi.abigfish.net/static/upload/2ab8f86410b4f3bd/cc747699295eb5a4b849b10a4aadcab1/172ee5c75838ae3f.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('897', '徐州-4', 'http://stream1.huaihai.tv/ggpd/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '320000', null, null, 'http://webapi.abigfish.net/static/upload/cfe44f1b8cda9f97/385b07824ef4efe3eb789e741cbc8792/f18e3e7049e6f4ef.jpg', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('898', '邳州综合', 'http://stream.pznews.com/pztv1/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '320000', null, null, 'http://webapi.abigfish.net/static/upload/59ec5b2bb17ded89/02bb5cb4cd424933551e67bba32e7c3d/dd8b5371d8af5160.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('899', '邳州综艺', 'http://stream.pznews.com/pztv2/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '320000', null, null, 'http://webapi.abigfish.net/static/upload/b37f6ff7029b365b/5c6f15eb27fe7d6f0a00ebb64e023d07/e13f3668c89f197c.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('900', '新沂新闻综合', 'http://app.yishuweb.com:81/live1/livestream_ff.m3u8', '#', '#', '4', '0', '0', '0', '100000', '320000', null, null, 'http://webapi.abigfish.net/static/upload/35c5ce55d4c60154/06e3f53558e5bed2cb45a1110562681f/bcf8dc2cead7bd23.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('901', '新沂生活频道', 'http://app.yishuweb.com:81/live2/livestream_ff.m3u8', '#', '#', '4', '0', '0', '0', '100000', '320000', null, null, 'http://webapi.abigfish.net/static/upload/8a6cb96eabdd2be1/fe1e8bf4043d385f76a3839282e3a0d0/0cfde255d74109df.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('905', '银川生活', 'http://stream.ycgbtv.com.cn/ycxw/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '640000', null, null, 'http://webapi.abigfish.net/static/upload/4f74b9baaea72a5b/8a5a7ae70745bb4888531262db964190/59fdb161777742db.png', null, null, '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('906', '银川公共', 'http://stream.ycgbtv.com.cn/ycgg/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '640000', null, null, 'http://webapi.abigfish.net/static/upload/602f16e2d7646960/7e94b3f314f812eedda2dd734c4c0462/ae1c37edd01d5bcd.png', null, null, '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('908', '海南青少', 'http://stream1.hnntv.cn/sepd/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '460000', '0', '', 'http://webapi.abigfish.net/static/upload/1f1a330a04265fcc/56b37df4f9bc529ccff5262fdfee3137/4dd7ef606f5a722f.png', '', '', '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('909', '海南旅游高清', 'http://stream1.hnntv.cn/lywsgq/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '460000', '0', '', 'http://webapi.abigfish.net/static/upload/c992f5d6dd9fc628/6bbd196b2cb02798bc02850ceec64042/2e0cd11a6a4b827e.png', '', '', '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('910', '海南三沙卫视', 'http://stream1.hnntv.cn/ssws/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '460000', '0', '', 'http://webapi.abigfish.net/static/upload/1638ccfe382f378e/521088983b666d2825819c8fe224033c/c89bafa6a16cdd04.png', '', '', '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('911', '海南新闻', 'http://stream1.hnntv.cn/xwpd/playlist.m3u8', '#', '#', '4,8', '0', '0', '0', '100000', '460000', '0', '', 'http://webapi.abigfish.net/static/upload/bca0870cfef8e4e8/35b6ac8cb8b5b9bba1403d186f75b3ae/39bd85be804b0116.png', '', '', '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('912', '海口2台', 'http://player.pptvyun.com/svc/m3u8player/pl/0a2dnq6ZoKKknKiL4K2dmqqW7KGgn6uWoqc.m3u8', '#', '#', '4', '0', '0', '0', '100000', '460000', '0', '', 'http://webapi.abigfish.net/static/upload/1ac6ffba021b9168/d14c06ae8b4916deaaa5def453b9de3c/49f84c1bf00b8ce5.png', '', '', '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('913', '海南三亚-1', 'http://hnsy.chinashadt.com:1935/live/syzb.stream/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '460000', '0', '', 'http://webapi.abigfish.net/static/upload/669d11d1eb158cd3/de1baa5371b1829600e281771a94ee76/e687d0175d8655b6.jpg', '', '', '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('927', '迁安快乐3频道', 'http://app.qatv.cn:1936/live/stream:kl3pd.stream_720p/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '130000', '0', null, 'http://webapi.abigfish.net/static/upload/c188c515e262eb26/d2ca1bc25b61339645e0c0ab1b34c475/f4729d0e2b42a142.jpg', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('936', '哈语少儿高清', 'http://tv04.tsytv.com.cn/liveho/Eynek-HD.stream/chunklist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '650000', '650100', null, 'http://webapi.abigfish.net/static/upload/bc2c404a71c4e1bd/53d3cca4799de8f1d82ce8ec06826235/531e1554d095cae9.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1160', '亚太第一卫视', 'rtmp://v1.one-tv.com/live/mpegts.stream', '#', '#', '18', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/6a1ec11a8b474578/8bb0b3f0b5362f7adf9f792c5e0d0583/14cc356c9017d02a.png', null, null, '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1183', '韩国KCTV', 'http://122.202.129.136:1935/live/ch5/playlist.m3u8', '#', '#', '17', '0', '0', '0', '999992', '0', '0', '', 'http://webapi.abigfish.net/static/upload/d58213de435538a2/e3f461f3f9e44848e8f7c6056e8d5ee6/1d9ebb5a6fd6906e.jpg', '', '', '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1290', '火猫电影2', 'http://live-tx-hdl.huomaotv.cn/live/2inGSW24083.m3u8', '#', '#', '6', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/cdf3694f965547d9/4158c412fe6f27618f061aed19808b46/0b034b628a555fce.png', '', '', '56', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1291', '火猫电影1', 'http://live-tx-hdl.huomaotv.cn/live/9gFWYZ24081.m3u8', '#', '#', '6', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/5f06f7aeeca9a91b/8cab79b2b83bdda555ca3d76079b5f66/5462e4ecbbcb5e2b.png', '', '', '110', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1292', '火猫电影3', 'http://live-tx-hdl.huomaotv.cn/live/4bgtCR24082.m3u8', '#', '#', '6', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/0fe711102be80eb9/b7b5b82399ac0e2fc254dc8fce82d567/f94c8ae9916248d4.png', '', '', '43', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1293', '火猫电影4', 'http://live-tx-hdl.huomaotv.cn/live/buxKMY24084.m3u8', '#', '#', '6', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/ecbf181451b6d1de/1815e33a38ac3c3101b3296a89ddb57d/b8da17f47e7296b3.png', '', '', '45', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1294', '火猫电影5', 'http://live-tx-hdl.huomaotv.cn/live/2epqPZ24085.m3u8', '#', '#', '6', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/1e1b9769dc6e463e/b0b4fcc1bd5c72744653dc197e56d945/47c86d7a3af40833.png', '', '', '16', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1296', '火猫电影7', 'http://live-tx-hdl.huomaotv.cn/live/gEFTWY23105.m3u8', '#', '#', '6', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/04bb417e8a0acc3f/2b3404ec5b3b0ca8c59cb3bbb0b3bf54/5c8f9f841e042a17.png', '', '', '21', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1324', 'CHC家庭影院', 'http://zzcs1.ott.henancatv.com/mlive/172_30_100_78_/cdn_proxy/os_ott_henancatv_com/live/CHC-JT/3.m3u8', 'rtmp://202.195.240.8:1935/iptv/chctv', '#', '6', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/ae51a9b864aa118c/e55528847692f31bb42a32350172cd36/370226a103aae213.png', '', '', '9', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1360', '3D试验', 'http://stream.slave.nx96200.cn:13164/playurl?accesstoken=R58434870U3AC38289K774C53FEM30EEBF9W210049&programid=4200900168&playtype=live&auth=no&playtoken=31612AXOAAZGYAZ1?&.ts', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/c51f9e0913ad03d3/59dd2d313d6ea82d054b8179f7fdf5d0/178969c287cd4259.png', null, null, '11', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1362', '施瓦辛格', 'http://ws.streamhls.huya.com/huyalive/30765679-2484192822-10669526927447949312-2789274572-10057-A-1511403386-1_1200/playlist.m3u8', '#', '#', '6', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/4c8e3dd932db78e0/df6d190818124b4a862090b94c463768/8088941f122041df.png', '', '', '20', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1363', 'BestTV NBA7', 'http://183.252.176.10/PLTV/88888888/224/3221225908/index.m3u8', '#', '#', '3', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/5912d89494eb7cc2/8287049165307ddb83c46dd0894e3f13/d449e8bc543a4a37.png', '', '', '10', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1364', '影帝古天乐电影合集', 'http://47.95.172.168/channel/2803.m3u8', '#', '#', '6', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/aa4bc9ad64609d15/afc67ff4b4623089fb02df1865e291f6/4cc263d80f5ae3a5.jpg', '', '', '89', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1368', '芒果纪录片3', 'http://47.95.172.168/channel/2140.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/b29db0825cc96de6/afb939a9b97e557285b69add5be1d3b6/36552fc2ae8f51f3.png', null, null, '20', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1369', '芒果纪录片9', 'http://47.95.172.168/channel/2153.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/616c176464f3ec23/2802c82eb29d76176a83cd48b0fc2451/46c20bfed5223a60.png', null, null, '18', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1370', '美食中国', 'http://47.95.172.168/channel/2008.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/a15526d73d2df0af/8cc8fb863767395024be833826002c7d/2a8d9d5f021b7e43.jpg', null, null, '18', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1371', '玄幻仙侠剧', 'http://47.95.172.168/channel/1221.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/c5d50e92a62eb1af/a7cc5053477bbaf8a1035c91bd8f0030/2a34f47d3e6b02bf.jpg', null, null, '23', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1372', '新剧速递', 'http://47.95.172.168/channel/1256.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/4129304d04cff4cb/688585ffd88c45fd9fb165a9b7dfef2a/9f8ac7d69b22a42c.jpg', null, null, '11', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1373', '芒果电视剧3', 'http://47.95.172.168/channel/1647.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/c010628220fff0da/b2d0a72d7226cd5d601e245b1e1c4924/be17445a1eb32fa6.png', null, null, '6', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1374', '因为遇见你', 'http://47.95.172.168/channel/1653.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/1376d4e67457e295/e03e238ddc446aaf13d4bfa0321f86f0/42b34ec79064b316.jpg', '', '', '11', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1375', '芒果电视剧5', 'http://47.95.172.168/channel/1913.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/a49477811ea58f81/24ba7af69931ffa621ea261853c45e35/3429a9363a0752f1.png', null, null, '8', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1377', '特种兵之火凤凰', 'http://47.95.172.168/channel/1951.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/46fc36d015c5a2fa/a909440dbb3c354a313fa9a7f8ae9c61/42ab8b979811be6b.png', null, null, '12', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1379', '浪花一朵朵', 'http://47.95.172.168/channel/2063.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/f935853fc0abaaa1/019e7255eb7cc2515b0f8f623d717ca8/ade041f6b79c29ce.jpg', null, null, '10', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1380', '新还珠格格', 'http://47.95.172.168/channel/1569.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/3dc5cc06467053d6/dfc1e4003741d47c37845557f7ff2fbf/8eba7589c8529d27.jpg', null, null, '10', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1381', '芒果电视剧10', 'http://47.95.172.168/channel/2100.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/fb465909b8627e49/12b4a32d1030164c2fec0fc3a783bb34/136f04c36ca30eaf.png', null, null, '8', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1383', '芒果电视剧12', 'http://47.95.172.168/channel/2126.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/148aa62ef779ebe2/62f5278518c983eab472358236b03650/6b7f7343b73c31b0.png', null, null, '4', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1384', '芒果电视剧13', 'http://47.95.172.168/channel/2127.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/3a56cc8f30a06a39/6fe53361b0f3553f5aba61339be8c566/7aeb08c044e8f59a.png', null, null, '3', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1386', '芒果电视剧15', 'http://47.95.172.168/channel/2176.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/a032d83279b4edbf/a2cf3e9ab37291f766cadef07c67a314/389a824fd8fa0cd1.png', null, null, '7', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1388', '大话西游', 'http://47.95.172.168/channel/2181.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/781a0d5b385137b6/e05971f024a4d4f1dbdbb8d9c6cd7287/6c254897549e524b.jpg', null, null, '8', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1389', '芒果电视剧18', 'http://47.95.172.168/channel/2141.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/f2fa82b33410c3a3/253129ab6fcc0a473cf7842c207445d9/456cecd7be03c53a.png', null, null, '3', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1393', '2018变形计', 'http://47.95.172.168/channel/1812.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/e157d5dc5efabb63/696f251595c88a01ab1f3ca10acd4b12/e5706b77e36cdd5d.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1394', '爸爸去哪儿5', 'http://47.95.172.168/channel/2118.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/20d0c7b7c882f912/e58f35f1ff6bf71996f6441cbed45569/8217b98f989f0d90.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1395', '极限挑战', 'http://47.95.172.168/channel/1612.m3u8', '#', '#', '5', '0', '0', '1', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/7795154c23b1ae94/65fe1d6986ec9af91efc1b615012fad9/d233b3f3ca069dd1.jpg', '', '', '12', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1396', '花儿与少年', 'http://47.95.172.168/channel/1795.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/045b26b23b5c8d82/ed514de05976dbd81e70bbafc137b304/a9c9637c0ac6c91f.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1397', '休闲垂钓', 'http://47.95.172.168/channel/1225.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/a42f273162fa8e2b/ad64552ffbe65f63d392a0581a7e0f14/4a0d286bd592ec54.jpg', null, null, '11', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1398', '汽车视界', 'http://47.95.172.168/channel/1227.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/3e0d2e7e5862fd8f/95a070edd2935c0333e975d6dfed7f8e/7a591f3d37231bd6.jpg', null, null, '7', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1399', '美课美妆', 'http://47.95.172.168/channel/1230.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/b3aa2d7ada2bf332/858660fbf3268443df24fe26d15929c5/e1a781e9c1ead123.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1400', '亲爱的客栈', 'http://47.95.172.168/channel/2180.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/7dd93050e5b97c8b/b813b6632c626a9d1f222d7432ca15c9/e43b1e0ff82cdbaa.png', null, null, '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1402', '芒果TV自制', 'http://47.95.172.168/channel/1234.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/6ded8e4119ca5c27/25af6803f43f343cdf406179fe73acb9/8a8f45606449d731.png', null, null, '2', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1403', '综艺3', 'http://47.95.172.168/channel/1600.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/23fa4ec141386c01/33b45d5cbe1e3bb7146a4e4c9fd285ce/7a41719745ed7ff6.png', null, null, '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1404', '爱情保卫战', 'http://47.95.172.168/channel/1490.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/4c7318c9d14f1ac6/f4826d46646d2551934cdec56d450281/ac096f0755dac1f2.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1405', '寻情记', 'http://47.95.172.168/channel/1652.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/2f30c2fd0317b8d6/e244d08c4f4f65fda637c2c00dcc461e/84c12ec671e5a06a.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1406', '搞不懂', 'http://47.95.172.168/channel/2192.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/3238b5fdacca32ae/65f7486caf88ee590554ad2558c20505/cf185f4ed40148ae.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1407', '搞事情', 'http://47.95.172.168/channel/2160.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/4fd1b6aa89e80040/cb6b61e608e525dd0c48d6d0f656b10e/4c01ad9f83cbc1e9.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1408', '广场舞', 'http://47.95.172.168/channel/1107.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/17a64601edd62303/8f26e21966c27f3253b79303779db833/f34a053df5a6c111.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1409', '有一种情歌叫薛之谦', 'http://47.95.172.168/channel/1654.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/88447d3a2c4e5023/7d32431a087518dd01b357969f6d0378/12253e91eff0eb86.png', null, null, '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1410', '美食', 'http://47.95.172.168/channel/1661.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/8c6dcc4e048cbce9/8d9881c6880303e1191f32caf4763bc0/75af3224595766ee.png', null, null, '6', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1411', '王牌对王牌', 'http://47.95.172.168/channel/1664.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/30cd1e36baf6f9f1/cc50d66e55e0998422c4b69193b1673a/7988f7542e561ed5.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1413', '凤凰传奇', 'http://47.95.172.168/channel/1616.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/dbbdb5a07c8faafe/103dc7fab9ce3274b37d4650ab6bcd16/657b72b343cb9595.png', null, null, '6', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1414', '韩剧', 'http://47.95.172.168/channel/1240.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/60236cf6e6d29208/7f26b5b3a7700cbda944d66d3c976eb0/0f610c3263a377b1.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1415', '热播综艺', 'http://47.95.172.168/channel/1242.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/f809a98d985ac44a/9ec8527788eed38edc5a0f4116e3da12/cefa79263efef33f.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1416', '快手早餐', 'http://47.95.172.168/channel/1426.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/96310d27b1bab989/4e95a1b41999070b5b6479f4c44f84b3/573414c87f869185.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1417', '66款爆好吃的面', 'http://47.95.172.168/channel/1428.m3u8', '#', '#', '5', '0', '0', '1', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/44cc7b10a092c533/1d72443a8597e9914b698ccb9137b994/6f50b25962c7cd6a.png', '', '', '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1420', '明星潮流', 'http://47.95.172.168/channel/1105.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/0395069857b7fb1b/1093aa2be00140157232a90ea7d39190/5f9ee07bcc7c5967.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1421', '英雄联盟', 'http://47.95.172.168/channel/1106.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/f9b146a31e4930ef/3a802cf05015ec81914a6080908b9aaa/dd03092a18d1f435.jpg', null, null, '11', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1423', '日剧', 'http://47.95.172.168/channel/1785.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/c5a4273ee913c53d/e4b72fadbfc6cb7fb0fef4770f0f1b30/44d7bf45ab7fb580.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1424', '李克勤', 'http://47.95.172.168/channel/1786.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/fe1bae53109cfed9/5c4a25beb1e0da4bb9806a6643e2082f/eca9f8b42572063e.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1425', '我想和你唱', 'http://47.95.172.168/channel/1860.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/19a18e10f093102f/17a0f25ff9e0512ecd9c60b899bb18ff/270d69e637cf90a0.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1426', '王者荣耀', 'http://47.95.172.168/channel/1869.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/e7634a10a3e860b1/6e2cd0276487b5566f2f2c810533a658/6f68402214344732.png', null, null, '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1428', '搞笑游戏', 'http://47.95.172.168/channel/1935.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/3a91a097116d6c8b/32d41e0c81dd1e9c0b9092dbc5e3a91d/6df24256675003d8.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1430', '英雄联盟', 'http://47.95.172.168/channel/1969.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/c1708c9a1348a9e2/e67d590ecec9e313d7c85afeba2cef18/2e33653ab0b3d9c2.png', null, null, '8', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1432', '我是歌手', 'http://47.95.172.168/channel/1978.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/5c9a093b636b1b4f/c70150cb9d94e34a24ccdcc021df0015/2a0e8d5161b07787.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1433', '《歌手》纯享版', 'http://47.95.172.168/channel/1565.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/f6717917669866b9/e4f6adcd511fa8f8a1280bb57e980da6/6d54eb0f20cbb95e.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1434', '我的世界', 'http://47.95.172.168/channel/1993.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/e45a1dccf92a9b67/dafb107020ad3840ade4ebc2e75e9713/c947671a375721ca.png', null, null, '6', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1435', '快乐大本营', 'http://47.95.172.168/channel/2014.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/140132c1a7044bd6/f7175e6d232cf27754d4c4f1a954fc25/689522435f35fedf.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1436', '中餐厅', 'http://47.95.172.168/channel/2020.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/8e9e7cd518cf3ba3/48c8870f6827b0e76e61cbdbe460405f/6922836aa5cff005.png', null, null, '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1437', '狼人杀', 'http://47.95.172.168/channel/2039.m3u8', 'http://47.95.172.168/channel/1970.m3u8', '#', '5', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/ece15b23555793f8/ba30f202afc924eb049251c63a428a40/9b576d20a86ec031.png', '', '', '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1438', '我们来了', 'http://47.95.172.168/channel/2046.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/1d2054adcb544070/cde904f3bac87ab0352decc1e8f3d97f/cdb53af60cbe1f53.jpg', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1439', '办公室小野', 'http://47.95.172.168/channel/2057.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/b1ed411c95413d47/45efffc25e1af51960fbbc1c544a8952/85294af287c36db8.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1443', '爆笑虫子', 'http://47.95.172.168/channel/1525.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/75d33f05e175dad8/cf68092d6f61dbc6146bc30c345d31f3/468fec764a1970e1.jpg', null, null, '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1445', '明星大侦探', 'http://47.95.172.168/channel/1546.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/053126ddfffc6ab7/75ef39662e12cf5230a977a5453a6a26/8d79a77caaf14322.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1446', '向往的生活1', 'http://47.95.172.168/channel/1552.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/aab06e3e504518af/a70bf9613e7e32e6dc377cb284d45f34/25140456dd4cceef.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1447', '幼儿', 'http://47.95.172.168/channel/2124.m3u8', 'http://rotation.vod.zlive.cc/channel/1526.m3u8', 'http://rotation.vod.zlive.cc/channel/1837.m3u8', '5', '0', '0', '1', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/ae802f2d6e6df33a/9e03c6aa0dd72032e4b68127febacb9b/c99fea1ba5eb0fe8.png', '', '', '3', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1448', '美容', 'http://47.95.172.168/channel/2125.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/7ccb6ceb1b5bcd7d/61b994a47bfdaa89f9d0851d7a3540c1/41ad626b4ebd4e01.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1450', '我的冒险世界', 'http://47.95.172.168/channel/2148.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/bc6c8ec976e7e344/ee61d0d2bd54838b0175d23af8e2d1e2/bbdce27998c98aeb.png', null, null, '2', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1451', '微体', 'http://47.95.172.168/channel/2151.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/1517ca975e0eeb7a/0833cf577619dd021082b7ff80ad0bcb/f679f601f8fc45c8.png', null, null, '4', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1452', '七龙珠', 'http://47.95.172.168/channel/2174.m3u8', '#', '#', '23', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/acb55f9af76808c5/fd5522dcdb519fdebfde2fdca264b06c/6628212cc6589ad4.jpg', '', '', '10', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1453', '芒果老新闻', 'http://47.95.172.168/channel/2185.m3u8', '#', '#', '8', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/ea160217291d6ae4/be42a5fa011dc102917ad2565258f410/a86a57d6cfa47a8f.png', '', '', '1', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1455', '生活小妙招', 'http://47.95.172.168/channel/2190.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/71741bca0c944a87/2872c0d4efd2a82ded4531c827b20fc9/3e120b756ec0e5ad.jpg', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1456', '喜羊羊', 'http://47.95.172.168/channel/1088.m3u8', '#', '#', '23', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/35ae540ac24d7745/98bdf2bcfb3e54214363a6d8db55d721/26989cf1c4232659.png', '', '', '6', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1457', '猪猪侠', 'http://47.95.172.168/channel/1089.m3u8', '#', '#', '23', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/687ad9eeb9a7c123/0dae5a5b510cb307463ea52c5e0d53b5/e515b0ba30e9d38e.png', '', '', '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1458', '哆啦A梦', 'http://47.95.172.168/channel/1092.m3u8', '#', '#', '23', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/dda594513217fac9/0bbe56e5248d576c78fb8dc1b14a8229/3e927b729c7a792b.jpg', '', '', '15', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1459', '蜡笔小新', 'http://47.95.172.168/channel/1093.m3u8', '#', '#', '23', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/9b0884e765a38193/2e0947d52b939d6713a32e091204b801/8d8105679c4e0a12.jpg', '', '', '13', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1460', '日韩动漫', 'http://47.95.172.168/channel/1184.m3u8', '#', '#', '23', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/20858f1e658fbbcf/d3f79a73df858e816fc6754722b8e76e/d6808d9ee828e7e6.png', '', '', '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1461', '欧美动漫', 'http://47.95.172.168/channel/1185.m3u8', '#', '#', '23', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/acb3e29171829ebd/25544aa20017060c38e17df78250541c/15ee120d5a27f363.png', '', '', '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1462', '游戏', 'http://47.95.172.168/channel/1220.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/c46269770def083a/ca28a5ad93d79e1827c2f59fb929532b/85be1734de99d766.png', null, null, '4', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1463', '熊出没', 'http://47.95.172.168/channel/1243.m3u8', '#', '#', '23', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/17d6278aaf26be24/980654e102a111fccea7785b31f6a028/bfa54af07d6f79ce.jpg', '', '', '10', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1464', '快乐购', 'http://47.95.172.168/channel/1244.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/d47b8fbe29094511/7e484d398c76c406a99509dcdbfe1812/2905caf51d940196.jpg', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1465', '大头儿子', 'http://47.95.172.168/channel/1263.m3u8', '#', '#', '23', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/f42ecaa3e45ed749/f2894e6427e68694ed58c6548d81a95e/1c531e10c48ae182.png', '', '', '7', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1466', '新番连载', 'http://47.95.172.168/channel/1266.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/2181d94fba9a1d2d/e2b5f6fb75f8ab08cf92409f112c49c4/893e1d78b7b14a5b.jpg', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1467', '樱桃小丸子', 'http://47.95.172.168/channel/1466.m3u8', '#', '#', '23', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/95dd3a77fd416d63/afabb15d0eceeeb1a5c7ec110ae659b9/901e8729b445a22c.jpg', '', '', '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1468', '熊熊乐园', 'http://47.95.172.168/channel/1901.m3u8', '#', '#', '23', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/f25d4fc35c2d0ea8/4a654de26f7309c118cfde0cbdf1a52d/404222c573903b38.png', '', '', '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1469', '贝瓦儿歌', 'http://47.95.172.168/channel/1820.m3u8', '#', '#', '23', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/1979ffdc7fc3671f/5aba5e9fdaed9604390c3bde9631ab32/a9acb8eae773a988.jpg', '', '', '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1470', '兔小贝儿歌', 'http://47.95.172.168/channel/1821.m3u8', 'http://rotation.vod.zlive.cc/channel/1524.m3u8', '#', '23', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/b1e27f3041bb8fa1/ecdbe9e9d348cba233d85bb3d7939bc0/2f7400ccb8b0da29.png', '', '', '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1472', '海绵宝宝', 'http://47.95.172.168/channel/1910.m3u8', '#', '#', '23', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/4d8d8a27728f1616/753eefece9d9025d168359f1c037f24f/d6ca3d92d9e79b24.png', '', '', '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1476', '动画片4', 'http://47.95.172.168/channel/1981.m3u8', '#', '#', '23', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/5832b159f7b32b3d/3a1aa9343dbb994b186c9b923fc7eb4d/f8e7b4cfbeb234b7.png', '', '', '9', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1477', '动画片5', 'http://47.95.172.168/channel/1936.m3u8', '#', '#', '23', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/c3bb9214431dec7c/a7d1ebcfeca73236efc508ca765efb76/d555665dbfcdb01a.png', '', '', '7', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1478', '动画片6', 'http://47.95.172.168/channel/2041.m3u8', '#', '#', '23', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/e5a5d1fa6871e3e0/1b1cb0d41dc5ffce20a34acf77d2fc93/2d6cec893d6065c3.png', '', '', '8', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1480', '国漫专区', 'http://47.95.172.168/channel/1216.m3u8', '#', '#', '23', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/b0857d821d979984/d57793465948994852e410a3e0d631eb/ea9f49967377fa2c.png', '', '', '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1481', '动画片9', 'http://47.95.172.168/channel/1995.m3u8', '#', '#', '23', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/31bb6a357c5653f4/0a513402938fd77f489dde05f53b59ff/d2ec29bf410a0ebb.png', '', '', '13', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1483', '动画片11', 'http://47.95.172.168/channel/2158.m3u8', '#', '#', '23', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/fd1183c917b83ba1/a53369005018e43c7ba054da97e273e5/4bbcf190aa5a1bb6.png', '', '', '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1484', '动作电影', 'http://47.95.172.168/channel/1202.m3u8', '#', '#', '6', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/81aa5aa1989ff76f/8f8e5f467814c499b6921deeb478eb05/ed7934388c473295.jpg', '', '', '76', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1485', '最新院线', 'http://47.95.172.168/channel/1258.m3u8', '#', '#', '6', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/8438e7c4705c382f/69a2fc2400288e1f1d065bb34a7e82eb/8d1b6f88112ee809.jpg', '', '', '121', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1486', '超级飞侠', 'http://47.95.172.168/channel/1262.m3u8', '#', '#', '6', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/63cdcaf145863d57/408d00bafbe9eee9cb0dfa84f66dc1d6/6825f5aa726cbf55.png', '', '', '57', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1487', '恐怖电影', 'http://47.95.172.168/channel/1918.m3u8', '#', '#', '6', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/56531bdc6a5bd4b1/7cc9210fd9633fa40e14c6da14abb1c1/99e4838f269fd469.jpg', '', '', '106', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1488', '芒果电影6', 'http://47.95.172.168/channel/1982.m3u8', '#', '#', '6', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/858e5805fa89a8ad/0658d91a0adb11e93b112928019736a4/b15caabd794ad7f4.png', '', '', '41', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1489', '经典特工电影', 'http://47.95.172.168/channel/2085.m3u8', '#', '#', '6', '0', '0', '1', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/59396f7414f89991/d14c6fa956924bc1bb3d1421802dbb6c/dd4baee29d2f2f8e.jpg', '', '', '74', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1491', '爸爸去哪儿5', 'http://47.95.172.168/channel/2118.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/5bc521054e37edce/6cc6a86ec7be0abb558819aae187a240/cf50cf81b10ad1e3.jpg', '', '', '27', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1492', '香港电影', 'http://47.95.172.168/channel/1086.m3u8', 'http://acm.gg/bili.m3u8?id=57672', '#', '6', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/c81545110d3c55bf/7244a8086634145d80568f6743b6126c/b61be9f97c55ba85.jpg', '', '', '81', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1493', '轻松喜剧', 'http://47.95.172.168/channel/1200.m3u8', '#', '#', '6', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/188001cc2188fd20/0c43e2ccc15619b91e7281e2bfcaf529/4ebeb7b4b8b60b27.png', null, null, '58', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1494', '悬疑犯罪', 'http://47.95.172.168/channel/1201.m3u8', '#', '#', '6', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/dab326c968549761/f859172f2942db005b84fd06a6f4bd86/f9185656ab58b32f.png', '', '', '93', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1495', '成龙电影全集', 'http://47.95.172.168/channel/1259.m3u8', '#', '#', '6', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/6e542b35ae6fdffd/3b5354bbf0f8cf2df1e03cc77d4bbd6b/c2cf358dbcb7ed00.jpg', null, null, '55', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1496', '电影周星驰', 'http://47.95.172.168/channel/1260.m3u8', '#', '#', '6', '0', '0', '0', '100000', '0', '0', null, 'http://webapi.abigfish.net/static/upload/c4e8c60e9fec93d9/379d01ad8216d9993cbddfc0631041f3/bebf720bf2d72e7f.png', null, null, '117', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1499', '韩-CTS', 'http://111.118.21.79/etv1/phd28/playlist.m3u8', '#', '#', '17', '0', '0', '0', '999992', '0', '0', null, 'http://webapi.abigfish.net/static/upload/6cc47869848a6355/889481c0ec34408ca30977d091967e8f/2d71d5fd9da6b501.jpg', null, null, '6', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1500', '韩-KCTVN', 'http://122.202.129.136:1935/live/ch4/playlist.m3u8', '#', '#', '17', '0', '0', '0', '999992', '0', '0', null, 'http://webapi.abigfish.net/static/upload/279a8a4af46de7ca/f29071434c2aa9d9c721af033e9cb9e7/18f1ce3ca2c4e09c.jpg', null, null, '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1501', '韩-KTV', 'http://218.38.152.69:1935/da_live/72136989/mp4:ch001/playlist.m3u8', '#', '#', '17', '0', '0', '0', '999992', '0', '0', null, 'http://webapi.abigfish.net/static/upload/1b4506388a06b314/14a13e5ccf7eb3abc3a1f23a07d6b737/6ed3aae61d18a7a6.png', null, null, '9', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1502', '韩-MTN', 'http://111.118.21.79/etv1sb/phd18/playlist.m3u8', '#', '#', '17', '0', '0', '0', '999992', '0', '0', null, 'http://webapi.abigfish.net/static/upload/63c34979acf3fe9e/f1f8faa3f43ca5f7c81779aa7f1a0eaf/d914ba5aea36416c.png', null, null, '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1503', '韩-PAX', 'rtmp://124.139.232.61:1935/live/livestream', '#', '#', '17', '0', '0', '0', '999992', '0', '0', null, 'http://webapi.abigfish.net/static/upload/ec8da1b5980e5c90/358cfe8ffee2710854aba384bebf7d76/045bc3dad7251d5b.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1504', '韩-TVIS', 'http://111.118.21.79/etv1sb/phd551/playlist.m3u8', '#', '#', '17', '0', '0', '0', '999992', '0', '0', null, 'http://webapi.abigfish.net/static/upload/025482093f50e113/ff4a3e6ab33c7e5496b5e1ca75f17e8b/7d8eb8688c0b13e6.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1505', '韩-YTN', 'rtmp://112.175.248.34:1935/ytn/_definst_/ylivehd_20140419_1', '#', '#', '17', '0', '0', '0', '999992', '0', '0', null, 'http://webapi.abigfish.net/static/upload/b334cac4ee40f5cc/da7dc3d9f1e4f388edf4f8280172ea66/4ef938bf3e540172.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1521', '好消息2', 'http://210.59.248.55/hls-live/goodtv/_definst_/liveevent/live-ch2-3.m3u8', '#', '#', '18', '0', '0', '0', '100000', '710000', '0', null, 'http://webapi.abigfish.net/static/upload/ad93b7ce8ab84b26/7ec3b64b4daba00f91ed4b59d6ea1644/5a010c6b0b2811e5.jpg', null, null, '6', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1523', '宏观卫视', 'http://mobile.ccdntech.com/live/_definst_/vod62_Live/live1/playlist.m3u8', '#', '#', '18', '0', '0', '0', '100000', '710000', '0', null, 'http://webapi.abigfish.net/static/upload/e0e9aac8a8b927ec/ef9e62a1633573d52242ad2516cef25e/372cfcf1477a57aa.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1524', '金色频道', 'http://27.148.240.200/PLTV/88888888/224/3221226009/index.m3u8', '#', '#', '18', '0', '0', '0', '100000', '710000', '0', null, 'http://webapi.abigfish.net/static/upload/dc4a78ddea324990/6b9ccfcbed7f6442059e95ce5b8e879e/298c322efd8c665f.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1526', '靖天电影', 'http://61.58.60.247:9000/live/245.m3u8', '#', '#', '18', '0', '0', '0', '100000', '710000', '0', null, 'http://webapi.abigfish.net/static/upload/02d4ad74e4109909/74be404efcd00ec173c66ed635c83ba1/316b28524a31b12f.png', null, null, '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1527', '靖天映画', 'http://61.58.60.247:9000/live/244.m3u8', '#', '#', '18', '0', '0', '0', '100000', '710000', '0', null, 'http://webapi.abigfish.net/static/upload/218ff969587194ea/fb574592f11f6e6b82f59cadb0056787/dfc4f95ac5811796.png', null, null, '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1528', '靖天综合台', 'http://61.58.60.247:9000/live/242.m3u8', '#', '#', '18', '0', '0', '0', '100000', '710000', '0', null, 'http://webapi.abigfish.net/static/upload/b7a7a9afa2a17fa7/17874311469270fda6f46507ef0020cf/8c5e45b9fb2c27a8.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1529', '壹新闻', 'http://d2e6xlgy8sg8ji.cloudfront.net/liveedge/eratv2/chunklist.m3u8', '#', '#', '18', '0', '0', '0', '100000', '710000', '0', null, 'http://webapi.abigfish.net/static/upload/2842ad89a82393cd/5b7f62fd3bb7afe95c75bc339f546fca/da58819fe14baa77.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1530', '台视', 'rtmp://wv4.tp33.net/sat/tv071', '#', '#', '18', '0', '0', '0', '100000', '710000', '0', null, 'http://webapi.abigfish.net/static/upload/98d09c52d91d5b3b/a72e4c9cc16996a020e7f31e77cd39cd/e40e5843ddca6e8b.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1531', '台湾壹新闻', 'http://d2e6xlgy8sg8ji.cloudfront.net/liveedge/eratv3/playlist.m3u8', '#', '#', '18', '0', '0', '0', '100000', '710000', '0', null, 'http://webapi.abigfish.net/static/upload/b9101847ce161df5/7c65b56b80771189cb25605bb7380864/f4af64b7d4b493f0.jpg', null, null, '9', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1533', '德国oo', 'rtmp://62.113.210.250/medienasa-live/ok-salzwedel_low', '#', '#', '19', '0', '0', '0', '999991', '0', '0', null, 'http://webapi.abigfish.net/static/upload/73b152044bacf635/8418a21136be3a8e8449f2e02161e904/ef51b4c81e2966ee.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1535', 'SKY', 'http://skydvn-nowtv-atv-prod.skydvn.com/atv/skynews/1404/live/04.m3u8', '#', '#', '19', '0', '0', '0', '999991', '0', '0', null, 'http://webapi.abigfish.net/static/upload/ee9729d36ead2105/6fa75f66c5c7a924bc0ac5fa34748484/ef7fc4c4620700e4.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1538', 'lodon', 'http://bcoveliveios-i.akamaihd.net/hls/live/217434/3083279840001/master.m3u8', '#', '#', '19', '0', '0', '0', '999991', '0', '0', null, 'http://webapi.abigfish.net/static/upload/bee8b66bf9167983/003870d045f2acb15b122f7688ed82fe/3d9ff4cfc37c36a6.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1550', '芜湖新闻综合', 'http://live1.wuhubtv.com/channel1/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '340000', '0', null, 'http://webapi.abigfish.net/static/upload/589614f4059c694c/d0fd49e71249d610d118d71bddb5e9c1/d0c419a14fa55cf5.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1552', '芜湖公共频道', 'http://live1.wuhubtv.com/channel3/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '340000', '0', null, 'http://webapi.abigfish.net/static/upload/9271858951e6fe95/04d1f05ae857600114d23efe606690c9/4bbe315fa6455bf2.jpg', null, null, '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1553', '芜湖教育频道', 'http://live1.wuhubtv.com/channel4/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '340000', '0', null, 'http://webapi.abigfish.net/static/upload/bc54502c934c7f8f/8f2031d703870a262a47469d348efec9/076811929f292fe5.jpg', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1554', '蚌埠新闻综合', 'http://newvod.ahbbtv.com:1935/live/smil:xwpd_copy.smil/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '340000', '0', null, 'http://webapi.abigfish.net/static/upload/b62d8976329e9c1c/304baa4427f8e0a20fd4fa8a47ec557c/40cbbd0273d5083b.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1555', '蚌埠生活频道', 'http://newvod.ahbbtv.com:1935/live/smil:shpd_copy.smil/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '340000', '0', null, 'http://webapi.abigfish.net/static/upload/0ac1cef7072226a7/07d9d83dd0d7b09f35c76c2cf6a1f61a/acd6e62b771c4cea.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1556', '蚌埠公共频道', 'http://newvod.ahbbtv.com:1935/live/smil:ggpd_copy.smil/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '340000', '0', null, 'http://webapi.abigfish.net/static/upload/9e9e1f548cc480de/4e1582d52f0757e60c2532fbf898bdd4/fd82b347dcdf28f2.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1557', '蚌埠文教频道', 'http://newvod.ahbbtv.com:1935/live/smil:wjpd_copy.smil/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '340000', '0', null, 'http://webapi.abigfish.net/static/upload/d3325d6b72d57da4/120c81aa3f80d366dd17ee9e2355df4f/69fd072a5bd3334d.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1558', '蚌埠公交频道', 'http://newvod.ahbbtv.com:1935/live/smil:gjpd_copy.smil/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '340000', '0', null, 'http://webapi.abigfish.net/static/upload/9e87a8df8416eee8/f1718e5958555834f324ab5a4742d821/ab16a9014ab2a9a3.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1559', '淮北新闻综合', 'http://live1.0561rtv.com:9600/live/live1/800K/tzwj_video.m3u8', '#', '#', '4', '0', '0', '0', '100000', '340000', '0', null, 'http://webapi.abigfish.net/static/upload/00a88476f623e4b5/54a2277fa4de42a0a8da3378b39d078f/77361620c9481ffb.png', null, null, '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1560', '淮北公共频道', 'http://live1.0561rtv.com:9600/live/live2/800K/tzwj_video.m3u8', '#', '#', '4', '0', '0', '0', '100000', '340000', '0', null, 'http://webapi.abigfish.net/static/upload/57f70fd59b83a107/7d732809062d9adadc1ed48a112f5314/9000b822696a7b65.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1561', '淮北教育频道', 'http://live1.0561rtv.com:9600/live/live3/800K/tzwj_video.m3u8', '#', '#', '4', '0', '0', '0', '100000', '340000', '0', null, 'http://webapi.abigfish.net/static/upload/79d5c37f4e6b4414/bd171d9efdb9191da7fefd3af17b1916/91bb2f98681a7efb.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1562', '淮北都市频道', 'http://live1.0561rtv.com:9600/live/live4/800K/tzwj_video.m3u8', '#', '#', '4', '0', '0', '0', '100000', '340000', '0', null, 'http://webapi.abigfish.net/static/upload/a007685ecc0ccf82/0b8ac1d6e77f69fd8fb276fc273796ca/929b7fc45c2bc661.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1563', '六安新闻综合', 'http://live.china-latv.com/channel1/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '340000', '0', null, 'http://webapi.abigfish.net/static/upload/626c517f7abccd66/d37ae7076e605ba5556811a9a32394a3/8834502b0c621a42.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1564', '六安公共频道', 'http://live.china-latv.com/channel2/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '340000', '0', null, 'http://webapi.abigfish.net/static/upload/9242b325df55f86b/a974e86709411eb6850972b9b9e9e1d8/69107e2498745386.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1566', '铜陵公共频道', 'http://live.tlbts.com:2935/live/live102/1000K/tzwj_video.m3u8', '#', '#', '4', '0', '0', '0', '100000', '340000', '0', null, 'http://webapi.abigfish.net/static/upload/6a37887d2b55c87a/d45dabf3ceb968b0bc59e38bc67f18b4/ab36cd450302b8c6.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1568', '肥西新闻综合', 'http://60.168.145.236:1935/live/xinwen/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '340000', '0', null, 'http://webapi.abigfish.net/static/upload/879bc75de8d1dba8/957dd08033933509351773c480cc6dde/4ba9bad5d14fef68.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1569', '肥西生活频道', 'http://60.168.145.236:1935/live/movie/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '340000', '0', null, 'http://webapi.abigfish.net/static/upload/8e98523ffa239808/c6301e59e67d9933c34aa8ab5a4867a7/af19d8ef53d36970.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1571', '萧县新闻综合', 'http://60.171.238.200:8199/live/XWZH_896.m3u8', '#', '#', '4', '0', '0', '0', '100000', '340000', '0', null, 'http://webapi.abigfish.net/static/upload/b94c567e9c5bb8b6/9a1eb95a11b7a40a047e3d574c19c0f4/af43ee397793351a.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1572', '萧县经济生活', 'http://60.171.238.200:8199/live/JJSH_896.m3u8', '#', '#', '4', '0', '0', '0', '100000', '340000', '0', null, 'http://webapi.abigfish.net/static/upload/94abd409b6c14e53/c724142657febb87e7adbf5eee2b1ade/300bacfd5dcdeda6.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1573', '萧县农业旅游', 'http://60.171.238.200:8199/live/NYZB_896.m3u8', '#', '#', '4', '0', '0', '0', '100000', '340000', '0', null, 'http://webapi.abigfish.net/static/upload/f5a6556225bb4e85/ce5be5dda9d05b8ad58892501363fc73/5d3c12592162e3c2.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1576', '含山新闻综合', 'http://live.hswltv.com:1936/live/live102/500K/tzwj_video.m3u8', '#', '#', '4', '0', '0', '0', '100000', '340000', '0', null, 'http://webapi.abigfish.net/static/upload/55568be138ba49cd/d386c492e5b341a9b9531e7d2a8f38fe/8dcc73f58cae9530.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1577', '含山影视生活', 'http://live.hswltv.com:1936/live/live103/500K/tzwj_video.m3u8', '#', '#', '4', '0', '0', '0', '100000', '340000', '0', null, 'http://webapi.abigfish.net/static/upload/39da688fbab76d0a/5e1f64ddb803ad3796e215fcdd3532d1/40b8af71e4c73931.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1578', '岳西综合频道', 'http://58.243.4.22:1935/live/zonghe/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '340000', '0', null, 'http://webapi.abigfish.net/static/upload/e903fd66f2770ea5/dca04defd8cda94a3d94d7a9d5b08268/98e1203a05d83b84.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1579', '岳西影视频道', 'http://58.243.4.22:1935/live/yingshi/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '340000', '0', null, 'http://webapi.abigfish.net/static/upload/042886829869470b/75f63dddfd7e9d9d0c1974b548f16f78/7c3d9fa087ebd333.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1580', '岳西图文频道', 'http://58.243.4.22:1935/live/tuwen/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '340000', '0', null, 'http://webapi.abigfish.net/static/upload/85cc5d67d3e0b074/6f7e8796a4566d9769ccd6d1687e7a8f/6190103e58f98d56.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1581', '东至新闻综合', 'http://223.247.33.124:1935/live/zonghe/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '340000', '0', null, 'http://webapi.abigfish.net/static/upload/7ddd00ed8d1809f0/7b426aa9346c56771a551bade995c83b/fbab1649151b262c.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1582', '东至影视频道', 'http://223.247.33.124:1935/live/yingshi/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '340000', '0', null, 'http://webapi.abigfish.net/static/upload/eb098ace12a927d9/9d40b3f0aa9dbb78aba81f3021fe3f08/fbe0587bc19c78e6.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1583', '东至文化资讯', 'http://223.247.33.124:1935/live/wenhua/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '340000', '0', null, 'http://webapi.abigfish.net/static/upload/e0fa25c30a366e8c/79e770b3724f710e5499e63224605f2e/b13406af0af5b76d.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1584', '绩溪新闻频道', 'http://124.112.228.134:1935/live/zongyi/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '340000', '0', null, 'http://webapi.abigfish.net/static/upload/da56e25a64be3b08/d6027242e1d856061a46364c130bd808/f7f08a20f87a714b.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1585', '河北经济', 'http://weblive.hebtv.com/live/hbjj_bq/index.m3u8', '#', '#', '4', '0', '0', '0', '100000', '130000', '0', null, 'http://webapi.abigfish.net/static/upload/eddb90eae948a973/9fd78ca8f095b9a820747e1866edb5ce/7a806a6337389435.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1586', '河北农民', 'http://weblive.hebtv.com/live/nmpd_bq/index.m3u8', '#', '#', '4', '0', '0', '0', '100000', '130000', '0', null, 'http://webapi.abigfish.net/static/upload/f7cc7093247d68d0/960bc4c990739dc4907f872fe100d37c/2fd9a9a1a616dc54.jpg', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1587', '河北都市', 'http://weblive.hebtv.com/live/hbds_bq/index.m3u8', '#', '#', '4', '0', '0', '0', '100000', '130000', '0', null, 'http://webapi.abigfish.net/static/upload/c7632b7d862b177a/0c278ce27ac807c92eeb0ca3f02a275d/5179f3b6d9e86e7d.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1588', '河北影视', 'http://weblive.hebtv.com/live/hbys_bq/index.m3u8', '#', '#', '4', '0', '0', '0', '100000', '130000', '0', null, 'http://webapi.abigfish.net/static/upload/d554a869d3d85d32/39b4416ab8483be79eee785759c110d7/4ac2653eae4c0791.png', null, null, '6', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1589', '河北少儿', 'http://weblive.hebtv.com/live/hbse_bq/index.m3u8', '#', '#', '4', '0', '0', '0', '100000', '130000', '0', null, 'http://webapi.abigfish.net/static/upload/650ec6dd333d7be7/40d4e322cc180c55d075b7093d334000/ed3befa4f78691e4.jpg', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1590', '河北公共', 'http://weblive.hebtv.com/live/hbgg_bq/index.m3u8', '#', '#', '4', '0', '0', '0', '100000', '130000', '0', null, 'http://webapi.abigfish.net/static/upload/164c73d920297d41/be28920f036b715672783ce95b1ffdee/ef297ca54b6a1259.jpg', null, null, '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1591', '河北购物', 'http://weblive.hebtv.com/live/sjgw_bq/index.m3u8', '#', '#', '4', '0', '0', '0', '100000', '130000', '0', null, 'http://webapi.abigfish.net/static/upload/07c6de73a77eb01d/3ec54649a2eb1671662ff42abe28b2ce/09035c2044f01446.jpg', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1597', '翡翠台', 'http://acm.gg/jade.m3u8', '#', '#', '18', '0', '0', '0', '100000', '710000', '0', null, 'http://webapi.abigfish.net/static/upload/d9d8ddd6f5796579/4e1368c201c005d83fcedf144be9f3df/f1145db6c515fb34.jpg', null, null, '7', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1598', '明珠台', 'http://acm.gg/pearl.m3u8', '#', '#', '18', '0', '0', '0', '100000', '710000', '0', null, 'http://webapi.abigfish.net/static/upload/8d59d24b83c4fd89/ea2ce4a7644818bd0dc76d68d436bb03/0efbe3a8386ee47a.jpg', null, null, '7', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1601', '奇妙电视', 'http://61.10.2.137/live_fantv/_definst_/fantv77_h.live/playlist.m3u8', '#', '#', '18', '0', '0', '0', '100000', '710000', '0', null, 'http://webapi.abigfish.net/static/upload/a188366540b08105/2eb44432bc73c6a3524df6d79d1df898/b6d2fac38b8dca77.png', null, null, '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1608', '中天新闻', 'http://ax.micaesoft.com/YMitv/YMITV_CN_TWctitvHD_2.m3u8', '#', '#', '18', '0', '0', '0', '100000', '710000', '0', null, 'http://webapi.abigfish.net/static/upload/e4d8958caab35ba5/10587c586302ab588f8049419ea57699/5cc62452eec5a89f.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1623', '澳門蓮花', 'rtmp://3xhtut.live1.z1.pili.qiniucdn.com/lotustv/5562e9e4d409d24c9600075c', '#', '#', '18', '0', '0', '0', '100000', '710000', '0', null, 'http://webapi.abigfish.net/static/upload/cbe5a0ad98b71ab8/3661658607e536b144c8f7e1528d8292/3516ae85974d0f47.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1625', '澳視葡語', 'http://live4.tdm.com.mo:80/ch2/_definst_/ch2.live/playlist.m3u8', '#', '#', '18', '0', '0', '0', '100000', '710000', '0', null, 'http://webapi.abigfish.net/static/upload/25493e6b43f07f9c/96ac0f1d13d5adfdfcc4103fcaf40d47/20096ea4ed0fa2a7.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1626', '澳视卫星', 'http://live4.tdm.com.mo:80/ch3/_definst_/ch3.live/playlist.m3u8', '#', '#', '18', '0', '0', '0', '100000', '710000', '0', null, 'http://webapi.abigfish.net/static/upload/4a29fe971aaaf9c9/48b4caac644d3783f79634741b033e85/e6a44dafc01b6f91.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1627', '澳视体育', 'http://live4.tdm.com.mo:80/ch4/_definst_/sport_ch4.live/playlist.m3u8', '#', '#', '18', '0', '0', '0', '100000', '710000', '0', null, 'http://webapi.abigfish.net/static/upload/fc4d25f1b28296b0/04a6f86195490df81a7fd965c4e7dc9a/6c6665ca4ba813c2.png', null, null, '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1630', '澳视澳门', 'http://live3.tdm.com.mo:1935/ch1/ch1.live/playlist.m3u8', '#', '#', '18', '0', '0', '0', '100000', '710000', '0', null, 'http://webapi.abigfish.net/static/upload/4ea1a79057f88cc5/c1e0431929aa1d98fc4086d44c30e34b/3ffe83b44db222a9.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1631', '澳視葡語', 'http://live3.tdm.com.mo:1935/ch2/ch2.live/playlist.m3u8', '#', '#', '18', '0', '0', '0', '100000', '710000', '0', null, 'http://webapi.abigfish.net/static/upload/71a85fd7b7164647/61aa0286e5f5f1448b176d5749165b43/eae09b9ea660b64a.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1632', '澳视卫星', 'http://live3.tdm.com.mo:1935/ch3/ch3.live/playlist.m3u8', '#', '#', '18', '0', '0', '0', '100000', '710000', '0', null, 'http://webapi.abigfish.net/static/upload/c24aacb52553bb87/15588fa9a85ba336b0663536001e0b4f/1c17b7b296f07cdb.png', null, null, '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1633', '澳视体育', 'http://live3.tdm.com.mo:1935/ch4/sport_ch4.live/playlist.m3u8', '#', '#', '18', '0', '0', '0', '100000', '710000', '0', null, 'http://webapi.abigfish.net/static/upload/719d2ccacb8e04f0/e1b815ae23479b33b06b93588bea8da8/39df727007b1cd51.png', null, null, '8', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1634', '澳视资讯', 'http://live3.tdm.com.mo:1935/ch5/info_ch5.live/playlist.m3u8', '#', '#', '18', '0', '0', '0', '100000', '710000', '0', null, 'http://webapi.abigfish.net/static/upload/ab03b7b990d86bd7/3ff092aff610b511d04b4f991a712a08/3ba328f8afb8fb62.png', null, null, '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1635', '澳视高清', 'http://live3.tdm.com.mo:1935/ch6/hd_ch6.live/playlist.m3u8', '#', '#', '18', '0', '0', '0', '100000', '710000', '0', null, 'http://webapi.abigfish.net/static/upload/b7358a182de49dea/ef3fb0300691c44f85200a8f134802dd/452522a59edc9676.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1636', '美亚电影', 'http://r24.hemiaolive.com/hemiao/hg.m3u8', '#', '#', '6', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/ec400b871f77cb88/332cc4e4f81752f60ec9b53298f22c49/9d45a3bfab49944b.png', '', '', '24', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1649', '宁夏卫视', 'http://m-tvlmedia.public.bcs.ysten.com/ysten-business/live/ningxiastv/1.m3u8', 'http://223.110.243.155:80/PLTV/3/224/3221225628/1.m3u8', 'http://223.82.250.72/live/ningxiastv/1.m3u8', '7', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/c73f4d8f3e0c8492/0eef1464c4c73cb88dac834fb14371e8/5f9782a3f68c91ac.jpg', 'NXTV-1', '', '14', '0', '0', '1', '1c4d4f90');
INSERT INTO `t_television` VALUES ('1650', '厦门卫视', 'http://ott.fj.chinamobile.com/PLTV/88888888/224/3221226781/1.m3u8', 'http://dvchtr6ruyd99.cloudfront.net/TV2007.m3u8', '#', '7', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/4d4c9145a0a5352d/6f6f6ba50a0c3f4ff355bf3c5438360d/5ba67a43a07015a9.jpg', 'XIAMENTV-1', '', '17', '0', '0', '1', 'd6253770');
INSERT INTO `t_television` VALUES ('1651', '南方卫视', 'http://stream1.grtn.cn/tvs2/sd/live.m3u8', '#', '#', '7', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/60f2af4652da10f8/a4918a64350c92ba09e82a0dcf937920/bc7206167b504cc0.jpg', 'NFWS', '', '12', '0', '0', '1', 'ccfe6b99');
INSERT INTO `t_television` VALUES ('1652', '上海第一财经', 'http://www.radio366.com/tv/images/cm/dycj.m3u8', 'http://w1.livecache.yicai.com/hls/live/CBN_hd/live.m3u8', 'http://223.82.250.72/live/diyicaijing/1.m3u8', '4', '0', '0', '0', '100000', '310000', '0', '', 'http://webapi.abigfish.net/static/upload/9f4893b1a3d6ea13/8951c96663bdd3edc97c8f6641c51f11/9d1c5ab3ad757213.png', '', '', '10', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1653', '黑龙江都市', 'http://stream1.hljtv.com/hljdd/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '230000', '0', '', 'http://webapi.abigfish.net/static/upload/16072b42bdcfc44f/4375af2506d70ea5cae4a3a9912eec2f/a220117f93890240.png', '', '', '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1654', '黑龙江公共', 'http://stream1.hljtv.com/hljgg/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '230000', '0', '', 'http://webapi.abigfish.net/static/upload/30c0ebdb79f4fb7f/85eae27f2534ea1ecab1ffc482e0c90b/26dfa69cd7f0fde7.png', '', '', '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1655', '黑龙江少儿', 'http://stream1.hljtv.com/hljse/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '230000', '0', '', 'http://webapi.abigfish.net/static/upload/e1f27a3eba8e8957/0965166a129933ecf07441e6dee42e3e/08896c70485dec4a.png', '', '', '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1656', '黑龙江导视', 'http://stream1.hljtv.com/hljds/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '230000', '0', '', 'http://webapi.abigfish.net/static/upload/dd378a9d5523e738/4aec2f03aed85ab719742ececd19c412/f44339879bab3675.png', '', '', '6', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1657', '北大荒农业', 'http://stream1.hljtv.com/hljnk/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '230000', '0', '', 'http://webapi.abigfish.net/static/upload/89ff20dc7d31ba2e/1f0d4a99089bc3f61c1704c7601fcdb7/9cf1ba3d3cb72e91.png', '', '', '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1658', '徐州综合', 'http://stream1.huaihai.tv/xwzh/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '320000', '320300', '', 'http://webapi.abigfish.net/static/upload/49b98bd74e61fd76/0d0d92282b62697c06eba2d012953dea/388012e907110fc4.png', '', '', '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1659', '徐州生活', 'http://stream1.huaihai.tv/jjsh/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '320000', '320300', '', 'http://webapi.abigfish.net/static/upload/e5b1d7d8966c1865/bf38156a944b68e2d67b6b1e0556f3d2/156cca2a857765ae.jpg', '', '', '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1660', '徐州影视', 'http://stream1.huaihai.tv/wyys/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '320000', '320300', '', 'http://webapi.abigfish.net/static/upload/d74e8945a4b4816d/630391f86530bf6a50cc05e177edb32b/901f73027613ad8a.jpg', '', '', '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1661', '徐州公共', 'http://stream1.huaihai.tv/ggpd/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '320000', '320300', '', 'http://webapi.abigfish.net/static/upload/d4ab909d583407c5/0cf229f44bd1c849aea4d48c0ad14fa3/fd5f386435f0c07d.jpg', '', '', '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1662', '厦门一套', 'http://cstv.live.wscdns.com/live/xiamen1/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '350000', '350200', null, 'http://webapi.abigfish.net/static/upload/d4c5ee388670c4a2/9987462458c5310f18333fa758a6ddf0/9f7b90bc3d87d2ac.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1663', '厦门二套', 'http://cstv.live.wscdns.com/live/xiamen2/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '350000', '350200', '', 'http://webapi.abigfish.net/static/upload/76a70544c7953a16/3167e2fce5c48770519d4bda5a731fdb/0e2022bb1d9b4d5d.png', '', '', '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1664', '厦门三套', 'http://cstv.live.wscdns.com/live/xiamen3/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '350000', '350200', '', 'http://webapi.abigfish.net/static/upload/a390cc25cb3fe73e/3a4ce9fbc03f73a5fac0658007086c8b/8875231aa8edf853.png', '', '', '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1665', '厦门四套', 'http://cstv.live.wscdns.com/live/xiamen4/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '350000', '350200', '', 'http://webapi.abigfish.net/static/upload/becebedf1c232fd3/fcd44dcd8c0ef8214dce7b5d590277e9/993b439f902c3291.png', '', '', '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1666', '山东教育', 'http://live.sdetv.com.cn/live/sdetv/playlist.m3u8', 'http://223.82.250.72/live/shandongjy/1.m3u8', '#', '4', '0', '0', '0', '100000', '370000', '0', '', 'http://webapi.abigfish.net/static/upload/f1294e4013a5d5f4/67bdb6cde16adf356ba86f2d1de0989f/fbf73cc37f5825c9.png', '', '', '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1667', '山东齐鲁', 'http://120.221.2.42:8089/PLTV/88888888/224/3221225609/2.m3u8', '#', '#', '4', '0', '0', '0', '100000', '370000', '0', null, 'http://webapi.abigfish.net/static/upload/62da0d73a9cbf74d/99d3b7de9dfd183ae5bf23321ac8680d/f3177219150291c8.png', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1668', '山东体育', 'http://120.221.2.42:8089/PLTV/88888888/224/3221225614/2.m3u8', '#', '#', '4', '0', '0', '0', '100000', '370000', '0', null, null, null, null, '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1669', '山东农科', 'http://120.221.2.42:8089/PLTV/88888888/224/3221225615/2.m3u8', '#', '#', '4', '0', '0', '0', '100000', '370000', '0', null, null, null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1670', '山东影视', 'http://120.221.2.42:8089/PLTV/88888888/224/3221225613/3.m3u8', '#', '#', '4', '0', '0', '0', '100000', '370000', '0', null, null, null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1671', '山东综艺', 'http://120.221.2.42:8089/PLTV/88888888/224/3221225611/2.m3u8', '#', '#', '4', '0', '0', '0', '100000', '370000', '0', null, null, null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1672', '山东生活', 'http://120.221.2.42:8089/PLTV/88888888/224/3221225612/2.m3u8', '#', '#', '4', '0', '0', '0', '100000', '370000', '0', null, null, null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1673', '常德公共', 'http://www.cdgdj.com:1935/live/gonggong/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '430000', '0', null, 'http://webapi.abigfish.net/static/upload/073f575205924e56/23d669c062963abe109dd1055432e239/e6ee4a1a617f3c3f.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1674', '长株潭3', 'http://live.hnxttv.com:9601/live/czt3/800K/tzwj_video.m3u8', '#', '#', '4', '0', '0', '0', '100000', '430000', '0', null, 'http://webapi.abigfish.net/static/upload/f15e0ece2e1f26d4/384bbb04a63379811cb2e00719ee97a8/3d164c7e6ad1f6ae.jpg', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1675', '怀化综合', 'http://live1.0745tv.com/xwzh/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '430000', '0', null, 'http://webapi.abigfish.net/static/upload/15d0324c4cba3903/5aedcf51adc6262b0e0f9e664029e891/2996d65c1cf09761.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1676', '常德综合', 'http://www.cdgdj.com:1935/live/xinwen/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '430000', '0', null, 'http://webapi.abigfish.net/static/upload/34482dc7c754a30a/ba97065d165b1b38a94c022440f10ccd/d9dc1debbf32c6e4.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1677', '邵阳综合', 'http://ums.sytv.net.cn/live/TVxw2_11742/tzwj_video.m3u8', '#', '#', '4', '0', '0', '0', '100000', '430000', '0', null, 'http://webapi.abigfish.net/static/upload/cceb1161867ab91d/ef7fac026ead455c9eb1a76b0030a398/86609c0f99634cbc.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1678', '娄底综合', 'http://218.77.102.118:1935/live/zonghe/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '430000', '0', null, 'http://webapi.abigfish.net/static/upload/ef6cb2468f04dbc5/73a2f3d90a707b00b29a0b3f531b73a2/3e573e1754c54b24.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1679', '娄底公共', 'http://218.77.102.118:1935/live/gonggong/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '430000', '0', null, 'http://webapi.abigfish.net/static/upload/cbf2da3dc6c42ee8/b4e539b31b0e24e16349ccd8e98a367a/e2eba1acfa755850.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1680', '岳阳综合', 'http://aodian.zhcsapp.cn/liveTV/yyxw.m3u8', '#', '#', '4', '0', '0', '0', '100000', '430000', '0', null, 'http://webapi.abigfish.net/static/upload/f6afe246a4ee1b3d/401a9c6c5be55434ec0df1acaeb7a543/1dbd31640cb11d1c.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1681', '湘西综合', 'http://hnxxz.chinashadt.com:2036/live/tv1.stream/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '430000', '0', null, 'http://webapi.abigfish.net/static/upload/119d40d185a81e62/0d94a8a76447a8a36f2740b60c7473a5/961e3420dbe810fa.png', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1682', '湘西公共', 'http://hnxxz.chinashadt.com:2036/live/tv2.stream/playlist.m3u8', '#', '#', '4', '0', '0', '0', '100000', '430000', '0', null, 'http://webapi.abigfish.net/static/upload/6cfe342b4bf39298/aada48c80ad8c49dec50ef0a35365611/478981fe857d140a.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1683', '西安新闻', 'http://stream2.xiancity.cn/xatv1/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '610000', '610100', null, 'http://webapi.abigfish.net/static/upload/8a69c60ee82b7cec/ab7e03f07e4a71326b5bf4d412295776/3ce3b07201e4003e.png', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1684', '西安资讯', 'http://stream2.xiancity.cn/xatv3/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '610000', '610100', null, 'http://webapi.abigfish.net/static/upload/176b22bab4e94a28/619ca2433b2ef241492a376be4d38d1c/868d037cd4e8df1e.jpg', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1685', '西安影视', 'http://stream2.xiancity.cn/xatv4/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '610000', '610100', null, 'http://webapi.abigfish.net/static/upload/33f7dae319bf6bc3/9a3f779d00a6cbea54bcdb63fab2b188/f3205d909fac27ac.jpg', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1686', '西安健康', 'http://stream2.xiancity.cn/xatv5/sd/live.m3u8', '#', '#', '4', '0', '0', '0', '100000', '610000', '610100', null, 'http://webapi.abigfish.net/static/upload/d3481ae553dc4bb6/b970b151fbc0ec590fae16f15fab4f8a/95100cb91194d210.jpg', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1687', '凤凰中文台', 'http://pulllive-al.wasu.cn/live/jade.m3u8', 'http://223.82.250.72/live/fhchinese/1.m3u8', 'http://223.110.243.155:80/PLTV/3/224/3221226977/1.m3u8', '18', '0', '0', '0', '100000', '810000', '0', '', 'http://webapi.abigfish.net/static/upload/e7a2ab81c5fca2f7/5d8cab6900ff8dc9cdf2339dc574b6ff/f87967f898785c8b.jpg', '', '', '11', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1689', '凤凰美洲台', 'http://live.italkdd.com/ts027/channel_056.m3u8', '#', '#', '18', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/05ce0ec4fb03272f/8a478c7389239cba7a666af33ae820f2/c26b89589480dff9.png', '', '', '6', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1697', '军旅剧场', 'http://ott.fj.chinamobile.com/PLTV/88888888/224/3221225887/1.m3u8', 'http://183.207.249.15/PLTV/3/224/3221225531/index.m3u8', 'http://223.110.243.155:80/PLTV/3/224/3221225531/1.m3u8', '9', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/6395ac11383a175f/f4f80a4c628f64a850e9ea9c1bc5e606/7ab7c0d8fbdd5f21.jpg', '', '', '8', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1698', '惊悚悬疑', 'http://ott.fj.chinamobile.com/PLTV/88888888/224/3221225885/1.m3u8', '#', '#', '6', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/7514b3e0aba63c1d/c6d14618f0d1f386425e618ba6834cdf/f3e5235a648d7a49.jpg', '', '', '20', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1699', '古装剧场', 'http://ott.fj.chinamobile.com/PLTV/88888888/224/3221225880/1.m3u8', 'http://183.207.249.14/PLTV/3/224/3221225527/index.m3u8', '#', '9', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/c16f522d08b34a5e/a1b6e7c65b14fa9d0978a94d21540cd3/196dc67ade13de5b.jpg', '', '', '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1700', '动画王国', 'http://183.207.249.15/PLTV/3/224/3221225555/index.m3u8', '#', '#', '23', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/4c2aeb849fab4723/9887f8bf9c8e6278301c2073ececc15e/ab402862dab87adb.png', '', '', '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1701', '金牌综艺', 'http://111.12.130.67/PLTV/88888888/224/3221225726/index.m3u8', 'http://111.12.130.67/PLTV/88888888/224/3221225726/index.m3u8', '#', '5', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/59d56cafbe1a35de/6c9f59c59e6c5ccdcc8e05b9bde0f802/f8af10273bb89d5c.png', 'NewTV', '', '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1702', '家庭剧场', 'http://111.12.130.67/PLTV/88888888/224/3221225725/index.m3u8', 'http://183.207.249.14/PLTV/3/224/3221225549/index.m3u8', 'http://223.110.243.155:80/PLTV/3/224/3221225549/1.m3u8', '9', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/5f7677792b04a3b8/e8b6a8d51c85a796ef6454c46da56ae2/42cfbcd023d6d61f.png', '', '', '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1703', '精品纪录', 'http://111.12.130.67/PLTV/88888888/224/3221225724/index.m3u8', 'http://183.207.249.14/PLTV/3/224/3221225557/index.m3u8', '#', '5', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/85e8c95abb4d0498/d71f1d5dacd6f5e639f90409e6bf4273/3041b973096d3d10.png', '', '', '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1704', '农业致富', 'http://111.12.130.67/PLTV/88888888/224/3221225723/index.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/4a93e679058284a3/9a7d6da21038cf5bc8fa214eaebf3f13/82b1137f038f0d75.png', '', '', '6', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1705', '军事评论', 'http://111.12.130.67/PLTV/88888888/224/3221225722/index.m3u8', 'http://183.207.249.14/PLTV/3/224/3221225533/index.m3u8', '#', '5', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/1e170ddff1606d18/bb8921e508d56a75d23e2b5f89fe170f/3521f59aff87694d.png', '', '', '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1706', '明星大片', 'http://ott.fj.chinamobile.com/PLTV/88888888/224/3221225893/1.m3u8', 'http://183.207.249.14/PLTV/3/224/3221225535/index.m3u8', '#', '6', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/d2625d003fcae31d/0732b0e3b5dd48f09b28c32a2fa00d78/f5625807177a3db0.jpg', '', '', '19', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1707', '爱情喜剧', 'http://ott.fj.chinamobile.com/PLTV/88888888/224/3221225877/1.m3u8', 'http://183.207.249.15/PLTV/3/224/3221225525/index.m3u8', '#', '9', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/d22169d209caf214/c6f75f501b107b09fad966a3f8fc7a53/8c1edd9aa5c22fd5.png', '', '', '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1708', '精品大剧', 'http://ott.fj.chinamobile.com/PLTV/88888888/224/3221225889/1.m3u8', 'http://183.207.249.14/PLTV/3/224/3221225569/index.m3u8', '#', '9', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/bd9a32d45f2cdfba/6e942425c9c87960ff6a45350791d8ee/adcf9666c7848835.jpg', '', '', '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1709', 'NewTV动作电影', 'http://ott.fj.chinamobile.com/PLTV/88888888/224/3221225879/1.m3u8', 'http://183.207.249.14/PLTV/3/224/3221225567/index.m3u8', 'http://223.110.243.155:80/PLTV/3/224/3221225529/1.m3u8', '6', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/fd23a83ed38c39d4/531ddb6601e541f91b9d7ffccca875a9/079e3b57c24a3113.jpg', '', '', '28', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1711', '沈阳卫视', 'http://lms.csytv.com/Live/122/live/livestream.m3u8', '#', '#', '7', '0', '0', '0', '100000', '0', '0', '', '', '', '', '8', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1712', '凤凰香港台', 'http://live.fengshows.com/live/PHK_500k/index.m3u8', 'http://183.207.249.35/PLTV/3/224/3221226975/index.m3u8', 'http://223.82.250.72/live/fhhongkong/1.m3u8', '18', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/48b43eb9141558f2/217d88ff5fac89cfaaf662be6cd123f4/c54c4d90d24b1373.png', '', '', '3', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1713', '西藏卫视', 'http://223.82.250.72/live/xizangstv/1.m3u8', 'http://223.110.243.155:80/PLTV/3/224/3221225579/1.m3u8', 'http://wstv.cntv.myalicdn.com/cntvlive/xizangmd.m3u8?auth=cntv0001rPVa4FmOEV9X5yO/ICL9Z9IT/lo/lkLl4yknZbxn6U4npvJwaEtpPNrtod+dd/BG63vvVWO5DNY6NUXl9L1j+Q==', '7', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/f54396099d46369b/547c1aa13ed5d028220bd44f67edd4f3/11c6c06436cf9a65.png', 'XZTV-1', 'http://183.251.61.207/PLTV/88888888/224/3221225854/index.m3u8', '10', '0', '0', '0', 'e237763b');
INSERT INTO `t_television` VALUES ('1715', 'CCTV-5+体育赛事', 'http://211.137.115.110:8080/gitv_live/G_CCTV-5PLUS-MD/G_CCTV-5PLUS-MD.m3u8?p=GITV&area=SAXYD', 'http://223.110.241.150:6610/gitv/live1/G_CCTV-5PLUS-CQ/G_CCTV-5PLUS-CQ/', 'http://223.110.243.140/PLTV/2510088/224/3221227276/1.m3u8', '2,3', '0', '0', '1', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/eef7c9b1b1d71701/f94d9a90f02adde534ac4e5e1b1ad2e4/82ac11702f93805f.jpg', '', '', '19', '0', '0', '1', 'b3666b9d');
INSERT INTO `t_television` VALUES ('1716', ' 延边卫视', 'http://live.ybtvyun.com/video/s10006-cys/index.m3u8', '#', '#', '7', '0', '0', '0', '100000', '220000', '222400', '', 'http://webapi.abigfish.net/static/upload/29eb72af70b45ea8/994b6d0256b1b97f1c199d99550379df/5e12328acf5bbf49.png', 'YANBIANTV-1', '', '5', '0', '0', '0', 'c33fa0cc');
INSERT INTO `t_television` VALUES ('1717', '星空卫视', 'http://61.216.177.73/sta/ch17114101.m3u8', '#', '#', '7', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/15fef3221d2f2187/85adee089c17fd28cad7492939c76269/441fe77353480fe1.png', 'xingkongweishi', '', '5', '0', '0', '0', '7d4daf1f');
INSERT INTO `t_television` VALUES ('1718', '佛山公共频道', 'http://qd.timetv.cn/hls/gdtv/13875452.m3u8', '#', '#', '4', '0', '0', '0', '100000', '440000', '440600', '', 'http://webapi.abigfish.net/static/upload/7ffc2fa46fbc98fb/9794db5e1f7d4896e42265358eb361bd/a37e0958c0b5c940.png', '', '', '1', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1719', '阳西综合频道', 'http://qd.timetv.cn/hls/gdtv/13875453.m3u8', '#', '#', '4', '0', '0', '0', '100000', '440000', '441700', '', '', '', '', '1', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1720', '阳西公共频道', 'http://qd.timetv.cn/hls/gdtv/13875454.m3u8', '#', '#', '4', '0', '0', '0', '100000', '440000', '441700', '', '', '', '', '2', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1721', '阳江综合频道', 'http://qd.timetv.cn/hls/gdtv/13120290.m3u8', '#', '#', '4', '0', '0', '0', '100000', '440000', '441700', '', 'http://webapi.abigfish.net/static/upload/6d8f29b03e250bf9/ff50af525466fae1341c1d108df518a9/ad0047345b7b641a.png', '', '', '3', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1722', '阳江公共频道', 'http://qd.timetv.cn/hls/gdtv/13120344.m3u8', '#', '#', '4', '0', '0', '0', '100000', '440000', '441700', '', 'http://webapi.abigfish.net/static/upload/d8c6b8a52c837b40/7a6c7ab08ccb1c25ba16fd41fab7b939/31b2e628c6e62441.png', '', '', '1', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1723', '韶关公共频道', 'http://qd.timetv.cn/hls/gdtv/13120187.m3u8', '#', '#', '4', '0', '0', '0', '100000', '440000', '440200', '', 'http://webapi.abigfish.net/static/upload/ff7ba3a3f1f4400a/e0c092dd1bc74c09f2162f0713c4aa4c/3c9a843febf03e56.png', '', '', '1', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1724', '韶关综合频道', 'http://qd.timetv.cn/hls/gdtv/13120285.m3u8', '#', '#', '4', '0', '0', '0', '100000', '440000', '440200', '', 'http://webapi.abigfish.net/static/upload/56bc6abebad063b0/191771f7c0b2501bbdee46fbdd7870d3/018884fb7be2a72b.png', '', '', '1', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1725', '湛江综合频道', 'http://qd.timetv.cn/hls/gdtv/13120445.m3u8', '#', '#', '4', '0', '0', '0', '100000', '440000', '440800', '', 'http://webapi.abigfish.net/static/upload/2955b1891d2312da/15ded49ea3265930660040e976b97bed/9edfeb52bd2cf6f8.png', '', '', '3', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1726', '湛江公共频道', 'http://qd.timetv.cn/hls/gdtv/13120410.m3u8', '#', '#', '4', '0', '0', '0', '100000', '440000', '440800', '', '', '', '', '2', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1727', '连州综合频道', 'http://qd.timetv.cn/hls/gdtv/13740287.m3u8', '#', '#', '4', '0', '0', '0', '100000', '440000', '0', '', 'http://webapi.abigfish.net/static/upload/d26ae0228558cc59/2421572080b5e8d5a21852bf267634b8/db7f0633120e5620.png', '', '', '3', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1728', '连州视讯频道', 'http://qd.timetv.cn/hls/gdtv/13875450.m3u8', '#', '#', '4', '0', '0', '0', '100000', '440000', '0', '', 'http://webapi.abigfish.net/static/upload/6c19d516bc5b2b7b/1bc254ef987955805057752e85adec5c/fcf20374d3594888.png', '', '', '2', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1729', '五星体育', 'http://hls.mv.wa5.com/live/gssports1_900/playlist.m3u8', 'http://hls.mv.wa5.com/live/gssports1/playlist.m3u8', 'http://azure-kknews.live.bestvcdn.com.cn/live/program/Dkankan.live.bestvcdn.com.cnD/_M/xwzh/M_key5BA4D0B27F09F3D61DEF864FA12F1C8DC157C22748153B54D758192A87A7F283_/live/xsjhd/4000000/mnf.m3u8', '3', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/4d231a32781b0536/c2290fb9898630f909f483e6601a88c9/8df7db3dcc5784ed.jpg', '', '', '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1730', '江苏影视', 'http://183.207.248.71/gitv/live1/G_JSYS/G_JSYS', '#', '#', '4', '0', '0', '0', '100000', '320000', '0', '', 'http://webapi.abigfish.net/static/upload/2b21233ee86da3fb/f0333f8c7d6439d015ccddbb7f69f573/a019ad85a492bcca.png', '', '', '1', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1731', '江苏体育', 'http://183.207.248.71/gitv/live1/G_JSTY/G_JSTY', '#', '#', '3', '0', '0', '0', '100000', '320000', '0', '', 'http://webapi.abigfish.net/static/upload/76e7fa167c6a800e/4907a525e8dad87802b09c21f455f7bd/41546833f470602f.jpg', '', '', '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1732', '江苏综艺', 'http://183.207.248.71/gitv/live1/G_JSZY/G_JSZY', '#', '#', '4', '0', '0', '0', '100000', '320000', '0', '', 'http://webapi.abigfish.net/static/upload/342454ec71681662/8a08909fb12f3b5e1db2fa3f7f8347af/553e5910b3024c06.png', '', '', '1', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1733', '江苏城市', 'http://183.207.248.71/gitv/live1/G_JSCS/G_JSCS', '#', '#', '4', '0', '0', '0', '100000', '320000', '0', '', 'http://webapi.abigfish.net/static/upload/2948bc9a490e9251/ad1c9be2bc2796cb5f166bff56d6b9e0/2e5351478ee99f49.png', '', '', '1', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1734', '江苏公共', 'http://183.207.248.71/gitv/live1/G_JSGG/G_JSGG', '#', '#', '4', '0', '0', '0', '100000', '320000', '0', '', 'http://webapi.abigfish.net/static/upload/4ad4505d4425455e/8057ae29a83c97577f12bc8cffb170e0/83ea5c5296272b97.png', '', '', '1', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1735', '江苏教育', 'http://183.207.248.71/gitv/live1/G_JSJY/G_JSJY', '#', '#', '4', '0', '0', '0', '100000', '320000', '0', '', 'http://webapi.abigfish.net/static/upload/af71ec119ea85c90/eab9d7d5e8eeb94dd75329ccac3548b3/1b25ded9fde8866f.png', '', '', '1', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1736', '卡酷少儿', 'http://223.82.250.72/live/kakukaton/1.m3u8', '#', '#', '5', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/ef18dfd8bff9f124/da2b16c9d790fdc10a775948395e3339/c2b13845170d2960.png', '', '', '2', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1737', '炫动卡通', 'http://223.82.250.72/live/xuandongkaton/1.m3u8', '#', '#', '23', '0', '0', '0', '100000', '0', '0', '', '', '', '', '1', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1738', '优漫卡通', 'http://223.82.250.72/live/youmankaton/1.m3u8', '#', '#', '23', '0', '0', '0', '100000', '0', '0', '', '', '', '', '0', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1739', '金鹰卡通', 'http://223.82.250.72/live/jinyingkaton/1.m3u8', '#', '#', '23', '0', '0', '0', '100000', '0', '0', '', '', '', '', '1', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1740', '贵阳1台', 'http://hls.qguiyang.com/GYBTV1/800/k8dGoB.m3u8', '#', '#', '4', '0', '0', '0', '100000', '520000', '520100', '', '', '', '', '1', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1741', '贵阳2台', 'http://hls.qguiyang.com/GYBTV2/800/j8eGoB.m3u8', '#', '#', '4', '0', '0', '0', '100000', '520000', '520100', '', '', '', '', '1', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1742', '贵阳3台', 'http://hls.qguiyang.com/GYBTV3/800/i8fGoB.m3u8', '#', '#', '4', '0', '0', '0', '100000', '520000', '520100', '', '', '', '', '2', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1743', '贵阳4台', 'http://hls.qguiyang.com/GYBTV4/800/h8gGoB.m3u8', '#', '#', '4', '0', '0', '0', '100000', '520000', '520100', '', '', '', '', '2', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1744', '贵阳5台', 'http://hls.qguiyang.com/GYBTV5/800/g8hGoB.m3u8', '#', '#', '4', '0', '0', '0', '100000', '520000', '520100', '', '', '', '', '1', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1745', '星空影院', 'http://59.120.41.145/sta/ch5168007.m3u8', 'http://210.209.13.39/sta/ch5168007.m3u8', '#', '18', '0', '0', '0', '100000', '710000', '0', '', '', '', '', '1', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1746', '战旗TV13', 'http://dlhls.cdn.zhanqi.tv/zqlive/44509_4oiYY.m3u8', '#', '#', '6', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/f9eb559a923f2ec4/6c474acd132f50639a685331c9410168/61f528b434a33461.png', '', '', '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1747', '战旗TV19', 'http://dlhls.cdn.zhanqi.tv/zqlive/74160_mUCBT.m3u8', '#', '#', '6', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/7c60c9026ff35bf4/205d00e53fbb773a41638f66886d8cad/3294a48cc5fb4bfe.png', '', '', '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1749', '喜剧影院', 'http://shenhu.live.pptv.com/live/5/30/f6837f07f8e54acda5963f93447028d1.m3u8?type=web.cloudplay', '#', '#', '6', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/e0dc61eceffa1a7d/ff9d396b4b7c5011b928d165b49d60f9/959c24b10cf7b36b.png', 'CIBN', '', '8', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1750', '电 竞', 'http://shenhu.live.pptv.com/live/5/30/590be801d8fa416097c25f712cfdd796.m3u8?type=web.cloudplay', '#', '#', '5', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/a116d12e6e9ce936/626a45ab8d3fc2a69b2221f35c0ff6ff/5c4595ddca32e1db.png', 'CIBN', '', '2', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1751', '纪录片', 'http://shenhu.live.pptv.com/live/5/30/9cf86622a8ee400287cc33f5f203ef96.m3u8?type=web.cloudplay', '#', '#', '5', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/858c817485ca8af5/f545731a39ac3c179a7e4d07ef8a46f8/2d97b848585ac16f.png', 'CIBN', '', '1', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1752', '军事', 'http://shenhu.live.pptv.com/live/5/30/22e78d6fbfbd4b72b07b8c98131f86f4.m3u8?type=web.cloudplay', '#', '#', '5', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/aefada617e77eb25/f4822af1b9cc061e689dbe32366f0b4f/a515efd65836bf41.png', 'CIBN', '', '4', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1753', '财经', 'http://shenhu.live.pptv.com/live/5/30/9f711b022861484cb3951a80ea673dc9.m3u8?type=web.cloudplay', '#', '#', '5', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/ced2ca0a442d1bb0/b51ee73793c833e4762977dfefdbd915/ee7527aa563d2bb4.png', 'CIBN', '', '2', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1754', '动漫', 'http://shenhu.live.pptv.com/live/5/30/d1732cbd2949479aa2d1d0ac0a733cc0.m3u8?type=web.cloudplay', '#', '#', '23', '0', '0', '0', '100000', '0', '0', '', '', 'CIBN', '', '1', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1755', '湖北新闻', 'http://live.cjyun.org/video/s10008-ggxw2018/index.m3u8', '#', '#', '4', '0', '0', '0', '100000', '420000', '0', '', 'http://webapi.abigfish.net/static/upload/f9eca5038949eae4/60da07906408a092e59ad1ce9a15f8e1/10d1c7ccc7908cb2.png', '', '', '1', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1756', '湖北影视', 'http://live.cjyun.org/video/s10008-hbys2018/index.m3u8', '#', '#', '4', '0', '0', '0', '100000', '420000', '0', '', 'http://webapi.abigfish.net/static/upload/6d1bf817c8df3667/b0d4fb50e85494dc5717b77dc9f76bb2/de37ba51ea8a1624.png', '', '', '1', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1757', '湖北教育', 'http://live.cjyun.org/video/s10008-jy2018/index.m3u8', '#', '#', '4', '0', '0', '0', '100000', '420000', '0', '', 'http://webapi.abigfish.net/static/upload/42a1aa5d08ca708a/b153b9bd5429a6707d75820b3704a683/8f277e4b043191f2.png', '', '', '1', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1758', '湖北综合', 'http://live.cjyun.org/video/s10008-zh2018/index.m3u8', '#', '#', '4', '0', '0', '0', '100000', '420000', '0', '', 'http://webapi.abigfish.net/static/upload/24f16a9ba3780572/83552de7b934bbbbe82bd52ff22173a2/db7c8bb56647830c.png', '', '', '5', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1759', '湖北交通', 'http://tv.cctbn.com/zgjt/zgjthb.m3u8?auth_key=1893430861-0-0-f7357974c29e0b417e899dc47121337c', '#', '#', '4', '0', '0', '0', '100000', '420000', '0', '', '', '', '', '6', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1760', '湖北休闲', 'http://live.cjyun.org/video/s10008-klcz2018/index.m3u8', '#', '#', '4', '0', '0', '0', '100000', '420000', '0', '', 'http://webapi.abigfish.net/static/upload/93851216f80848cd/6feece07c3398617170507b9c14160af/6048d41c9d6dcce7.png', '', '', '6', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1761', '湖北生活', 'http://live.cjyun.org/video/s10008-ty2018/index.m3u8', '#', '#', '4', '0', '0', '0', '100000', '420000', '0', '', 'http://webapi.abigfish.net/static/upload/2476b0373704935b/2079411c338d47e544d21d4798f1f111/95763debdaeba60b.png', '', '', '4', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1762', '湖北垄上', 'http://live.cjyun.org/video/s10008-ls2018s/index.m3u8', '#', '#', '4', '0', '0', '0', '100000', '420000', '0', '', 'http://webapi.abigfish.net/static/upload/d3a80d22394ecb69/81f54282c29a062852c5c9631b7c2206/2c0c6dfb924ed221.png', '', '', '4', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1763', '湖北购物', 'http://live.cjyun.org/video/s10008-mj012018/index.m3u8', '#', '#', '4', '0', '0', '0', '100000', '420000', '0', '', 'http://webapi.abigfish.net/static/upload/fe9592afe24c3355/9773fd2f6e46c2fb1b7dbe36e1322048/b49ab4b2b2c735e9.png', '', '', '7', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1764', '黄石新闻', 'http://huangshifb.live.cjyun.org/video/s10200-hsxwzh.m3u8', '#', '#', '4', '0', '0', '0', '100000', '420000', '0', '', 'http://webapi.abigfish.net/static/upload/8b85946eaf9f5b1f/bda33aa97e3602419517cb26244e3639/0b432a48d55591e1.png', '', '', '5', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1765', '黄石都市', 'http://huangshifb.live.cjyun.org/video/s10200-hsdspd.m3u8', '#', '#', '4', '0', '0', '0', '100000', '420000', '0', '', 'http://webapi.abigfish.net/static/upload/aca3eab528ac05b1/24ab0c7b11a3025a0e22aa2a44e7e297/c6365f23dbedd92c.png', '', '', '3', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1766', '黄石公共', 'http://huangshifb.live.cjyun.org/video/s10200-hsggpd.m3u8', '#', '#', '4', '0', '0', '0', '100000', '420000', '0', '', 'http://webapi.abigfish.net/static/upload/88e0f16114a1e011/c87b797513095a200f93a8c8ca13fb9f/f35e12e2b642260e.png', '', '', '1', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1771', '黑豹2018', 'http://tbm.alicdn.com/vUAdB2SRl6Uwi7hn7WB/fFX6xB08c426YCeFA7F@@hd.m3u8', '#', '#', '6', '0', '0', '0', '100000', '0', '0', '', '', '', '', '1', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1773', '天天向上', 'http://47.95.172.168/channel/1083.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/b667ffd1d018468c/10a3b8089bca1fea3a8e4c83e1650cfc/49d8af0ece18b4e2.jpg', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1774', '快乐大本营', 'http://47.95.172.168/channel/1084.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/7228352c63a595de/9f77d32037c3e350b83f8319f41be6d9/93ec2acbc865fa13.jpg', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1775', '影视金曲', 'http://47.95.172.168/channel/1095.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/dc1a6a53f5f779f2/fbdbcdfd1b75d3af80e026bcd09f75af/deadb5effc5ea9da.jpg', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1776', '最全旅游指南', 'http://47.95.172.168/channel/1172.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/a9dab015b5ebf6fc/e8c88e0d387c057d06c35f4da8a8d973/fe3c611ec1fb7b49.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1777', '古装宫斗', 'http://47.95.172.168/channel/1190.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/50b01615e10f4404/c61c2494b0870657caa0bd048dd31049/68cbe5082662af42.jpg', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1778', '谍战剧', 'http://47.95.172.168/channel/1215.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/62504de384b50db8/eaebd3882da68b610bdfb1231eca53e6/9ca24c2de2eb6912.jpg', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1779', '宝宝巴士儿歌', 'http://47.95.172.168/channel/1524.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/1370008be5862654/de12cc11e3f990b2a08a967a3fb9931a/da49bb349c92fa72.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1780', '小猪佩奇全集', 'http://47.95.172.168/channel/1526.m3u8', '#', '#', '23', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/60d9dfb17fc8bdbb/3de0a14aed009ce62e85d72295b67c5b/649290dfbf019285.jpg', '', '', '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1781', '称霸广场舞必备神曲', 'http://47.95.172.168/channel/1576.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/9830488a36a03deb/da9a1d61fc5c9b676d81df16fca504b6/fb9280b11d2b0ae0.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1782', '宋小宝', 'http://47.95.172.168/channel/1578.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, null, null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1783', '春晚小品集锦', 'http://47.95.172.168/channel/1611.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/49a0fa0ea45d6c65/e0524d65fb737c84fd3266c37c03e1b8/2ad0b1b19c534bfd.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1784', '汪汪队立大功', 'http://47.95.172.168/channel/1617.m3u8', '#', '#', '23', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/b9488e8d761e1f19/97dc902236a67da655f909c30e28f2cc/fcf1a78a97a8e6fd.jpg', '', '', '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1785', '妈妈是超人2', 'http://47.95.172.168/channel/1701.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/a9bb4b5f6b0be53c/0d829f87280639d169929f09452f582f/e0ddc6b518b5d91c.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1786', '贾玲', 'http://47.95.172.168/channel/1804.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/4b3456ba5b7958c5/d0c9582be3dec9d1e5e702e1b7ae3ca2/3b9b4b2c43705334.jpg', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1787', '蓝迪儿歌', 'http://47.95.172.168/channel/1823.m3u8', '#', '#', '23', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/d6df8e50c3cc76ab/487e51448cc1c57f7e1d54dc51f639d7/11387188468d01d9.jpg', '', '', '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1788', '一人一首经典歌曲', 'http://47.95.172.168/channel/1843.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/3952cba60a062a66/569d94bf6a3ee5286be79387cf426fe3/b783ad30bf234677.jpg', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1789', '本周人气菜谱', 'http://47.95.172.168/channel/1846.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/d2328daaa6a0a581/028bda7a8d0695107f841df2894883b9/1a5f1a2388c7c24b.jpg', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1790', '逗逗迪迪爱唱歌', 'http://47.95.172.168/channel/1853.m3u8', '#', '#', '23', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/ce4ef2a93a49e822/821eb2038540a6d322a28571a160923a/fe51dfaac0024558.jpg', '', '', '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1791', '芭比系列', 'http://47.95.172.168/channel/1880.m3u8', '#', '#', '23', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/061573ca4ba2b0e0/68e0614d6d17ac3ea29c222dc5b93356/a5372920962bdec0.jpg', '', '', '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1792', '儿歌300首', 'http://47.95.172.168/channel/1911.m3u8', '#', '#', '23', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/6fd4114eadb8bcca/088f7cef37d0ca609a2241c2015fb987/71d97a9828db1d73.jpg', '', '', '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1793', '岳云鹏', 'http://47.95.172.168/channel/1926.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/d7452285b4a99b53/e9bfb896bedc3db51b08ad1c6616d8a2/8fa1b3f8e575474c.jpg', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1794', '疯狂的麦咭', 'http://47.95.172.168/channel/1937.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/f3482a102a8dfa7e/cdf57d63ec37872a4b5deb9a14d66ab0/acc3b8a2360cde7c.jpg', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1795', '狐妖小红娘', 'http://47.95.172.168/channel/1938.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/e754f51b729bf0a2/f665d0d2b285f34ea67f145ffbfc4cc5/533ed460f7b6faac.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1796', '七十二层奇楼', 'http://47.95.172.168/channel/1940.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/02c60c884cea01ff/d0974a6bf97a3cfc66ecb6b5c02ae7cd/2d14d4da82e54feb.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1797', '哇!这里有好多玩具', 'http://47.95.172.168/channel/1952.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/2cbc9de73c182f89/9c4269d5199c196d42f031667b2a5f19/cdaca0310d4876b1.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1798', '环球购物', 'http://47.95.172.168/channel/2048.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/05a4a3246c5bdab6/7192f7d80eb8cd7f37dcb26895f5f67e/516c5c463b1e7597.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1799', '惊喜价到', 'http://47.95.172.168/channel/2050.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/18b0ad55ab2442a1/b20884b84be895fe7bb96e2b8f4cfb41/47299d842b35dcd5.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1800', '空中超市', 'http://47.95.172.168/channel/2081.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/349a5062884c8bfd/6f2100eb4368c68eca517ebc6bf4aabc/85f319e9a972b17a.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1801', '中国惊奇先生', 'http://47.95.172.168/channel/2159.m3u8', '#', '#', '23', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/d89f6d0c753a12d9/bbd6f963beb258a313c8eb07b2dc3761/26e669fbc4a57f73.jpg', '', '', '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1802', '今日必看资讯', 'http://47.95.172.168/channel/2182.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/00d8e45251394d51/c6def3c960da9a6ea06bfd4fadabe9ee/5815911d150d4167.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1803', '社会热点', 'http://47.95.172.168/channel/2183.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/5c857bc159e9c361/aebbb1eab4c87c3fc7a57f01d85649a5/34ea60e926e6e0e2.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1804', '爸爸去哪儿1', 'http://47.95.172.168/channel/2195.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/834b421a9ceaf217/1416fca96c960d6e72a18efb5f9cc44f/119aeac6fe4bb42a.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1805', '爸爸去哪儿2', 'http://47.95.172.168/channel/2196.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, null, null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1806', '爸爸去哪儿3', 'http://47.95.172.168/channel/2197.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/e59dbe69c119b5d5/9e91b9b630dadc056f43ca9ef6cd328d/f991fdcebd2be91c.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1807', '爸爸去哪儿4', 'http://47.95.172.168/channel/2198.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/f0c28c550d55c407/a393cd97dc40e76357068cc2fee5b445/5a3fb7943ee41fec.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1808', '一年级', 'http://47.95.172.168/channel/2201.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/337e54f8a37228d6/7f9d2af8d8d8a2b012e369da0630f39b/da204840c316a6ed.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1809', '家装指南', 'http://47.95.172.168/channel/2211.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/3154b34c13ecddb5/ead7d817b058ebc144a1266e4d281aae/f1704b6e60524cce.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1810', '大美中国', 'http://47.95.172.168/channel/2214.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/b99cc2c4dd9b01c2/6fa4bfc5078f7e9d2e9e4cfcd0a4d35d/23a3e4bd0dc97f83.jpg', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1811', '麻辣变形计', 'http://47.95.172.168/channel/2215.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/b3d2a9a2985c5a32/c669cc33c885e6c842b2b169d2ea1cb9/a0b0eb983102602a.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1812', '蒙面唱将金曲捞', 'http://47.95.172.168/channel/2221.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/a3f51ed7621fc3c5/a6bd5abd3ac8789c96c53983f3bcec51/c7b4c2a037e32623.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1813', '十五部超搞笑动漫', 'http://47.95.172.168/channel/2223.m3u8', '#', '#', '23', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/6e87e3566bf2a3c0/b3dad33dd319b53732bb9f32e97807c3/6a1b1a881b31d33b.jpg', '', '', '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1814', '启蒙音乐剧', 'http://47.95.172.168/channel/2230.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/7b8bc3700ce886e8/627f41e799fe764ffa06512cbbe90141/c99778486ba95172.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1815', '香港经典动作片', 'http://47.95.172.168/channel/2259.m3u8', '#', '#', '6', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/7023829f14af8d1c/2b401480d89180d8adc961e9beb67689/b0ee5d49ee0b711d.jpg', '', '', '7', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1816', '惹味川菜', 'http://47.95.172.168/channel/2263.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/66a7eafe0ef93f38/0e4ab95ce04d97e99aa3481d565216fa/a912702eec881377.jpg', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1817', '喜剧总动员', 'http://47.95.172.168/channel/2270.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/f6002b64f932b16e/b8fc5cec2690beb9b8c83e21f7df5abe/23deb523d78ce79c.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1818', '天籁之战', 'http://47.95.172.168/channel/2272.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/103bb8b2331fa855/1a2b1049888c7414a1c768893202731b/7307f0e425b4530a.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1819', '贝乐虎儿歌', 'http://47.95.172.168/channel/2274.m3u8', '#', '#', '23', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/bdddf7327677bbfc/879f505df7122e2ed48bbf12fa64606f/feefa1d14b2617b0.jpg', '', '', '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1820', '大胃美少女合集', 'http://47.95.172.168/channel/2277.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/a06ebe1b56c3c051/96e0d45ff0ad5808b3f2a92304a9a211/29bb844077aeb557.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1821', 'Papi酱团队创意视频', 'http://47.95.172.168/channel/2278.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/5ef20b89bab8fed3/8253e98a12f26316c5a5d681008c1e5d/aa5b70fa82f28166.jpg', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1822', '科幻电影', 'http://47.95.172.168/channel/2284.m3u8', '#', '#', '6', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/6f06f45251e00754/0f54f1fd9421d5911550809bafe5147e/0d9e0e8b44455bc1.jpg', '', '', '11', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1823', '反腐纪录片揭落马细节', 'http://47.95.172.168/channel/2285.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/006730204165965b/7e5f7dc9c4b63f922db19e3bd21f4c98/857305ce42d22e79.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1824', '一分钟性知识', 'http://47.95.172.168/channel/2288.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/fd280d5cf7e55a8d/76261a649b8ac3c41db2fa3f7f8347af/553e5910b3024c06.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1825', '全球最性感女人', 'http://47.95.172.168/channel/2289.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/eea52ab6ffcc1c1d/e0abeba4c99ee1c787c37e1d70083042/462c9ad960e15f5e.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1826', '日食记', 'http://47.95.172.168/channel/2296.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/bb54169c38f87b11/30bf72bfa18b3d9cd8779a08177c8ff7/03dcedae08740f9b.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1827', '动物儿歌', 'http://47.95.172.168/channel/2318.m3u8', '#', '#', '23', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/b57a35f9dda9f73a/b2c04e1a6963c932c5713e25a4ae1216/add503a1ae320e97.jpg', '', '', '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1828', '潘长江', 'http://47.95.172.168/channel/2321.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/c4d219d519a87e6d/fe9d8b7a5bf3d352e835617aca6a5423/cefb2144c1e73ab7.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1829', '一起来看流星雨', 'http://47.95.172.168/channel/2331.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/9d373d451beddb6c/6a1134876433d259b7395d9fe0b6f799/20fcb5da39ccb0a4.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1830', '爆笑恶作剧', 'http://47.95.172.168/channel/2345.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/2d80fc884bbb80a3/225f7019c6aaa893bea5b83d3a056039/813089e7aa7f7e9a.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1831', '萌仔萌萌宅', 'http://47.95.172.168/channel/2361.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/f7d2ffbbe47e35ca/2a3a9120a255680aeee10e3b1f440f8e/5dde6138c35e4a4b.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1832', '熊出没之探险日记', 'http://47.95.172.168/channel/2370.m3u8', '#', '#', '23', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/071d8d62af7bea53/c2bfa3c3009190c58acb1ff404934847/c541dd7ca4e9e963.jpg', '', '', '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1833', '绝地求生', 'http://47.95.172.168/channel/2380.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/5995dce1ed66ce6c/f0df32dd9b490e4e52e554cdb04f5149/a995245284f2c62e.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1834', '爆笑运动会', 'http://47.95.172.168/channel/2387.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/400ccfeff00174ce/c20629908241c7721c2add622b27d7d7/12843aca43c7503b.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1835', '本周电影TOP10', 'http://47.95.172.168/channel/2399.m3u8', '#', '#', '6', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/892affbf0ca609fa/5973b694e30a5791599eb7f487aef6c8/cd90c4842503621a.jpg', '', '', '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1836', '放学别走', 'http://47.95.172.168/channel/2410.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/1bb15c18760a4823/4eefc35e21c5dd507b298f3b3b0b9abb/dd66731a055fe26a.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1837', '相声合集', 'http://47.95.172.168/channel/2418.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/3f5bf8b2c00b90d1/ebcdaf4e9439ed7c4c00379ca6384f96/cdcb1301e1b8f1a7.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1838', '爆笑喜剧让你开心一整年', 'http://47.95.172.168/channel/2421.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/7fd1df75798db4ed/18b737e641dea9d15f7a2dac2bedb323/7ab8062d75b542f7.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1839', '2017洗脑神曲', 'http://47.95.172.168/channel/2429.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/10795719f7a7914a/0c7b20778f9cf9fb0e74b02d920c9bcf/962fbbec0c2a3423.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1840', '声临其境', 'http://47.95.172.168/channel/2434.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, null, null, null, '0', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1841', '歌手2018', 'http://47.95.172.168/channel/2437.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, null, null, null, '0', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1842', '最戳你笑点的小品', 'http://47.95.172.168/channel/2441.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, null, null, null, '0', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1843', '武侠修仙动漫', 'http://47.95.172.168/channel/2444.m3u8', '#', '#', '23', '0', '0', '0', '100000', '0', '0', '', '', '', '', '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1845', '童谣100首', 'http://47.95.172.168/channel/2456.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, null, null, null, '0', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1846', '恋爱先生', 'http://47.95.172.168/channel/2461.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/3183fc21acb07e30/098c42484e12d697c911427568e9e11f/81c412ec331c2a94.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1847', '2017十大犯罪类电影', 'http://47.95.172.168/channel/2463.m3u8', '#', '#', '6', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/3d4233a54febe35f/bf7749c3affb8e15de2f623db67a7185/014fbfd1b23b6b97.jpg', '', '', '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1848', '英文儿歌100首', 'http://47.95.172.168/channel/2473.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/ee79d5e1b7c2b698/105bc5811e6a3eb56cf8ae4c2312ba4a/0103e20d0ace1ea3.jpg', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1849', '凤囚凰', 'http://47.95.172.168/channel/2487.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, null, null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1850', '小沈阳', 'http://47.95.172.168/channel/2499.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/a2dbd487d350f43e/7595cd4750f3a5132bf02e5bc5de0c43/4ca47348da8600c1.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1851', '赵丽颖电视剧全集', 'http://47.95.172.168/channel/2501.m3u8', '#', '#', '16', '0', '0', '0', '100000', '0', '0', '', '', '', '', '0', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1852', '周润发电影全集', 'http://47.95.172.168/channel/2507.m3u8', '#', '#', '6', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/907353eab452f433/67a8c29311399935b65c112dbc93dfe7/9fbbb1e728216497.jpg', '', '', '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1853', 'Miss吃鸡日记', 'http://47.95.172.168/channel/2508.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/39621ac65f498eab/db33cfbce569849e3f2d7cfce38125fd/40009690c02115be.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1855', '我的前半生', 'http://47.95.172.168/channel/2518.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/2f27e0f4118efff1/45aeecd8367fbb37b7dfa74ea48d61ec/b791e9ad948a4de3.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1856', '2017金曲TOP100', 'http://47.95.172.168/channel/2520.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/2d3e87a73061fb3b/5b2d428625f42bff35873fa1877820db/ca914c2ec135c330.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1857', '谈判官', 'http://47.95.172.168/channel/2545.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/0b8a5ff739b7d678/31c6991fc14c9b1b5c1bcd1407cdd3d4/439d55c2ba2a6eac.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1858', '华晨宇', 'http://47.95.172.168/channel/2550.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, null, null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1859', '可惜不是你', 'http://47.95.172.168/channel/2554.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/cb3213ada4830295/3cb0f166464ab356fa2093fecd6973f4/dfd4d8f2b7147d88.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1860', '今日说法', 'http://47.95.172.168/channel/2555.m3u8', '#', '#', '8', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/7560ba797b2768ea/28e347a612480a84db97e3909c106f4d/b7f36490a5cfa3fa.jpg', '', '', '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1861', '合家欢!春节经典贺岁片', 'http://47.95.172.168/channel/2558.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/8e2055cb2b794f69/9c7587b98cf88c3830a977a5453a6a26/8d79a77caaf14322.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1862', '超经典!银幕黄金搭档', 'http://47.95.172.168/channel/2560.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/6d9d886a011ba294/3c31f5c27e1bb80baad92567225d700b/4408b63e7fe0f9c8.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1863', '孙悟空!哪部你最爱', 'http://47.95.172.168/channel/2561.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/1fb6f31ef3dac9ee/92b78fbbbaf532b4897a0f6b6c3c8dec/7dbbce14fb169efc.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1866', '航拍中国', 'http://47.95.172.168/channel/2582.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/af5ca04b5c01fa83/bf1b679ce0bbde6ffa3dfddf4ade3205/2df3cabb873d961d.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1867', '百变大咖秀', 'http://47.95.172.168/channel/2584.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/9b62b9369f57eba5/55c6f4aed138207afb7850115a917d3a/b720269da3e667de.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1868', '亲爱的翻译官', 'http://47.95.172.168/channel/2593.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/99f463038fbcf182/d7988dbb7474e2e08c502e31ee5f4c00/72c7056fff2cb88d.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1869', '浪漫韩剧', 'http://47.95.172.168/channel/2598.m3u8', '#', '#', '9', '0', '0', '0', '100000', '0', '0', '', '', '', '', '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1870', '新闻大求真', 'http://47.95.172.168/channel/2599.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/2d4ed3b30fbbe86b/239601924f8d89d47faa7ab718e8975c/774d43ef3a2f047e.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1871', '熊鼠一家', 'http://47.95.172.168/channel/2603.m3u8', '#', '#', '23', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/7d0c5dcce206d1a1/80df48ebcbd42e330959768e03df8e63/6579e41f3f9d2ea2.jpg', '', '', '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1872', '萌鸡小队', 'http://47.95.172.168/channel/2604.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/1abe5e081fef63c8/7139072a6e98c9767b3b85acc94d2df9/ba27b7188e30d667.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1873', '林正英经典电影', 'http://47.95.172.168/channel/2606.m3u8', '#', '#', '6', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/939fdd79617b7d67/9d5fb7a0073fd6ada3a02d33f80222f3/9b0186cb459611f7.jpg', '', '', '25', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1874', '粤听越经典', 'http://47.95.172.168/channel/2609.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, null, null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1875', '了不起我的国', 'http://47.95.172.168/channel/2610.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/d1f63e34d94df6ff/4ff58ef8351875e13e178892a35e79fe/2c5b34d06a8186b8.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1876', '老男孩', 'http://47.95.172.168/channel/2616.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/bbdac3ff65517185/5e614eef4eb97f77252eea6c71cc7e5f/d086ad26541740cb.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1877', '妈妈是超人3', 'http://47.95.172.168/channel/2630.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/db68c24a33cac9d5/91bcf63e60c4cc8fe9433fc14b27c2c9/07dad393b9c2626d.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1878', '地道湘菜', 'http://47.95.172.168/channel/2640.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/f54c804b33e58cc1/52109d4b66a47e2a6ca57d2774f04ac8/acf3d2b10f0338f4.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1879', '经典粤菜', 'http://47.95.172.168/channel/2642.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/e93edbb359d10570/adf37b2e43370b164031fb994b60da8f/b0f7ddc1805441a8.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1880', '简单做西餐', 'http://47.95.172.168/channel/2643.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/2c3704b997882270/404d5380266826ec914f4ea928e1df25/ba9a054626fadfe9.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1881', '少女心炸裂美食', 'http://47.95.172.168/channel/2644.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/99e314b1b4370677/3153e7ef375fc68c233d73b48e58f468/c7ba79c07a84cbca.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1882', '100道减脂沙拉', 'http://47.95.172.168/channel/2646.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, null, null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1883', '贾冰', 'http://47.95.172.168/channel/2658.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/88eb513f8f12239c/82ae075d084045780c04f8c515ed6741/850d0ef3efbfad56.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1884', '佛系少女冯提莫', 'http://47.95.172.168/channel/2664.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/992f0fed0720dbb9/d4e060d03ed531ba9bc5bad143de3456/ed306c6fba62d39c.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1885', '本周推荐人物:张翰', 'http://47.95.172.168/channel/2667.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/0fbadcbe8b2b6612/b48d0fe109db849bd06ea3741c03e92e/0e5f2f4ba8c288b0.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1886', '豆瓣评分9.0冒险电影', 'http://47.95.172.168/channel/2671.m3u8', '#', '#', '6', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/17987b65d867645b/75e0218b503e2377e55fc7f1333cfdc8/a8ef3f972613e7ef.jpg', '', '', '10', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1887', '嘴巴都笑裂了', 'http://47.95.172.168/channel/2672.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/2fc2919f32a06435/d6505250da0b6047ca6ed2184e0a7382/0615ffb7d0795138.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1888', '我是大侦探', 'http://47.95.172.168/channel/2678.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/936f81596c1d0fc2/eaf289e3c77136cf31f5116542233ef0/531e7f10d5ad1c89.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1889', '妖神记', 'http://47.95.172.168/channel/2683.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/b97a6a926acc3336/2bb0f734a270426b329d3f37ea96cc8e/26c42993d6632f3c.jpg', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1890', '东北人就好这口', 'http://47.95.172.168/channel/2688.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/a8fc21015db4f75a/c1bc2269f1e2a58ec08eea47082824a6/afe93c9eaaf51bfd.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1892', '精灵宝可梦系列', 'http://47.95.172.168/channel/2694.m3u8', '#', '#', '23', '0', '0', '0', '100000', '0', '0', '', '', '', '', '0', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1893', '星学院', 'http://47.95.172.168/channel/2703.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/3623f5f708cd883f/4f31d8af4125cebe68cdd7cf8954323c/e3a4329051385e2c.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1894', '郭德纲', 'http://47.95.172.168/channel/2711.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/072446c6aa02c85a/9a91d6a75116def53cf872b7801d76c3/6300376657a592a6.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1895', '兔小贝讲故事', 'http://47.95.172.168/channel/2716.m3u8', '#', '#', '23', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/ef1efc5f3850889e/b8f957df69564c1b2bee829bed951688/9344bb4a675d7e38.jpg', '', '', '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1896', '本月上映电影预告', 'http://47.95.172.168/channel/2719.m3u8', '#', '#', '6', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/7b9c4776c1fc3142/bad2cdf062d90cb7b338e58b59a9ca08/92d2f528f6ae2ae4.jpg', '', '', '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1897', '广场舞教学', 'http://47.95.172.168/channel/2720.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/cbdc5c18ea592c0c/0e15c5a003b21ceabb01f00daaeac676/313d2031dfd1e419.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1898', '中国新闻', 'http://47.95.172.168/channel/2722.m3u8', '#', '#', '8', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/79aadfd373775695/22c12e25d973b68e0da800c3a812fd53/ac47d2b3c788b60a.jpg', '', '', '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1899', '真心大冒险', 'http://47.95.172.168/channel/2726.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/9f855684c47d3fc3/ed51ce64cb89708beaf97045b8700a32/beb561a18842fb36.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1900', '娘亲舅大', 'http://47.95.172.168/channel/2738.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/e9cb54cbc877fe2c/f2bc1293d2ec12549498ed9da593442d/ddeb83b6e0535e61.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1901', '极品小品都在这', 'http://47.95.172.168/channel/2740.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/447b0408b8007833/8810051bb38b177fdb45816a0eeee905/e4fef8adaf366847.jpg', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1902', '欢乐过五一', 'http://47.95.172.168/channel/2741.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/5855bcd129a04ac3/5337b45628a5950259cdb5608720680e/6ff62f151c72e6a8.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1903', '月光公主', 'http://47.95.172.168/channel/2751.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, null, null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1904', '一人之下', 'http://47.95.172.168/channel/2753.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/33e4954478a4c91d/e8be3b9feb28e972b257b3937f0e2722/07bf484c8e0beb59.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1905', '远大前程', 'http://47.95.172.168/channel/2755.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, null, null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1906', '《妈超3》独家彩蛋', 'http://47.95.172.168/channel/2758.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/de75d7216a3dcb75/42fe41c35eed2115c4b81bd050188ff9/ed550d0929efa9f4.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1907', '精灵梦叶罗丽', 'http://47.95.172.168/channel/2759.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/7a1ccfe60223a5bd/a015a388f354cf62949686ecef4ee20a/62d16b4a2d7ccca3.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1908', '奥特曼系列', 'http://47.95.172.168/channel/2760.m3u8', '#', '#', '23', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/a3b2e0d095b2d715/5d1b7739488f9ff1c41a05ccfc63f388/f051f64ba7d2337d.jpg', '', '', '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1909', '十万个冷笑话', 'http://47.95.172.168/channel/2761.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/7e01177afc0c2b2b/42e6503e8e4638ba2a503cef55f09047/1fbc2a26fda0ae83.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1910', '十部恋爱少女必看电影', 'http://47.95.172.168/channel/2763.m3u8', '#', '#', '6', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/fdbf4629c3263061/667034b0bd35e7d9b236326e0bebcea6/064f88b2fe71a080.jpg', '', '', '32', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1911', 'MC同人之方块学园', 'http://47.95.172.168/channel/2764.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, null, null, null, '0', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1912', 'MUZI看世界', 'http://47.95.172.168/channel/2769.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/a61caaecef2f80a8/c8e837640d21c079a6c47f2d71f16ae7/2f7fbcdde7a4ea28.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1913', '金牌投资人', 'http://47.95.172.168/channel/2770.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/3bbaca702e06d308/f803dff42e60c7e0e2329f7f72c45827/d31e6bc2ffd51826.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1914', '密室逃脱', 'http://47.95.172.168/channel/2775.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, null, null, null, '0', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1915', '超级新闻场', 'http://47.95.172.168/channel/2780.m3u8', '#', '#', '8', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/8abf3bb568d1c7ba/57cd3fff7a22880cac9dab4e2a08d5e2/c595cbbf45c5cc78.jpg', '', '', '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1916', '每日新闻报', 'http://47.95.172.168/channel/2781.m3u8', '#', '#', '8', '0', '0', '0', '100000', '0', '0', '', '', '', '', '0', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1917', '开心麻花小品集', 'http://47.95.172.168/channel/2782.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, null, null, null, '0', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1919', '一起哈哈哈', 'http://47.95.172.168/channel/2788.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, null, null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1920', '偶像练习生BGM合集', 'http://47.95.172.168/channel/2789.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/e0613000bcd426e1/9c29ad052aa7ea498697b0e913b66de7/9d5edfb73cdf07ca.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1921', '京剧猫', 'http://47.95.172.168/channel/2791.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/3b5481bace900036/31ec0faa495c1d13b61868418a795826/2112355435af49f4.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1922', '海底小纵队', 'http://47.95.172.168/channel/2792.m3u8', '#', '#', '23', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/97b0724d4dc613ce/5bde0fcbe9267b71603a7cc07fd43fa7/caaf863203a6ce89.jpg', '', '', '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1923', '阿米尔汗电影合集', 'http://47.95.172.168/channel/2793.m3u8', '#', '#', '6', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/e7d394a3b9082264/ac8c53b6a885df1c9f91502855a23543/70589c9e706f5d87.jpg', '', '', '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1924', '夏至未至', 'http://47.95.172.168/channel/2796.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/403f70c5bb6073bc/d7b5a2f97fdaacd347d3158fe13ecae9/4d599d4973a374e8.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1925', '铁血军事', 'http://47.95.172.168/channel/2800.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/2e02c190c1158d58/c19ba6dceb02a5b8aec3203c4f1f8c85/8cc8a3b19cd3d442.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1926', '历史风云', 'http://47.95.172.168/channel/2801.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, null, null, null, '0', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1927', '2018香港金像奖获奖影片', 'http://47.95.172.168/channel/2804.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, null, null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1928', '向往的生活2', 'http://47.95.172.168/channel/2807.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/c8a61dae2bce93f8/5326c4321e0b3a5134db44f07403f135/f7f88db2718019d2.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1929', '肉丸子的天空', 'http://47.95.172.168/channel/2808.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, null, null, null, '0', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1930', '斗龙战士', 'http://47.95.172.168/channel/2810.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, null, null, null, '0', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1931', '妈妈是超人1', 'http://47.95.172.168/channel/2812.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, null, null, null, '0', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1932', '黄磊私房菜', 'http://47.95.172.168/channel/2815.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/01c6a8bb693161df/23f88256318453b1ec65ffa72e860873/aff35bae359113ac.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1933', '世界多美丽', 'http://47.95.172.168/channel/2816.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, null, null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1934', '嗯哼咘咘宠妈日记', 'http://47.95.172.168/channel/2818.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/8f1598093c04c82a/4dbf0211ede8ed10785f30e3df4b20d9/5c52555df7e31b8b.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1935', '记忆香港 回味港片', 'http://47.95.172.168/channel/2821.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/d91bc9e12d62ec65/e38c949a2aea625855800f507f23744a/2ecc26abc97ccc8e.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1936', '我爱你,中国', 'http://47.95.172.168/channel/2828.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/109d211aa9d2aeb2/bd9db5c6561ed68da95d1c691710d474/2cdcaf7037f63e19.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1937', '我想和你唱3', 'http://47.95.172.168/channel/2830.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, null, null, null, '0', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1938', '奇趣新闻', 'http://47.95.172.168/channel/2831.m3u8', '#', '#', '8', '0', '0', '0', '100000', '0', '0', '', '', '', '', '0', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1939', '愤怒的小鸟', 'http://47.95.172.168/channel/2833.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/b84cafda1c185445/86db506f689a4e59619ce5fef8ff3962/3f01c7fcb2fb8051.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1940', '三只松鼠', 'http://47.95.172.168/channel/2835.m3u8', '#', '#', '23', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/2e5dd1d2ae52daa5/3c862ffa6cb6afa189f8f214774c7ec5/5bdbf7912c9ee04a.jpg', '', '', '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1942', '温暖的弦', 'http://47.95.172.168/channel/2838.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/022bcf9acc04feb8/6a6a0435ead93feb264ec29337b3f212/23e2731333d4d954.jpg', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1943', '徐峥电影合集', 'http://47.95.172.168/channel/2840.m3u8', '#', '#', '6', '0', '0', '1', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/13ab292915288fa2/636f26c869f66e988f3ed413b7b1f3b4/1dcf0731decd4cd8.jpg', '', '', '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1944', '嗨,唱起来', 'http://47.95.172.168/channel/2845.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/ba3d6ccd4ceffdb3/bb90df06868c0119fbf90674ad59e43c/351ca2d7914bac61.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1945', '三宝大战诸葛亮', 'http://47.95.172.168/channel/2847.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/04b416786c09e988/ddd7e60d58cfd00e5f112a32f10d7d88/04b65451b7099142.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1946', '新闻当事人', 'http://47.95.172.168/channel/2848.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, null, null, null, '0', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1947', '大咖创始人访谈录', 'http://47.95.172.168/channel/2849.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, null, null, null, '0', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1948', '超级工程', 'http://47.95.172.168/channel/2850.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/425e618ba6834cdf/f3e5235a648d7a494c32ad344b09ff87/2f942b6d2196e720.jpg', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1949', '方言小品', 'http://47.95.172.168/channel/2851.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, null, null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1950', '刘德华电影全集', 'http://47.95.172.168/channel/2858.m3u8', '#', '#', '6', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/dae331b18fc83fdc/b5ce51ad750cdac4853eb88369bb4a35/41afd00e524eaf9b.jpg', '', '', '5', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1951', '青春疼痛电影', 'http://47.95.172.168/channel/2859.m3u8', '#', '#', '6', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/323566d872808302/651bca7efa889e380c0b32720690ca11/441ad77c3c64af93.jpg', '', '', '47', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1952', '王者荣耀进阶攻略', 'http://47.95.172.168/channel/2860.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/80e5e3a12c47894a/7ed0edc686038b9200239cfccf06b9e6/2c41ba24b9611313.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1953', '千金归来', 'http://47.95.172.168/channel/2861.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/1d483c15db2d208f/55079b85c043f71dc94d9ea371a7d06a/8c602aab01fb3091.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1954', '抖音明星秀', 'http://47.95.172.168/channel/2862.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/ed7e63ca36ce9a89/fb1f91511f38ae651b9d7ffccca875a9/079e3b57c24a3113.jpg', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1955', 'TFboys的音乐时光', 'http://47.95.172.168/channel/2863.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/12bbae2430e64011/df78cf114b1001c04160090a26bf2b02/96821aed16f33f51.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1956', '鱼的50种吃法', 'http://47.95.172.168/channel/2865.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/99113167f3b816bd/eb56ff1af6cec7af90b48f1349008108/b07d293210fec411.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1957', '比得兔全集', 'http://47.95.172.168/channel/2867.m3u8', '#', '#', '23', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/f1b9284dfbb56594/b01f0db1e851859dbb7e049e2fef482d/ce7b87a20e05ed01.jpg', '', '', '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1958', '倒霉熊', 'http://47.95.172.168/channel/2868.m3u8', '#', '#', '23', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/1add0ce78de3d922/787cd115f8512b6f4c4bf5a7d17f0d76/00457f386ce8919e.jpg', '', '', '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1959', '疯狂的兔子', 'http://47.95.172.168/channel/2869.m3u8', '#', '#', '23', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/09fe5887fc4fe164/67e9707b5d7ef0a77500f543d4d00b34/abc82287370d1b5d.jpg', '', '', '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1960', '45道爽口小凉菜', 'http://47.95.172.168/channel/2870.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/b9315c6dec9172e5/de2341c8b0a64d284dfb65967ce5a920/58a3fe929977eb0c.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1961', '向往的生活老友记', 'http://47.95.172.168/channel/2871.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/bd0de706cf27e0ce/b56ab753d4d0654b9d371af4a1877b2f/6a83a319aad7c3c1.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1962', '2018欧洲歌唱大赛', 'http://47.95.172.168/channel/2873.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/dc263f43fb50db47/33d16749f4da50544586d6d0f6e8aa12/96cad40f7cf3f809.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1963', '历届戛纳华人评委电影集', 'http://47.95.172.168/channel/2878.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/3ced1f0723c9157c/3d9eb2fcec05baff39fcf1f523bc1198/5d97e49da7ff27b6.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1964', '《复仇者联盟3》精彩看点', 'http://47.95.172.168/channel/2881.m3u8', '#', '#', '6', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/01b7575c38dac42f/3cfb7d500438b875e5984218cfd32f9a/6c602f45b965d2ef.jpg', '', '', '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1965', '狂野动物王国', 'http://47.95.172.168/channel/2882.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/fb598cb494b6e982/53995d800fab908d30a250583bc20cf0/70ab6c9189508fcc.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1966', '萌宠逗你玩', 'http://47.95.172.168/channel/2883.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, null, null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1967', 'OMG蜜糖辣妈', 'http://47.95.172.168/channel/2885.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, null, null, null, '0', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1968', '海底世界的秘密', 'http://47.95.172.168/channel/2886.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, null, null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1969', '解密紫禁城', 'http://47.95.172.168/channel/2887.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/eb583b654ca1b3e6/f64f69831bbb18b38a2d334536b2f414/6af8cf46acd85110.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1970', '爱笑小品屋', 'http://47.95.172.168/channel/2888.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/8168229805ac673e/f3577a1af234c323a07fbf1485cba978/42866a145d3b68c3.jpg', null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1971', '甜虐燃!泰国电影合集', 'http://47.95.172.168/channel/2889.m3u8', '#', '#', '6', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/03fa53a658469b89/6ddb745d2706d470d755d3dc38185ac6/61f17b70cf4ab478.jpg', '', '', '6', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1972', '玄幻片!神鬼仙侠传奇', 'http://47.95.172.168/channel/2890.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/a98b7354c31f52cc/bc2cb22273127fff5a52499520e1a57c/f6daa1dd645fc85c.jpg', null, null, '3', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1973', '绝地求生搞笑合集', 'http://47.95.172.168/channel/2891.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/ea23c26287b9cf0d/45cdb66225dd2532c908ec320f803c55/9792b5b23ac0688b.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1974', '跨界歌王', 'http://47.95.172.168/channel/2892.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/3e87e53f8157aad9/d4a05e3f567c1a928b4da25adc4929c2/5c3a184698dd3961.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1975', '长腿妹纸热舞秀', 'http://47.95.172.168/channel/2893.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/2ef1bbdc45ad8e0a/baa18d187033bca2d878ff69f51f20f1/5d0b5c18e09bcf10.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1976', '游戏就该这么玩', 'http://47.95.172.168/channel/2894.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/32e353eaf96e7e23/97819a5dbaad81ba6a80f2ad74fa2f09/70862d9e35b138a5.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1977', '觅食迹', 'http://47.95.172.168/channel/2895.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/e05704968a3070a2/e5e3f1c2d77da9f5fb30cdaec2710324/a027c67cf51244cb.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1978', '54款果蔬汁', 'http://47.95.172.168/channel/2896.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, null, null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1979', '叫我僵小鱼', 'http://47.95.172.168/channel/2897.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/3a080e566c9b67f3/ebec50ee9d7ffb3835546fe150214a15/830166d1240be2db.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1980', '甜炸!霸道总裁也柔情', 'http://47.95.172.168/channel/2898.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/2fc945b56027d462/46ba4c860758b0da29d750e5ac458ca5/72dfe267436a847f.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1981', '《归去来》倒计时1天', 'http://47.95.172.168/channel/2899.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/8d1b6bd626121f91/b2b12ac0c6ba09059bdc7811df102dd1/b1bed4b8c4b9a475.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1982', '鸡的40种吃法', 'http://47.95.172.168/channel/2900.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, null, null, null, '0', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1983', '母亲节,温暖示爱指南', 'http://47.95.172.168/channel/2901.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, null, null, null, '0', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1984', '三分钟追剧', 'http://47.95.172.168/channel/2902.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, null, null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1985', '一禅小和尚', 'http://47.95.172.168/channel/2904.m3u8', '#', '#', '23', '0', '0', '0', '100000', '0', '0', '', '', '', '', '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1986', '积高侠与阿里巴巴', 'http://47.95.172.168/channel/2905.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/05cd9795646d1077/a743ada13fbc2c62a2009556541dfee3/8d822cf642d80b8c.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1987', '新天线宝宝', 'http://47.95.172.168/channel/2906.m3u8', '#', '#', '23', '0', '0', '0', '100000', '0', '0', '', 'http://webapi.abigfish.net/static/upload/e6def24b1dfd5adc/86b11066a32a9d59b136f93c7eae6130/e704ec78b945d5c6.jpg', '', '', '4', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1988', '娱乐圈人气辣妈了解下', 'http://47.95.172.168/channel/2907.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, null, null, null, '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1989', '汶川地震10年祭特别报道', 'http://47.95.172.168/channel/2908.m3u8', '#', '#', '5', '0', '0', '0', '100000', null, null, null, 'http://webapi.abigfish.net/static/upload/16e4e18e4779ab2e/dc89086b1989759cabbdec943eb78cfd/58f21c55dad9c363.jpg', null, null, '1', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1990', 'BTV-纪实', 'http://223.110.243.155:80/PLTV/3/224/3221227397/1.m3u8', '#', '#', '4', '0', '0', '0', '100000', '110000', '110100', '', 'http://webapi.abigfish.net/static/upload/a94589cf43e8ec17/e83570b720109b949f4dec2938812d04/faaa597f675f57db.jpg', '', '', '39', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1991', 'ARENA SPORT 1', 'http://163.172.220.115:8080/arena/arenasp1/index.m3u8', '#', '#', '3', '0', '0', '0', '100000', '0', '0', '', '', '', '', '1', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1992', '新视觉', 'http://azure-kknews.live.bestvcdn.com.cn/live/program/Dkankan.live.bestvcdn.com.cnD/_M/xwzh/M_key5BA4D0B27F09F3D61DEF864FA12F1C8DC157C22748153B54D758192A87A7F283_/live/xsjhd/4000000/mnf.m3u8', '#', '#', '3', '0', '0', '0', '100000', '0', '0', '', '', '', '', '1', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1993', 'NBA', 'http://31.220.0.134:8081/live/nba/playlist.m3u8', '#', '#', '3', '0', '0', '0', '100000', '0', '0', '', '', '', '', '2', '0', '0', '1', null);
INSERT INTO `t_television` VALUES ('1994', 'cctv-17', 'http://ott.fj.chinamobile.com/PLTV/88888888/224/3221226990/1.m3u8', 'http://ott.fj.chinamobile.com/PLTV/88888888/224/3221226986/1.m3u8', '#', '2', '0', '0', '0', '100000', '0', '0', '', '', 'cctv-17', '', '0', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1996', '健康有约', 'http://ott.fj.chinamobile.com/PLTV/88888888/224/3221225883/1.m3u8', '#', '#', '9', '0', '0', '0', '100000', '0', '0', '', '', '', '', '0', '0', '0', '0', null);
INSERT INTO `t_television` VALUES ('1997', '超级电影', 'http://ott.fj.chinamobile.com/PLTV/88888888/224/3221225804/1.m3u8', 'http://ott.fj.chinamobile.com/PLTV/88888888/224/3221225926/1.m3u8', '#', '6', '0', '0', '0', '100000', '0', '0', '', '', '', '', '0', '0', '0', '0', null);