-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcctv_all_results.txt
3891 lines (3891 loc) · 310 KB
/
cctv_all_results.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
CCTV1_电信_内蒙,http://111.126.77.93:808/hls/101/index.m3u8,0.711 MB/s
CCTV1_电信_北京,http://115.171.251.148:8888/udp/225.1.8.1:8008,0.580 MB/s
CCTV1_电信_北京,http://115.171.251.148:8888/udp/225.1.8.101:8080,0.297 MB/s
CCTV1_电信_北京,http://115.171.216.22:4000/udp/225.1.8.101:8080,0.219 MB/s
CCTV1_电信_四川,http://125.71.122.30:8888/udp/239.93.0.184:5140,0.571 MB/s
CCTV1_电信_四川,http://182.149.106.41:8888/udp/239.93.0.184:5140,0.549 MB/s
CCTV1_电信_四川,http://118.114.188.36:8888/udp/239.93.0.184:5140,0.544 MB/s
CCTV1_电信_四川,http://110.188.37.163:55555/udp/239.93.0.184:5140,0.526 MB/s
CCTV1_电信_四川,http://171.88.35.80:4000/udp/239.93.0.184:5140,0.244 MB/s
CCTV1_电信_安徽,http://114.98.190.41:2000/rtp/238.1.78.166:7200,0.610 MB/s
CCTV1_电信_安徽,http://114.98.188.23:2000/rtp/238.1.78.166:7200,0.604 MB/s
CCTV1_电信_安徽,http://117.66.254.58:2000/rtp/238.1.78.166:7200,0.592 MB/s
CCTV1_电信_安徽,http://117.64.156.177:8888/rtp/238.1.78.166:7200,0.562 MB/s
CCTV1_电信_山东,http://182.32.160.10:9997/udp/239.21.1.120:5002,0.601 MB/s
CCTV1_电信_山东,http://182.32.160.10:9997/udp/239.21.1.1:5002,0.288 MB/s
CCTV1_电信_山西,http://223.10.23.41:8085/udp/239.1.1.7:8007,0.552 MB/s
CCTV1_电信_山西,http://223.10.24.101:8083/udp/239.1.1.7:8007,0.529 MB/s
CCTV1_电信_广东,http://113.78.253.125:8888/udp/239.77.0.86:5146,0.621 MB/s
CCTV1_电信_广东,http://14.216.239.140:8888/udp/239.77.1.144:5146,0.618 MB/s
CCTV1_电信_广东,http://14.216.239.140:8888/udp/239.77.1.17:5146,0.618 MB/s
CCTV1_电信_广东,http://14.216.239.140:8888/udp/239.77.0.86:5146,0.618 MB/s
CCTV1_电信_广东,http://14.117.234.16:9000/udp/239.77.0.86:5146,0.615 MB/s
CCTV1_电信_广东,http://14.117.234.16:9000/udp/239.77.1.17:5146,0.612 MB/s
CCTV1_电信_广东,http://125.92.101.148:8899/udp/239.77.0.86:5146,0.609 MB/s
CCTV1_电信_广东,http://113.67.166.23:8889/udp/239.77.1.17:5146,0.608 MB/s
CCTV1_电信_广东,http://125.92.101.148:8899/udp/239.77.1.144:5146,0.607 MB/s
CCTV1_电信_广东,http://113.67.166.23:8889/udp/239.77.0.86:5146,0.606 MB/s
CCTV1_电信_广东,http://14.117.234.16:9000/udp/239.77.1.144:5146,0.604 MB/s
CCTV1_电信_广东,http://125.92.101.148:8899/udp/239.77.1.17:5146,0.597 MB/s
CCTV1_电信_广东,http://113.67.166.23:8889/udp/239.77.1.144:5146,0.597 MB/s
CCTV1_电信_广东,http://113.75.183.99:2086/udp/239.77.0.86:5146,0.588 MB/s
CCTV1_电信_广东,http://218.19.110.134:9999/udp/239.77.1.17:5146,0.587 MB/s
CCTV1_电信_广东,http://114.98.188.23:2000/rtp/238.1.78.166:7200,0.586 MB/s
CCTV1_电信_广东,http://218.19.110.134:9999/udp/239.77.0.86:5146,0.584 MB/s
CCTV1_电信_广东,http://113.75.183.99:2086/udp/239.77.1.17:5146,0.581 MB/s
CCTV1_电信_广东,http://14.145.232.2:8888/udp/239.77.0.86:5146,0.572 MB/s
CCTV1_电信_广东,http://113.75.183.99:2086/udp/239.77.1.144:5146,0.570 MB/s
CCTV1_电信_广东,http://113.100.72.95:8899/udp/239.77.1.144:5146,0.495 MB/s
CCTV1_电信_广东,http://14.19.199.43:8089/hls/20/index.m3u8,0.001 MB/s
CCTV1_电信_江西,http://117.44.1.159:20000/hls/1/index.m3u8,1.108 MB/s
CCTV1_电信_河南,http://222.88.207.5:808/hls/1/index.m3u8,1.065 MB/s
CCTV1_电信_河南,http://222.89.29.199:808/hls/1/index.m3u8,0.001 MB/s
CCTV1_电信_浙江,http://125.110.26.33:8044/rtp/233.50.201.118:5140,0.598 MB/s
CCTV1_电信_浙江,http://218.71.36.138:9999/rtp/233.50.201.118:5140,0.429 MB/s
CCTV1_电信_浙江,http://122.234.76.0:4022/rtp/233.50.201.118:5140,0.302 MB/s
CCTV1_电信_海南,http://36.101.6.96:554/rtp/239.253.64.120:5140,0.607 MB/s
CCTV1_电信_海南,http://36.101.6.96:554/rtp/239.253.64.12:5140,0.300 MB/s
CCTV1_电信_湖北,http://59.175.18.100:8888/rtp/239.254.96.96:8550,0.575 MB/s
CCTV1_电信_湖北,http://119.98.125.196:4022/rtp/239.254.96.96:8550,0.559 MB/s
CCTV1_电信_湖南,http://118.254.159.80:8888/udp/239.76.253.151:9000,0.606 MB/s
CCTV1_电信_湖南,http://118.251.69.109:4022/udp/239.76.246.151:1234,0.570 MB/s
CCTV1_电信_湖南,http://118.251.69.109:4022/udp/239.76.253.151:9000,0.544 MB/s
CCTV1_电信_湖南,http://118.254.159.80:8888/udp/239.76.246.151:1234,0.136 MB/s
CCTV1_电信_西藏,http://220.182.45.198:20088/tsfile/live/0001_2.m3u8,0.001 MB/s
CCTV1_电信_重庆,http://113.251.180.215:4022/rtp/235.254.198.51:1480,0.570 MB/s
CCTV1_电信_重庆,http://113.251.180.215:4022/rtp/235.254.198.1:1280,0.295 MB/s
CCTV1_电信_陕西,http://219.145.19.145:4000/rtp/239.112.205.59:5140,0.580 MB/s
CCTV1_电信_陕西,http://219.145.19.7:5558/rtp/239.112.205.59:5140,0.569 MB/s
CCTV1_电信_陕西,http://219.145.19.213:5555/rtp/239.112.205.59:5140,0.537 MB/s
CCTV1_电信_陕西,http://117.23.162.73:9001/rtp/239.112.205.59:5140,0.531 MB/s
CCTV1_电信_陕西,http://222.90.48.33:9999/rtp/239.112.205.59:5140,0.517 MB/s
CCTV1_电信_陕西,http://113.133.233.177:8011/rtp/239.112.205.59:5140,0.510 MB/s
CCTV1_电信_陕西,http://113.133.233.177:8014/rtp/239.112.205.59:5140,0.504 MB/s
CCTV1_移动,http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225804/index.m3u8,0.001 MB/s
CCTV1_移动,http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226231/1.m3u8,0.001 MB/s
CCTV1_移动,http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226231/index.m3u8,0.001 MB/s
CCTV1_移动,http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226016/index.m3u8,0.001 MB/s
CCTV1_移动_山东,http://120.224.7.90:809/hls/200/index.m3u8,0.001 MB/s
CCTV1_联通_内蒙,http://116.116.118.78:9999/udp/239.125.2.66:4120,0.544 MB/s
CCTV1_联通_内蒙,http://116.116.118.78:9999/udp/239.125.1.177:4130,0.297 MB/s
CCTV1_联通_内蒙,http://110.7.128.156:8096/tsfile/live/0001_1.m3u8,0.001 MB/s
CCTV1_联通_内蒙,http://116.112.42.199:808/hls/101/index.m3u8,0.001 MB/s
CCTV1_联通_北京,http://114.250.19.220:33333/rtp/239.3.1.129:8008,0.603 MB/s
CCTV1_联通_北京,http://123.115.116.115:4000/rtp/239.3.1.129:8008,0.600 MB/s
CCTV1_联通_北京,http://114.243.106.222:8821/rtp/239.3.1.129:8008,0.596 MB/s
CCTV1_联通_北京,http://222.129.98.92:8888/rtp/239.3.1.129:8008,0.590 MB/s
CCTV1_联通_北京,http://221.221.159.57:8182/rtp/239.3.1.129:8008,0.589 MB/s
CCTV1_联通_北京,http://123.118.48.192:9000/rtp/239.3.1.129:8008,0.586 MB/s
CCTV1_联通_北京,http://123.115.195.226:8888/rtp/239.3.1.129:8008,0.586 MB/s
CCTV1_联通_北京,http://123.117.32.124:4000/rtp/239.3.1.129:8008,0.578 MB/s
CCTV1_联通_北京,http://111.201.166.36:10000/rtp/239.3.1.129:8008,0.567 MB/s
CCTV1_联通_北京,http://123.122.162.5:19999/rtp/239.3.1.129:8008,0.559 MB/s
CCTV1_联通_北京,http://123.113.100.181:4022/rtp/239.3.1.129:8008,0.550 MB/s
CCTV1_联通_北京,http://222.129.36.84:8888/rtp/239.3.1.129:8008,0.537 MB/s
CCTV1_联通_北京,http://221.218.212.142:8012/rtp/239.3.1.129:8008,0.535 MB/s
CCTV1_联通_北京,http://125.33.179.15:5555/rtp/239.3.1.129:8008,0.497 MB/s
CCTV1_联通_北京,http://111.196.130.206:20000/rtp/239.3.1.129:8008,0.490 MB/s
CCTV1_联通_北京,http://114.254.85.234:2222/rtp/239.3.1.129:8008,0.473 MB/s
CCTV1_联通_北京,http://114.245.179.5:10000/rtp/239.3.1.129:8008,0.320 MB/s
CCTV1_联通_北京,http://114.254.89.130:8020/rtp/239.3.1.129:8008,0.241 MB/s
CCTV1_联通_吉林,http://119.54.12.6:9999/hls/1/index.m3u8,1.036 MB/s
CCTV1_联通_吉林,http://119.54.9.138:9999/hls/1/index.m3u8,0.903 MB/s
CCTV1_联通_四川,http://119.4.83.117:55555/udp/239.93.0.184:5140,0.515 MB/s
CCTV1_联通_天津,http://221.198.174.113:8888/udp/225.1.1.120:5002,0.535 MB/s
CCTV1_联通_山西,http://221.205.18.64:8888/hls/1/index.m3u8,0.632 MB/s
CCTV1_联通_山西,http://171.116.210.162:8003/rtp/226.0.2.16:8040,0.600 MB/s
CCTV1_联通_山西,http://118.81.201.143:8085/rtp/226.0.2.153:9136,0.596 MB/s
CCTV1_联通_山西,http://171.118.108.99:8084/rtp/226.0.2.16:8040,0.582 MB/s
CCTV1_联通_山西,http://118.81.201.143:8085/rtp/226.0.2.16:8040,0.579 MB/s
CCTV1_联通_山西,http://60.223.72.253:8001/rtp/226.0.2.16:8040,0.576 MB/s
CCTV1_联通_山西,http://171.120.109.234:8085/rtp/226.0.2.153:9136,0.575 MB/s
CCTV1_联通_山西,http://171.117.180.171:8085/rtp/226.0.2.16:8040,0.571 MB/s
CCTV1_联通_山西,http://171.117.180.171:8085/rtp/226.0.2.153:9136,0.570 MB/s
CCTV1_联通_山西,http://171.120.109.234:8085/rtp/226.0.2.16:8040,0.568 MB/s
CCTV1_联通_山西,http://171.120.111.89:8085/rtp/226.0.2.153:9136,0.563 MB/s
CCTV1_联通_山西,http://116.179.130.242:6000/rtp/226.0.2.153:9136,0.558 MB/s
CCTV1_联通_山西,http://171.116.211.70:8005/rtp/226.0.2.16:8040,0.558 MB/s
CCTV1_联通_山西,http://183.184.138.144:8085/rtp/226.0.2.153:9136,0.554 MB/s
CCTV1_联通_山西,http://183.188.20.168:6000/rtp/226.0.2.153:9136,0.552 MB/s
CCTV1_联通_山西,http://116.179.130.242:6000/rtp/226.0.2.16:8040,0.552 MB/s
CCTV1_联通_山西,http://171.116.71.69:8084/rtp/226.0.2.153:9136,0.551 MB/s
CCTV1_联通_山西,http://183.188.20.168:6000/rtp/226.0.2.16:8040,0.549 MB/s
CCTV1_联通_山西,http://221.205.200.128:8085/rtp/226.0.2.153:9136,0.542 MB/s
CCTV1_联通_山西,http://221.205.201.55:8085/rtp/226.0.2.16:8040,0.537 MB/s
CCTV1_联通_山西,http://221.205.201.55:8085/rtp/226.0.2.153:9136,0.536 MB/s
CCTV1_联通_山西,http://171.120.111.89:8085/rtp/226.0.2.16:8040,0.533 MB/s
CCTV1_联通_山西,http://171.120.69.226:8005/rtp/226.0.2.16:8040,0.528 MB/s
CCTV1_联通_山西,http://171.120.69.226:8005/rtp/226.0.2.153:9136,0.527 MB/s
CCTV1_联通_山西,http://118.79.114.230:6000/rtp/226.0.2.16:8040,0.526 MB/s
CCTV1_联通_山西,http://183.184.138.144:8085/rtp/226.0.2.16:8040,0.524 MB/s
CCTV1_联通_山西,http://171.116.71.69:8084/rtp/226.0.2.16:8040,0.524 MB/s
CCTV1_联通_山西,http://171.116.211.70:8005/rtp/226.0.2.153:9136,0.523 MB/s
CCTV1_联通_山西,http://171.120.111.64:8085/rtp/226.0.2.153:9136,0.520 MB/s
CCTV1_联通_山西,http://60.223.72.4:8001/rtp/226.0.2.16:8040,0.513 MB/s
CCTV1_联通_山西,http://171.117.180.171:8084/rtp/226.0.2.153:9136,0.511 MB/s
CCTV1_联通_山西,http://171.116.224.177:8085/rtp/226.0.2.16:8040,0.505 MB/s
CCTV1_联通_山西,http://171.120.111.64:8085/rtp/226.0.2.16:8040,0.499 MB/s
CCTV1_联通_山西,http://118.79.114.230:6000/rtp/226.0.2.153:9136,0.495 MB/s
CCTV1_联通_山西,http://221.205.200.128:8085/rtp/226.0.2.16:8040,0.488 MB/s
CCTV1_联通_山西,http://171.117.180.171:8084/rtp/226.0.2.16:8040,0.484 MB/s
CCTV1_联通_山西,http://171.117.202.161:8083/rtp/226.0.2.153:9136,0.476 MB/s
CCTV1_联通_山西,http://171.117.120.54:8083/rtp/226.0.2.16:8040,0.448 MB/s
CCTV1_联通_山西,http://183.188.20.168:6000/rtp/226.0.2.18:8056,0.329 MB/s
CCTV1_联通_山西,http://171.116.71.69:8084/rtp/226.0.2.18:8056,0.328 MB/s
CCTV1_联通_山西,http://118.81.201.143:8085/rtp/226.0.2.18:8056,0.327 MB/s
CCTV1_联通_山西,http://171.120.109.234:8085/rtp/226.0.2.18:8056,0.327 MB/s
CCTV1_联通_山西,http://221.205.201.55:8085/rtp/226.0.2.18:8056,0.327 MB/s
CCTV1_联通_山西,http://221.205.200.128:8085/rtp/226.0.2.18:8056,0.327 MB/s
CCTV1_联通_山西,http://171.117.180.171:8085/rtp/226.0.2.18:8056,0.326 MB/s
CCTV1_联通_山西,http://171.116.224.177:8085/rtp/226.0.2.18:8056,0.325 MB/s
CCTV1_联通_山西,http://171.116.211.70:8005/rtp/226.0.2.18:8056,0.324 MB/s
CCTV1_联通_山西,http://60.223.72.253:8001/rtp/226.0.2.18:8056,0.324 MB/s
CCTV1_联通_山西,http://171.117.180.171:8084/rtp/226.0.2.18:8056,0.323 MB/s
CCTV1_联通_山西,http://171.120.111.64:8085/rtp/226.0.2.18:8056,0.323 MB/s
CCTV1_联通_山西,http://118.79.114.230:6000/rtp/226.0.2.18:8056,0.323 MB/s
CCTV1_联通_山西,http://171.120.69.226:8005/rtp/226.0.2.18:8056,0.323 MB/s
CCTV1_联通_山西,http://116.179.130.242:6000/rtp/226.0.2.18:8056,0.321 MB/s
CCTV1_联通_山西,http://171.117.202.161:8084/rtp/226.0.2.18:8056,0.320 MB/s
CCTV1_联通_山西,http://171.116.210.162:8003/rtp/226.0.2.18:8056,0.315 MB/s
CCTV1_联通_山西,http://171.117.202.161:8084/rtp/226.0.2.153:9136,0.304 MB/s
CCTV1_联通_山西,http://183.184.138.144:8085/rtp/226.0.2.18:8056,0.297 MB/s
CCTV1_联通_山西,http://171.120.111.89:8085/rtp/226.0.2.18:8056,0.270 MB/s
CCTV1_联通_山西,http://171.117.202.161:8083/rtp/226.0.2.18:8056,0.269 MB/s
CCTV1_联通_山西,http://171.117.202.161:8082/rtp/226.0.2.18:8056,0.261 MB/s
CCTV1_联通_山西,http://171.118.108.99:8084/rtp/226.0.2.18:8056,0.232 MB/s
CCTV1_联通_山西,http://171.117.202.161:8082/rtp/226.0.2.16:8040,0.216 MB/s
CCTV1_联通_山西,http://171.117.202.161:8084/rtp/226.0.2.16:8040,0.155 MB/s
CCTV1_联通_河北,http://121.24.98.177:8090/hls/9/index.m3u8,1.134 MB/s
CCTV1_联通_河北,http://120.7.86.85:808/hls/1/index.m3u8,0.948 MB/s
CCTV1_联通_河北,http://120.4.34.234:4000/rtp/239.253.92.83:8012,0.544 MB/s
CCTV1_联通_河北,http://110.253.152.47:8888/rtp/239.253.92.83:8012,0.540 MB/s
CCTV1_联通_河北,http://116.131.173.194:809/hls/101/index.m3u8,0.424 MB/s
CCTV1_联通_河北,http://121.27.126.103:809/hls/101/index.m3u8,0.370 MB/s
CCTV1_联通_河北,http://116.131.173.194:809/hls/1/index.m3u8,0.318 MB/s
CCTV1_联通_河北,http://121.24.99.131:8090/hls/9/index.m3u8,0.001 MB/s
CCTV1_联通_河北,http://121.27.126.103:809/hls/1/index.m3u8,0.001 MB/s
CCTV1_联通_河北,http://121.24.99.44:8090/hls/9/index.m3u8,0.001 MB/s
CCTV1_联通_河南,http://115.59.84.31:8089/rtp/225.1.4.73:1102,0.561 MB/s
CCTV1_联通_河南,http://61.52.26.70:2000/rtp/225.1.4.73:1102,0.527 MB/s
CCTV1_联通_河南,http://61.52.8.160:13579/rtp/225.1.4.73:1102,0.348 MB/s
CCTV1_联通_河南,http://115.59.84.31:8089/rtp/225.1.4.1:1030,0.298 MB/s
CCTV1_联通_河南,http://61.52.26.70:2000/rtp/225.1.4.1:1030,0.297 MB/s
CCTV1_联通_河南,http://61.52.8.160:13579/rtp/225.1.4.1:1030,0.213 MB/s
CCTV1_联通_河南,http://221.15.7.122:8888/rtp/225.1.4.73:1102,0.181 MB/s
CCTV1_联通_河南,http://221.15.7.122:8888/rtp/225.1.4.1:1030,0.165 MB/s
CCTV1_联通_河南,http://219.156.116.168:808/hls/1/index.m3u8,0.001 MB/s
CCTV1_联通_辽宁,http://175.147.76.205:8888/rtp/232.0.0.27:1234,0.555 MB/s
CCTV1_联通_重庆,http://27.11.40.250:8003/udp/225.0.4.74:7980,0.592 MB/s
CCTV1_联通_重庆,http://27.10.213.1:8004/udp/225.0.4.74:7980,0.587 MB/s
CCTV1_联通_重庆,http://113.206.179.208:8005/udp/225.0.4.74:7980,0.573 MB/s
CCTV1_联通_重庆,http://27.10.213.1:8005/udp/225.0.4.74:7980,0.571 MB/s
CCTV1_联通_重庆,http://123.145.12.76:8004/udp/225.0.4.74:7980,0.552 MB/s
CCTV1_联通_重庆,http://113.206.158.89:8004/udp/225.0.4.74:7980,0.547 MB/s
CCTV1_联通_重庆,http://27.10.208.156:8005/udp/225.0.4.74:7980,0.546 MB/s
CCTV1_联通_重庆,http://123.145.76.160:4000/udp/225.0.4.74:7980,0.538 MB/s
CCTV1_联通_重庆,http://27.11.38.238:8004/udp/225.0.4.74:7980,0.534 MB/s
CCTV1_联通_重庆,http://27.10.208.156:8004/udp/225.0.4.74:7980,0.524 MB/s
CCTV1_联通_重庆,http://27.11.249.153:8010/udp/225.0.4.74:7980,0.493 MB/s
CCTV1_联通_重庆,http://27.11.49.156:8009/udp/225.0.4.74:7980,0.435 MB/s
CCTV1_联通_重庆,http://27.11.49.156:8007/udp/225.0.4.74:7980,0.325 MB/s
CCTV1_联通_重庆,http://27.11.49.156:8008/udp/225.0.4.74:7980,0.184 MB/s
CCTV1超清_电信_广东,http://14.216.239.140:8888/udp/239.77.0.129:5146,0.615 MB/s
CCTV1超清_电信_广东,http://14.117.234.16:9000/udp/239.77.0.129:5146,0.610 MB/s
CCTV1超清_电信_广东,http://113.67.166.23:8889/udp/239.77.0.129:5146,0.594 MB/s
CCTV1超清_电信_广东,http://113.75.183.99:2086/udp/239.77.0.129:5146,0.593 MB/s
CCTV1超清_电信_广东,http://218.19.110.134:9999/udp/239.77.0.129:5146,0.576 MB/s
CCTV1超清_电信_广东,http://113.100.72.95:8899/udp/239.77.0.129:5146,0.575 MB/s
CCTV1超清_电信_广东,http://125.92.101.148:8899/udp/239.77.0.129:5146,0.514 MB/s
CETV1_电信_北京,http://115.171.251.148:8888/udp/225.1.8.32:8152,0.524 MB/s
CETV1_电信_北京,http://115.171.251.148:8888/udp/225.1.8.169:4120,0.277 MB/s
CETV1_电信_北京,http://115.171.216.22:4000/udp/225.1.8.169:4120,0.257 MB/s
CETV1_电信_四川,http://125.71.122.30:8888/udp/239.93.1.111:5140,0.558 MB/s
CETV1_电信_四川,http://182.149.106.41:8888/udp/239.93.1.111:5140,0.556 MB/s
CETV1_电信_四川,http://118.114.188.36:8888/udp/239.93.1.111:5140,0.543 MB/s
CETV1_电信_四川,http://171.88.35.80:4000/udp/239.93.1.111:5140,0.539 MB/s
CETV1_电信_四川,http://110.188.37.163:55555/udp/239.93.1.111:5140,0.520 MB/s
CETV1_电信_山东,http://182.32.160.10:9997/udp/239.21.2.7:5002,0.546 MB/s
CETV1_电信_海南,http://36.101.6.96:554/rtp/239.253.64.169:5140,0.613 MB/s
CETV1_电信_海南,http://36.101.6.96:554/rtp/239.253.64.252:5140,0.278 MB/s
CETV1_电信_湖北,http://59.175.18.100:8888/rtp/239.69.1.110:10298,0.562 MB/s
CETV1_电信_湖北,http://119.98.125.196:4022/rtp/239.69.1.110:10298,0.560 MB/s
CETV1_电信_湖北,http://119.98.99.14:8888/rtp/239.69.1.110:10298,0.162 MB/s
CETV1_电信_陕西,http://113.133.233.177:8014/rtp/239.109.205.47:8312,0.327 MB/s
CETV1_电信_陕西,http://219.145.19.145:4000/rtp/239.109.205.47:8312,0.327 MB/s
CETV1_电信_陕西,http://219.145.19.7:5558/rtp/239.112.205.137:5140,0.326 MB/s
CETV1_电信_陕西,http://113.133.233.177:8014/rtp/239.112.205.137:5140,0.326 MB/s
CETV1_电信_陕西,http://113.133.233.177:8011/rtp/239.109.205.47:8312,0.326 MB/s
CETV1_电信_陕西,http://219.145.19.7:5558/rtp/239.109.205.47:8312,0.326 MB/s
CETV1_电信_陕西,http://219.145.19.145:4000/rtp/239.112.205.137:5140,0.326 MB/s
CETV1_电信_陕西,http://222.90.48.33:9999/rtp/239.109.205.47:8312,0.325 MB/s
CETV1_电信_陕西,http://113.133.233.177:8011/rtp/239.112.205.137:5140,0.324 MB/s
CETV1_电信_陕西,http://219.145.19.213:5555/rtp/239.109.205.47:8312,0.324 MB/s
CETV1_电信_陕西,http://222.90.48.33:9999/rtp/239.112.205.137:5140,0.323 MB/s
CETV1_电信_陕西,http://219.145.19.213:5555/rtp/239.112.205.137:5140,0.323 MB/s
CETV1_电信_陕西,http://117.23.162.73:9001/rtp/239.109.205.47:8312,0.322 MB/s
CETV1_电信_陕西,http://117.23.162.73:9001/rtp/239.112.205.137:5140,0.319 MB/s
CETV1_联通_内蒙,http://1.24.190.98:10080/hls/17/index.m3u8,0.374 MB/s
CETV1_联通_北京,http://114.254.89.130:8020/rtp/239.3.1.57:8152,0.716 MB/s
CETV1_联通_北京,http://221.221.159.57:8182/rtp/239.3.1.57:8152,0.633 MB/s
CETV1_联通_北京,http://114.250.19.220:33333/rtp/239.3.1.57:8152,0.596 MB/s
CETV1_联通_北京,http://124.65.3.44:20000/rtp/239.3.1.57:8152,0.596 MB/s
CETV1_联通_北京,http://123.115.195.226:8888/rtp/239.3.1.57:8152,0.596 MB/s
CETV1_联通_北京,http://123.115.116.115:4000/rtp/239.3.1.57:8152,0.594 MB/s
CETV1_联通_北京,http://111.201.166.36:10000/rtp/239.3.1.57:8152,0.581 MB/s
CETV1_联通_北京,http://123.117.32.124:4000/rtp/239.3.1.57:8152,0.580 MB/s
CETV1_联通_北京,http://114.243.106.222:8821/rtp/239.3.1.57:8152,0.578 MB/s
CETV1_联通_北京,http://222.129.36.84:8888/rtp/239.3.1.57:8152,0.577 MB/s
CETV1_联通_北京,http://221.218.212.142:8012/rtp/239.3.1.57:8152,0.574 MB/s
CETV1_联通_北京,http://123.122.162.5:19999/rtp/239.3.1.57:8152,0.560 MB/s
CETV1_联通_北京,http://111.196.130.206:20000/rtp/239.3.1.57:8152,0.551 MB/s
CETV1_联通_北京,http://222.129.98.92:8888/rtp/239.3.1.57:8152,0.543 MB/s
CETV1_联通_北京,http://123.118.48.192:9000/rtp/239.3.1.57:8152,0.528 MB/s
CETV1_联通_北京,http://114.254.85.234:2222/rtp/239.3.1.57:8152,0.514 MB/s
CETV1_联通_北京,http://125.33.179.15:5555/rtp/239.3.1.57:8152,0.442 MB/s
CETV1_联通_北京,http://123.113.9.199:8876/rtp/239.3.1.57:8152,0.440 MB/s
CETV1_联通_北京,http://114.245.179.5:10000/rtp/239.3.1.57:8152,0.302 MB/s
CETV1_联通_吉林,http://119.54.12.6:9999/hls/70/index.m3u8,1.258 MB/s
CETV1_联通_吉林,http://119.54.9.138:9999/hls/70/index.m3u8,0.001 MB/s
CETV1_联通_山西,http://118.81.201.143:8085/rtp/226.0.2.181:9360,0.590 MB/s
CETV1_联通_山西,http://171.117.202.161:8082/rtp/226.0.2.181:9360,0.581 MB/s
CETV1_联通_山西,http://60.223.72.253:8001/rtp/226.0.2.181:9360,0.578 MB/s
CETV1_联通_山西,http://171.116.224.177:8085/rtp/226.0.2.181:9360,0.575 MB/s
CETV1_联通_山西,http://171.120.109.234:8085/rtp/226.0.2.181:9360,0.571 MB/s
CETV1_联通_山西,http://171.116.211.70:8005/rtp/226.0.2.181:9360,0.564 MB/s
CETV1_联通_山西,http://171.120.111.89:8085/rtp/226.0.2.181:9360,0.555 MB/s
CETV1_联通_山西,http://183.188.20.168:6000/rtp/226.0.2.181:9360,0.554 MB/s
CETV1_联通_山西,http://171.117.180.171:8085/rtp/226.0.2.181:9360,0.546 MB/s
CETV1_联通_山西,http://171.116.71.69:8084/rtp/226.0.2.181:9360,0.540 MB/s
CETV1_联通_山西,http://118.79.114.230:6000/rtp/226.0.2.181:9360,0.530 MB/s
CETV1_联通_山西,http://171.120.69.226:8005/rtp/226.0.2.181:9360,0.527 MB/s
CETV1_联通_山西,http://221.205.201.55:8085/rtp/226.0.2.181:9360,0.526 MB/s
CETV1_联通_山西,http://171.117.202.161:8084/rtp/226.0.2.181:9360,0.514 MB/s
CETV1_联通_山西,http://221.205.200.128:8085/rtp/226.0.2.181:9360,0.505 MB/s
CETV1_联通_山西,http://116.179.130.242:6000/rtp/226.0.2.181:9360,0.490 MB/s
CETV1_联通_山西,http://171.117.180.171:8084/rtp/226.0.2.181:9360,0.477 MB/s
CETV1_联通_山西,http://171.120.111.64:8085/rtp/226.0.2.181:9360,0.464 MB/s
CETV1_联通_山西,http://171.117.202.161:8083/rtp/226.0.2.181:9360,0.432 MB/s
CETV1_联通_山西,http://171.116.210.162:8003/rtp/226.0.2.181:9360,0.327 MB/s
CETV1_联通_山西,http://183.184.138.144:8085/rtp/226.0.2.181:9360,0.326 MB/s
CETV1_联通_山西,http://171.117.180.171:8084/rtp/226.0.2.68:8456,0.276 MB/s
CETV1_联通_山西,http://171.116.210.162:8003/rtp/226.0.2.68:8456,0.276 MB/s
CETV1_联通_山西,http://221.205.200.128:8085/rtp/226.0.2.68:8456,0.276 MB/s
CETV1_联通_山西,http://183.188.20.168:6000/rtp/226.0.2.68:8456,0.276 MB/s
CETV1_联通_山西,http://221.205.201.55:8085/rtp/226.0.2.68:8456,0.275 MB/s
CETV1_联通_山西,http://171.118.108.99:8084/rtp/226.0.2.68:8456,0.275 MB/s
CETV1_联通_山西,http://171.117.180.171:8085/rtp/226.0.2.68:8456,0.274 MB/s
CETV1_联通_山西,http://60.223.72.4:8001/rtp/226.0.2.68:8456,0.273 MB/s
CETV1_联通_山西,http://171.120.109.234:8085/rtp/226.0.2.68:8456,0.273 MB/s
CETV1_联通_山西,http://171.116.71.69:8084/rtp/226.0.2.68:8456,0.273 MB/s
CETV1_联通_山西,http://171.117.202.161:8083/rtp/226.0.2.68:8456,0.273 MB/s
CETV1_联通_山西,http://171.120.111.64:8085/rtp/226.0.2.68:8456,0.271 MB/s
CETV1_联通_山西,http://171.120.111.89:8085/rtp/226.0.2.68:8456,0.271 MB/s
CETV1_联通_山西,http://60.223.72.253:8001/rtp/226.0.2.68:8456,0.271 MB/s
CETV1_联通_山西,http://118.79.114.230:6000/rtp/226.0.2.68:8456,0.271 MB/s
CETV1_联通_山西,http://116.179.130.242:6000/rtp/226.0.2.68:8456,0.271 MB/s
CETV1_联通_山西,http://171.120.69.226:8005/rtp/226.0.2.68:8456,0.270 MB/s
CETV1_联通_山西,http://171.116.211.70:8005/rtp/226.0.2.68:8456,0.269 MB/s
CETV1_联通_山西,http://118.81.201.143:8085/rtp/226.0.2.68:8456,0.258 MB/s
CETV1_联通_山西,http://171.120.59.165:8004/rtp/226.0.2.181:9360,0.250 MB/s
CETV1_联通_山西,http://171.117.120.54:8082/rtp/226.0.2.181:9360,0.242 MB/s
CETV1_联通_山西,http://171.117.202.161:8082/rtp/226.0.2.68:8456,0.227 MB/s
CETV1_联通_山西,http://171.117.120.54:8083/rtp/226.0.2.181:9360,0.227 MB/s
CETV1_联通_山西,http://171.117.202.161:8084/rtp/226.0.2.68:8456,0.217 MB/s
CETV1_联通_河北,http://101.23.216.151:8090/hls/67/index.m3u8,0.942 MB/s
CETV1_联通_河北,http://121.24.98.179:8090/hls/67/index.m3u8,0.102 MB/s
CETV1_联通_河北,http://121.24.99.44:8090/hls/67/index.m3u8,0.001 MB/s
中国教育CETV1_电信_安徽,http://114.98.190.41:2000/rtp/238.1.78.158:7136,0.612 MB/s
中国教育CETV1_电信_安徽,http://117.64.156.177:8888/rtp/238.1.78.158:7136,0.600 MB/s
中国教育CETV1_电信_安徽,http://114.98.188.23:2000/rtp/238.1.78.158:7136,0.588 MB/s
中国教育CETV1_电信_安徽,http://117.66.254.58:2000/rtp/238.1.78.158:7136,0.584 MB/s
中国教育CETV1_电信_广东,http://114.98.188.23:2000/rtp/238.1.78.158:7136,0.587 MB/s
CCTV1_联通_内蒙,http://1.24.190.98:10080/hls/1/index.m3u8,1.101 MB/s
CCTV2_电信_北京,http://115.171.251.148:8888/udp/225.1.8.2:8084,0.568 MB/s
CCTV2_电信_北京,http://115.171.251.148:8888/udp/225.1.8.102:8004,0.300 MB/s
CCTV2_电信_四川,http://125.71.122.30:8888/udp/239.93.1.23:6000,0.571 MB/s
CCTV2_电信_四川,http://171.88.35.80:4000/udp/239.93.1.23:6000,0.571 MB/s
CCTV2_电信_四川,http://182.149.106.41:8888/udp/239.93.1.23:6000,0.562 MB/s
CCTV2_电信_四川,http://118.114.188.36:8888/udp/239.93.1.23:6000,0.533 MB/s
CCTV2_电信_四川,http://110.188.37.163:55555/udp/239.93.1.23:6000,0.435 MB/s
CCTV2_电信_安徽,http://114.98.190.41:2000/rtp/238.1.78.235:7752,0.613 MB/s
CCTV2_电信_安徽,http://117.64.156.177:8888/rtp/238.1.78.235:7752,0.603 MB/s
CCTV2_电信_安徽,http://114.98.188.23:2000/rtp/238.1.78.235:7752,0.590 MB/s
CCTV2_电信_安徽,http://117.66.254.58:2000/rtp/238.1.78.235:7752,0.584 MB/s
CCTV2_电信_山东,http://182.32.160.10:9997/udp/239.21.1.151:5002,0.579 MB/s
CCTV2_电信_山东,http://182.32.160.10:9997/udp/239.21.1.2:5002,0.291 MB/s
CCTV2_电信_山西,http://223.10.24.101:8083/udp/239.1.1.8:8008,0.571 MB/s
CCTV2_电信_山西,http://223.10.23.41:8085/udp/239.1.1.8:8008,0.559 MB/s
CCTV2_电信_广东,http://14.216.239.140:8888/udp/239.77.1.158:5146,0.659 MB/s
CCTV2_电信_广东,http://14.216.239.140:8888/udp/239.253.43.17:5146,0.652 MB/s
CCTV2_电信_广东,http://113.78.253.125:8888/udp/239.253.43.17:5146,0.638 MB/s
CCTV2_电信_广东,http://113.67.166.23:8889/udp/239.77.1.158:5146,0.629 MB/s
CCTV2_电信_广东,http://14.117.234.16:9000/udp/239.253.43.17:5146,0.627 MB/s
CCTV2_电信_广东,http://14.117.234.16:9000/udp/239.77.1.158:5146,0.619 MB/s
CCTV2_电信_广东,http://113.67.166.23:8889/udp/239.253.43.17:5146,0.607 MB/s
CCTV2_电信_广东,http://218.19.110.134:9999/udp/239.253.43.17:5146,0.599 MB/s
CCTV2_电信_广东,http://114.98.188.23:2000/rtp/238.1.78.235:7752,0.588 MB/s
CCTV2_电信_广东,http://113.75.183.99:2086/udp/239.77.1.158:5146,0.586 MB/s
CCTV2_电信_广东,http://218.19.110.134:9999/udp/239.77.1.158:5146,0.582 MB/s
CCTV2_电信_广东,http://113.75.183.99:2086/udp/239.253.43.17:5146,0.579 MB/s
CCTV2_电信_广东,http://113.100.72.95:8899/udp/239.77.1.158:5146,0.570 MB/s
CCTV2_电信_广东,http://125.92.101.148:8899/udp/239.77.1.158:5146,0.537 MB/s
CCTV2_电信_广东,http://14.19.199.43:8089/hls/21/index.m3u8,0.002 MB/s
CCTV2_电信_河南,http://222.89.29.199:808/hls/2/index.m3u8,1.092 MB/s
CCTV2_电信_河南,http://222.88.207.5:808/hls/2/index.m3u8,1.045 MB/s
CCTV2_电信_浙江,http://122.234.76.0:4022/rtp/233.50.201.119:5140,0.605 MB/s
CCTV2_电信_浙江,http://125.110.26.33:8044/rtp/233.50.201.119:5140,0.595 MB/s
CCTV2_电信_海南,http://36.101.6.96:554/rtp/239.253.64.195:5140,0.599 MB/s
CCTV2_电信_海南,http://36.101.6.96:554/rtp/239.253.64.13:5140,0.301 MB/s
CCTV2_电信_湖北,http://59.175.18.100:8888/rtp/239.69.1.102:10250,0.587 MB/s
CCTV2_电信_湖北,http://119.98.125.196:4022/rtp/239.69.1.102:10250,0.558 MB/s
CCTV2_电信_湖北,http://119.98.99.14:8888/rtp/239.69.1.102:10250,0.490 MB/s
CCTV2_电信_湖南,http://118.254.159.80:8888/udp/239.76.253.152:9000,0.596 MB/s
CCTV2_电信_湖南,http://118.251.69.109:4022/udp/239.76.253.152:9000,0.567 MB/s
CCTV2_电信_湖南,http://118.251.69.109:4022/udp/239.76.246.152:1234,0.555 MB/s
CCTV2_电信_湖南,http://118.254.159.80:8888/udp/239.76.246.152:1234,0.296 MB/s
CCTV2_电信_西藏,http://220.182.45.198:20088/tsfile/live/0002_1.m3u8,0.321 MB/s
CCTV2_电信_重庆,http://113.251.180.215:4022/rtp/235.254.198.52:1484,0.590 MB/s
CCTV2_电信_重庆,http://113.251.180.215:4022/rtp/235.254.198.2:1284,0.298 MB/s
CCTV2_电信_陕西,http://219.145.19.145:4000/rtp/239.112.205.78:5140,0.599 MB/s
CCTV2_电信_陕西,http://219.145.19.7:5558/rtp/239.112.205.78:5140,0.568 MB/s
CCTV2_电信_陕西,http://113.133.233.177:8014/rtp/239.112.205.78:5140,0.550 MB/s
CCTV2_电信_陕西,http://219.145.19.213:5555/rtp/239.112.205.78:5140,0.531 MB/s
CCTV2_电信_陕西,http://222.90.48.33:9999/rtp/239.112.205.78:5140,0.529 MB/s
CCTV2_电信_陕西,http://117.23.162.73:9001/rtp/239.112.205.78:5140,0.524 MB/s
CCTV2_电信_陕西,http://113.133.233.177:8011/rtp/239.112.205.78:5140,0.499 MB/s
CCTV2_移动,http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226195/index.m3u8,0.001 MB/s
CCTV2_移动,http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226195/index.m3u8?,0.001 MB/s
CCTV2_移动,http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226224/index.m3u8,0.001 MB/s
CCTV2_移动,http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226195/1.m3u8,0.001 MB/s
CCTV2_移动,http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226195/index.m3u8,0.001 MB/s
CCTV2_移动,http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225588/index.m3u8,0.001 MB/s
CCTV2_移动,http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226540/index.m3u8,0.001 MB/s
CCTV2_移动_山东,http://120.224.7.90:809/hls/217/index.m3u8,1.226 MB/s
CCTV2_联通_内蒙,http://116.112.42.199:808/hls/102/index.m3u8,0.443 MB/s
CCTV2_联通_内蒙,http://116.116.118.78:9999/udp/239.125.1.118:4130,0.298 MB/s
CCTV2_联通_内蒙,http://116.116.118.78:9999/udp/239.125.2.65:4120,0.248 MB/s
CCTV2_联通_内蒙,http://110.7.128.156:8096/tsfile/live/0002_1.m3u8,0.001 MB/s
CCTV2_联通_北京,http://221.221.159.57:8182/rtp/239.3.1.60:8084,0.600 MB/s
CCTV2_联通_北京,http://123.117.32.124:4000/rtp/239.3.1.60:8084,0.589 MB/s
CCTV2_联通_北京,http://111.201.166.36:10000/rtp/239.3.1.60:8084,0.589 MB/s
CCTV2_联通_北京,http://114.243.106.222:8821/rtp/239.3.1.60:8084,0.585 MB/s
CCTV2_联通_北京,http://222.129.98.92:8888/rtp/239.3.1.60:8084,0.577 MB/s
CCTV2_联通_北京,http://222.129.36.84:8888/rtp/239.3.1.60:8084,0.574 MB/s
CCTV2_联通_北京,http://123.115.195.226:8888/rtp/239.3.1.60:8084,0.573 MB/s
CCTV2_联通_北京,http://123.122.162.5:19999/rtp/239.3.1.60:8084,0.561 MB/s
CCTV2_联通_北京,http://221.218.212.142:8012/rtp/239.3.1.60:8084,0.559 MB/s
CCTV2_联通_北京,http://111.196.130.206:20000/rtp/239.3.1.60:8084,0.545 MB/s
CCTV2_联通_北京,http://123.115.116.115:4000/rtp/239.3.1.60:8084,0.545 MB/s
CCTV2_联通_北京,http://114.250.19.220:33333/rtp/239.3.1.60:8084,0.545 MB/s
CCTV2_联通_北京,http://114.254.85.234:2222/rtp/239.3.1.60:8084,0.513 MB/s
CCTV2_联通_北京,http://123.118.48.192:9000/rtp/239.3.1.60:8084,0.474 MB/s
CCTV2_联通_北京,http://114.245.179.5:10000/rtp/239.3.1.60:8084,0.468 MB/s
CCTV2_联通_北京,http://125.33.179.15:5555/rtp/239.3.1.60:8084,0.437 MB/s
CCTV2_联通_北京,http://124.65.3.44:20000/rtp/239.3.1.60:8084,0.329 MB/s
CCTV2_联通_北京,http://114.254.89.130:8020/rtp/239.3.1.60:8084,0.251 MB/s
CCTV2_联通_吉林,http://119.54.12.6:9999/hls/2/index.m3u8,1.051 MB/s
CCTV2_联通_吉林,http://119.54.9.138:9999/hls/2/index.m3u8,1.044 MB/s
CCTV2_联通_四川,http://119.4.83.117:55555/udp/239.93.1.23:6000,0.514 MB/s
CCTV2_联通_天津,http://221.198.174.113:8888/udp/225.1.1.133:5002,0.602 MB/s
CCTV2_联通_山西,http://221.205.18.64:8888/hls/2/index.m3u8,0.628 MB/s
CCTV2_联通_山西,http://183.184.138.144:8085/rtp/226.0.2.154:9144,0.590 MB/s
CCTV2_联通_山西,http://118.81.201.143:8085/rtp/226.0.2.154:9144,0.578 MB/s
CCTV2_联通_山西,http://171.120.109.234:8085/rtp/226.0.2.154:9144,0.569 MB/s
CCTV2_联通_山西,http://116.179.130.242:6000/rtp/226.0.2.154:9144,0.565 MB/s
CCTV2_联通_山西,http://171.120.111.89:8085/rtp/226.0.2.154:9144,0.552 MB/s
CCTV2_联通_山西,http://183.188.20.168:6000/rtp/226.0.2.154:9144,0.551 MB/s
CCTV2_联通_山西,http://171.117.202.161:8083/rtp/226.0.2.154:9144,0.544 MB/s
CCTV2_联通_山西,http://171.120.69.226:8005/rtp/226.0.2.154:9144,0.542 MB/s
CCTV2_联通_山西,http://118.79.114.230:6000/rtp/226.0.2.154:9144,0.542 MB/s
CCTV2_联通_山西,http://221.205.200.128:8085/rtp/226.0.2.154:9144,0.541 MB/s
CCTV2_联通_山西,http://171.116.71.69:8084/rtp/226.0.2.154:9144,0.539 MB/s
CCTV2_联通_山西,http://171.116.211.70:8005/rtp/226.0.2.154:9144,0.537 MB/s
CCTV2_联通_山西,http://171.117.180.171:8085/rtp/226.0.2.154:9144,0.535 MB/s
CCTV2_联通_山西,http://171.120.111.64:8085/rtp/226.0.2.154:9144,0.523 MB/s
CCTV2_联通_山西,http://221.205.201.55:8085/rtp/226.0.2.154:9144,0.518 MB/s
CCTV2_联通_山西,http://171.116.210.162:8003/rtp/226.0.2.154:9144,0.484 MB/s
CCTV2_联通_山西,http://171.117.180.171:8084/rtp/226.0.2.154:9144,0.481 MB/s
CCTV2_联通_山西,http://171.117.180.171:8084/rtp/226.0.2.19:8064,0.348 MB/s
CCTV2_联通_山西,http://171.117.202.161:8082/rtp/226.0.2.19:8064,0.329 MB/s
CCTV2_联通_山西,http://221.205.200.128:8085/rtp/226.0.2.19:8064,0.329 MB/s
CCTV2_联通_山西,http://171.117.202.161:8083/rtp/226.0.2.19:8064,0.328 MB/s
CCTV2_联通_山西,http://171.120.109.234:8085/rtp/226.0.2.19:8064,0.327 MB/s
CCTV2_联通_山西,http://171.116.71.69:8084/rtp/226.0.2.19:8064,0.326 MB/s
CCTV2_联通_山西,http://221.205.201.55:8085/rtp/226.0.2.19:8064,0.325 MB/s
CCTV2_联通_山西,http://171.117.180.171:8085/rtp/226.0.2.19:8064,0.325 MB/s
CCTV2_联通_山西,http://116.179.130.242:6000/rtp/226.0.2.19:8064,0.324 MB/s
CCTV2_联通_山西,http://183.188.20.168:6000/rtp/226.0.2.19:8064,0.324 MB/s
CCTV2_联通_山西,http://171.120.111.64:8085/rtp/226.0.2.19:8064,0.324 MB/s
CCTV2_联通_山西,http://171.120.111.89:8085/rtp/226.0.2.19:8064,0.324 MB/s
CCTV2_联通_山西,http://171.120.69.226:8005/rtp/226.0.2.19:8064,0.323 MB/s
CCTV2_联通_山西,http://60.223.72.253:8001/rtp/226.0.2.19:8064,0.322 MB/s
CCTV2_联通_山西,http://118.81.201.143:8085/rtp/226.0.2.19:8064,0.321 MB/s
CCTV2_联通_山西,http://118.79.114.230:6000/rtp/226.0.2.19:8064,0.319 MB/s
CCTV2_联通_山西,http://171.116.211.70:8005/rtp/226.0.2.19:8064,0.319 MB/s
CCTV2_联通_山西,http://171.118.108.99:8084/rtp/226.0.2.19:8064,0.318 MB/s
CCTV2_联通_山西,http://171.117.202.161:8084/rtp/226.0.2.154:9144,0.292 MB/s
CCTV2_联通_山西,http://171.117.120.54:8082/rtp/226.0.2.19:8064,0.272 MB/s
CCTV2_联通_山西,http://171.118.108.99:8084/rtp/226.0.2.154:9144,0.241 MB/s
CCTV2_联通_山西,http://171.117.120.54:8082/rtp/226.0.2.154:9144,0.186 MB/s
CCTV2_联通_山西,http://171.120.59.165:8004/rtp/226.0.2.19:8064,0.136 MB/s
CCTV2_联通_河北,http://116.131.173.194:809/hls/2/index.m3u8,0.964 MB/s
CCTV2_联通_河北,http://110.253.152.47:8888/rtp/239.253.92.190:6065,0.592 MB/s
CCTV2_联通_河北,http://116.131.173.194:809/hls/102/index.m3u8,0.549 MB/s
CCTV2_联通_河北,http://120.4.34.234:4000/rtp/239.253.92.190:6065,0.540 MB/s
CCTV2_联通_河北,http://121.27.126.103:809/hls/102/index.m3u8,0.299 MB/s
CCTV2_联通_河北,http://101.23.216.151:8090/hls/10/index.m3u8,0.267 MB/s
CCTV2_联通_河北,http://120.7.86.85:808/hls/2/index.m3u8,0.001 MB/s
CCTV2_联通_河北,http://121.24.99.52:8090/hls/10/index.m3u8,0.001 MB/s
CCTV2_联通_河北,http://121.27.126.103:809/hls/2/index.m3u8,0.001 MB/s
CCTV2_联通_河南,http://115.59.84.31:8089/rtp/225.1.4.74:1103,0.533 MB/s
CCTV2_联通_河南,http://219.156.116.168:808/hls/2/index.m3u8,0.526 MB/s
CCTV2_联通_河南,http://61.52.26.70:2000/rtp/225.1.4.74:1103,0.464 MB/s
CCTV2_联通_河南,http://61.52.8.160:13579/rtp/225.1.4.74:1103,0.348 MB/s
CCTV2_联通_河南,http://221.15.7.122:8888/rtp/225.1.4.74:1103,0.314 MB/s
CCTV2_联通_河南,http://61.52.26.70:2000/rtp/225.1.4.2:1031,0.299 MB/s
CCTV2_联通_河南,http://115.59.84.31:8089/rtp/225.1.4.2:1031,0.298 MB/s
CCTV2_联通_河南,http://221.15.7.122:8888/rtp/225.1.4.2:1031,0.295 MB/s
CCTV2_联通_河南,http://61.52.8.160:13579/rtp/225.1.4.2:1031,0.285 MB/s
CCTV2_联通_辽宁,http://175.147.76.205:8888/rtp/232.0.0.135:1234,0.549 MB/s
CCTV2_联通_重庆,http://27.11.40.250:8003/udp/225.0.4.132:7980,0.591 MB/s
CCTV2_联通_重庆,http://27.11.62.175:8008/udp/225.0.4.132:7980,0.588 MB/s
CCTV2_联通_重庆,http://27.10.208.156:8005/udp/225.0.4.132:7980,0.583 MB/s
CCTV2_联通_重庆,http://123.145.12.76:8004/udp/225.0.4.132:7980,0.580 MB/s
CCTV2_联通_重庆,http://27.10.213.1:8005/udp/225.0.4.132:7980,0.576 MB/s
CCTV2_联通_重庆,http://113.206.179.208:8005/udp/225.0.4.132:7980,0.575 MB/s
CCTV2_联通_重庆,http://27.11.249.153:8010/udp/225.0.4.132:7980,0.571 MB/s
CCTV2_联通_重庆,http://123.145.76.160:4000/udp/225.0.4.132:7980,0.567 MB/s
CCTV2_联通_重庆,http://113.206.158.89:8004/udp/225.0.4.132:7980,0.561 MB/s
CCTV2_联通_重庆,http://27.10.213.1:8004/udp/225.0.4.132:7980,0.539 MB/s
CCTV2_联通_重庆,http://27.10.208.156:8004/udp/225.0.4.132:7980,0.532 MB/s
CCTV2_联通_重庆,http://27.11.62.175:8002/udp/225.0.4.132:7980,0.515 MB/s
CCTV2_联通_重庆,http://27.11.38.238:8004/udp/225.0.4.132:7980,0.510 MB/s
CCTV2_联通_重庆,http://27.11.49.156:8008/udp/225.0.4.132:7980,0.477 MB/s
CCTV2_联通_重庆,http://27.11.49.156:8007/udp/225.0.4.132:7980,0.428 MB/s
CCTV2_联通_重庆,http://27.11.49.156:8009/udp/225.0.4.132:7980,0.218 MB/s
CETV2SD_电信_海南,http://36.101.6.96:554/rtp/239.253.64.128:5140,0.296 MB/s
CETV2_电信_北京,http://115.171.251.148:8888/udp/225.1.8.193:4120,0.294 MB/s
CETV2_电信_四川,http://171.88.35.80:4000/udp/239.93.0.113:5140,0.296 MB/s
CETV2_电信_四川,http://110.188.37.163:55555/udp/239.93.0.113:5140,0.295 MB/s
CETV2_电信_四川,http://125.71.122.30:8888/udp/239.93.0.113:5140,0.295 MB/s
CETV2_电信_四川,http://118.114.188.36:8888/udp/239.93.0.113:5140,0.294 MB/s
CETV2_电信_四川,http://182.149.106.41:8888/udp/239.93.0.113:5140,0.293 MB/s
CETV2_电信_山东,http://182.32.160.10:9997/udp/239.21.2.8:5002,0.296 MB/s
CETV2_电信_陕西,http://113.133.233.177:8014/rtp/239.109.205.48:8320,0.306 MB/s
CETV2_电信_陕西,http://219.145.19.7:5558/rtp/239.109.205.48:8320,0.306 MB/s
CETV2_电信_陕西,http://219.145.19.145:4000/rtp/239.109.205.48:8320,0.305 MB/s
CETV2_电信_陕西,http://219.145.19.213:5555/rtp/239.109.205.48:8320,0.304 MB/s
CETV2_电信_陕西,http://222.90.48.33:9999/rtp/239.109.205.48:8320,0.303 MB/s
CETV2_电信_陕西,http://113.133.233.177:8011/rtp/239.109.205.48:8320,0.298 MB/s
CETV2_电信_陕西,http://117.23.162.73:9001/rtp/239.109.205.48:8320,0.298 MB/s
CETV2_联通_内蒙,http://1.24.190.98:10080/hls/18/index.m3u8,0.351 MB/s
CETV2_联通_内蒙,http://116.116.118.78:9999/udp/239.125.1.29:5000,0.285 MB/s
CETV2_联通_北京,http://221.221.159.57:8182/rtp/239.3.1.54:4120,0.711 MB/s
CETV2_联通_北京,http://114.250.19.220:33333/rtp/239.3.1.54:4120,0.297 MB/s
CETV2_联通_北京,http://221.218.212.142:8012/rtp/239.3.1.54:4120,0.297 MB/s
CETV2_联通_北京,http://123.122.162.5:19999/rtp/239.3.1.54:4120,0.297 MB/s
CETV2_联通_北京,http://114.243.106.222:8821/rtp/239.3.1.54:4120,0.297 MB/s
CETV2_联通_北京,http://123.117.32.124:4000/rtp/239.3.1.54:4120,0.296 MB/s
CETV2_联通_北京,http://111.201.166.36:10000/rtp/239.3.1.54:4120,0.296 MB/s
CETV2_联通_北京,http://123.115.116.115:4000/rtp/239.3.1.54:4120,0.295 MB/s
CETV2_联通_北京,http://125.33.179.15:5555/rtp/239.3.1.54:4120,0.295 MB/s
CETV2_联通_北京,http://123.115.195.226:8888/rtp/239.3.1.54:4120,0.295 MB/s
CETV2_联通_北京,http://222.129.98.92:8888/rtp/239.3.1.54:4120,0.295 MB/s
CETV2_联通_北京,http://222.129.36.84:8888/rtp/239.3.1.54:4120,0.295 MB/s
CETV2_联通_北京,http://114.254.85.234:2222/rtp/239.3.1.54:4120,0.294 MB/s
CETV2_联通_北京,http://123.118.48.192:9000/rtp/239.3.1.54:4120,0.293 MB/s
CETV2_联通_北京,http://123.122.161.121:19999/rtp/239.3.1.54:4120,0.280 MB/s
CETV2_联通_北京,http://114.254.89.130:8020/rtp/239.3.1.54:4120,0.250 MB/s
CETV2_联通_北京,http://111.196.130.206:20000/rtp/239.3.1.54:4120,0.235 MB/s
CETV2_联通_吉林,http://119.54.12.6:9999/hls/71/index.m3u8,0.571 MB/s
CETV2_联通_吉林,http://119.54.9.138:9999/hls/71/index.m3u8,0.497 MB/s
CETV2_联通_四川,http://119.4.83.117:55555/udp/239.93.0.113:5140,0.296 MB/s
CETV2_联通_山西,http://221.205.201.55:8085/rtp/226.0.2.69:8464,0.276 MB/s
CETV2_联通_山西,http://183.184.138.144:8085/rtp/226.0.2.69:8464,0.276 MB/s
CETV2_联通_山西,http://118.81.201.143:8085/rtp/226.0.2.69:8464,0.275 MB/s
CETV2_联通_山西,http://183.188.20.168:6000/rtp/226.0.2.69:8464,0.275 MB/s
CETV2_联通_山西,http://60.223.72.253:8001/rtp/226.0.2.69:8464,0.275 MB/s
CETV2_联通_山西,http://171.120.109.234:8085/rtp/226.0.2.69:8464,0.275 MB/s
CETV2_联通_山西,http://116.179.130.242:6000/rtp/226.0.2.69:8464,0.274 MB/s
CETV2_联通_山西,http://60.223.72.4:8001/rtp/226.0.2.69:8464,0.274 MB/s
CETV2_联通_山西,http://221.205.200.128:8085/rtp/226.0.2.69:8464,0.273 MB/s
CETV2_联通_山西,http://118.79.114.230:6000/rtp/226.0.2.69:8464,0.273 MB/s
CETV2_联通_山西,http://171.117.180.171:8085/rtp/226.0.2.69:8464,0.272 MB/s
CETV2_联通_山西,http://171.116.210.162:8003/rtp/226.0.2.69:8464,0.272 MB/s
CETV2_联通_山西,http://171.120.111.89:8085/rtp/226.0.2.69:8464,0.272 MB/s
CETV2_联通_山西,http://171.116.211.70:8005/rtp/226.0.2.69:8464,0.272 MB/s
CETV2_联通_山西,http://171.120.111.64:8085/rtp/226.0.2.69:8464,0.271 MB/s
CETV2_联通_山西,http://171.120.69.226:8005/rtp/226.0.2.69:8464,0.271 MB/s
CETV2_联通_山西,http://171.117.180.171:8084/rtp/226.0.2.69:8464,0.269 MB/s
CETV2_联通_山西,http://171.117.120.54:8083/rtp/226.0.2.69:8464,0.260 MB/s
CETV2_联通_山西,http://171.116.224.177:8085/rtp/226.0.2.69:8464,0.240 MB/s
CETV2_联通_山西,http://171.117.202.161:8084/rtp/226.0.2.69:8464,0.237 MB/s
CETV2_联通_山西,http://171.117.202.161:8083/rtp/226.0.2.69:8464,0.171 MB/s
CETV2_联通_山西,http://171.116.71.69:8084/rtp/226.0.2.69:8464,0.157 MB/s
CETV2_联通_河北,http://110.253.152.47:8888/rtp/239.253.92.108:6136,0.310 MB/s
CETV2_联通_河北,http://120.4.34.234:4000/rtp/239.253.92.108:6136,0.309 MB/s
CETV2_联通_辽宁,http://175.147.76.205:8888/rtp/232.0.0.238:1234,0.541 MB/s
中国教育CETV2_电信_安徽,http://114.98.190.41:2000/rtp/238.1.78.106:6720,0.308 MB/s
中国教育CETV2_电信_安徽,http://114.98.188.23:2000/rtp/238.1.78.106:6720,0.308 MB/s
中国教育CETV2_电信_安徽,http://117.66.254.58:2000/rtp/238.1.78.106:6720,0.307 MB/s
中国教育CETV2_电信_安徽,http://117.64.156.177:8888/rtp/238.1.78.106:6720,0.307 MB/s
中国教育CETV2_电信_广东,http://114.98.188.23:2000/rtp/238.1.78.106:6720,0.307 MB/s
CCTV3_电信_内蒙,http://111.126.77.93:808/hls/103/index.m3u8,0.001 MB/s
CCTV3_电信_北京,http://115.171.251.148:8888/udp/225.1.8.88:8000,0.560 MB/s
CCTV3_电信_北京,http://115.171.251.148:8888/udp/225.1.8.92:8000,0.311 MB/s
CCTV3_电信_北京,http://115.171.216.22:4000/udp/225.1.8.92:8000,0.299 MB/s
CCTV3_电信_北京,http://115.171.216.22:4000/udp/225.1.8.88:8000,0.156 MB/s
CCTV3_电信_四川,http://125.71.122.30:8888/udp/239.93.1.11:2223,0.559 MB/s
CCTV3_电信_四川,http://118.114.188.36:8888/udp/239.93.1.11:2223,0.545 MB/s
CCTV3_电信_四川,http://182.149.106.41:8888/udp/239.93.1.11:2223,0.534 MB/s
CCTV3_电信_四川,http://110.188.37.163:55555/udp/239.93.1.11:2223,0.485 MB/s
CCTV3_电信_四川,http://171.88.35.80:4000/udp/239.93.1.11:2223,0.443 MB/s
CCTV3_电信_安徽,http://114.98.190.41:2000/rtp/238.1.78.170:7232,0.585 MB/s
CCTV3_电信_安徽,http://117.66.254.58:2000/rtp/238.1.78.170:7232,0.584 MB/s
CCTV3_电信_安徽,http://117.64.156.177:8888/rtp/238.1.78.170:7232,0.584 MB/s
CCTV3_电信_安徽,http://114.98.188.23:2000/rtp/238.1.78.170:7232,0.584 MB/s
CCTV3_电信_山东,http://182.32.160.10:9997/udp/239.21.2.45:5002,0.589 MB/s
CCTV3_电信_山东,http://182.32.160.10:9997/udp/239.21.1.3:5002,0.442 MB/s
CCTV3_电信_山西,http://223.10.23.41:8085/udp/239.1.1.9:8009,0.576 MB/s
CCTV3_电信_山西,http://223.10.24.101:8083/udp/239.1.1.9:8009,0.551 MB/s
CCTV3_电信_广东,http://113.110.72.121:808/hls/115/index.m3u8,0.998 MB/s
CCTV3_电信_广东,http://14.117.234.16:9000/udp/239.77.0.169:5146,0.620 MB/s
CCTV3_电信_广东,http://113.78.253.125:8888/udp/239.77.0.169:5146,0.619 MB/s
CCTV3_电信_广东,http://14.216.239.140:8888/udp/239.77.0.169:5146,0.613 MB/s
CCTV3_电信_广东,http://113.67.166.23:8889/udp/239.77.0.169:5146,0.611 MB/s
CCTV3_电信_广东,http://125.92.101.148:8899/udp/239.77.0.169:5146,0.610 MB/s
CCTV3_电信_广东,http://113.75.183.99:2086/udp/239.77.0.169:5146,0.582 MB/s
CCTV3_电信_广东,http://114.98.188.23:2000/rtp/238.1.78.170:7232,0.579 MB/s
CCTV3_电信_广东,http://218.19.110.134:9999/udp/239.77.0.169:5146,0.556 MB/s
CCTV3_电信_河南,http://222.88.207.5:808/hls/3/index.m3u8,1.051 MB/s
CCTV3_电信_河南,http://222.89.29.199:808/hls/3/index.m3u8,0.001 MB/s
CCTV3_电信_浙江,http://122.234.76.0:4022/rtp/233.50.201.196:5140,0.610 MB/s
CCTV3_电信_浙江,http://125.110.26.33:8044/rtp/233.50.201.196:5140,0.594 MB/s
CCTV3_电信_浙江,http://218.71.36.138:9999/rtp/233.50.201.196:5140,0.365 MB/s
CCTV3_电信_海南,http://36.101.6.96:554/rtp/239.253.64.244:5140,0.592 MB/s
CCTV3_电信_湖北,http://119.98.125.196:4022/rtp/239.69.1.122:10370,0.558 MB/s
CCTV3_电信_湖北,http://59.175.18.100:8888/rtp/239.69.1.122:10370,0.518 MB/s
CCTV3_电信_湖南,http://118.254.159.80:8888/udp/239.76.246.153:1234,0.557 MB/s
CCTV3_电信_湖南,http://118.251.69.109:4022/udp/239.76.246.153:1234,0.557 MB/s
CCTV3_电信_湖南,http://118.251.69.109:4022/udp/239.76.253.153:9000,0.551 MB/s
CCTV3_电信_湖南,http://118.254.159.80:8888/udp/239.76.253.153:9000,0.438 MB/s
CCTV3_电信_西藏,http://220.182.45.198:20088/tsfile/live/0003_1.m3u8,0.001 MB/s
CCTV3_电信_重庆,http://113.251.180.215:4022/rtp/235.254.198.53:1488,0.588 MB/s
CCTV3_电信_重庆,http://113.251.180.215:4022/rtp/235.254.198.141:1842,0.295 MB/s
CCTV3_电信_陕西,http://219.145.19.145:4000/rtp/239.112.205.221:5140,0.589 MB/s
CCTV3_电信_陕西,http://219.145.19.7:5558/rtp/239.112.205.221:5140,0.580 MB/s
CCTV3_电信_陕西,http://113.133.233.177:8014/rtp/239.112.205.221:5140,0.552 MB/s
CCTV3_电信_陕西,http://113.133.233.177:8011/rtp/239.112.205.221:5140,0.541 MB/s
CCTV3_电信_陕西,http://117.23.162.73:9001/rtp/239.112.205.221:5140,0.530 MB/s
CCTV3_电信_陕西,http://222.90.48.33:9999/rtp/239.112.205.221:5140,0.522 MB/s
CCTV3_电信_陕西,http://219.145.19.213:5555/rtp/239.112.205.221:5140,0.504 MB/s
CCTV3_移动,http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226397/1.m3u8,0.001 MB/s
CCTV3_移动,http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226397/index.m3u8,0.001 MB/s
CCTV3_移动,http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226021/index.m3u8,0.001 MB/s
CCTV3_联通_内蒙,http://116.116.118.78:9999/udp/239.125.2.52:4120,0.529 MB/s
CCTV3_联通_内蒙,http://110.7.128.156:8096/tsfile/live/0003_1.m3u8,0.001 MB/s
CCTV3_联通_内蒙,http://1.24.190.98:10080/hls/3/index.m3u8,0.001 MB/s
CCTV3_联通_北京,http://123.117.32.124:4000/rtp/239.3.1.172:8001,0.595 MB/s
CCTV3_联通_北京,http://114.243.106.222:8821/rtp/239.3.1.172:8001,0.595 MB/s
CCTV3_联通_北京,http://114.250.19.220:33333/rtp/239.3.1.172:8001,0.595 MB/s
CCTV3_联通_北京,http://123.115.116.115:4000/rtp/239.3.1.172:8001,0.591 MB/s
CCTV3_联通_北京,http://222.129.36.84:8888/rtp/239.3.1.172:8001,0.586 MB/s
CCTV3_联通_北京,http://111.201.166.36:10000/rtp/239.3.1.172:8001,0.582 MB/s
CCTV3_联通_北京,http://123.115.195.226:8888/rtp/239.3.1.172:8001,0.574 MB/s
CCTV3_联通_北京,http://123.122.162.5:19999/rtp/239.3.1.172:8001,0.567 MB/s
CCTV3_联通_北京,http://221.221.159.57:8182/rtp/239.3.1.172:8001,0.561 MB/s
CCTV3_联通_北京,http://221.218.212.142:8012/rtp/239.3.1.172:8001,0.547 MB/s
CCTV3_联通_北京,http://222.129.98.92:8888/rtp/239.3.1.172:8001,0.538 MB/s
CCTV3_联通_北京,http://123.118.48.192:9000/rtp/239.3.1.172:8001,0.534 MB/s
CCTV3_联通_北京,http://114.254.85.234:2222/rtp/239.3.1.172:8001,0.514 MB/s
CCTV3_联通_北京,http://111.196.130.206:20000/rtp/239.3.1.172:8001,0.508 MB/s
CCTV3_联通_北京,http://125.33.179.15:5555/rtp/239.3.1.172:8001,0.476 MB/s
CCTV3_联通_北京,http://123.113.100.181:4022/rtp/239.3.1.172:8001,0.432 MB/s
CCTV3_联通_北京,http://114.254.89.130:8020/rtp/239.3.1.172:8001,0.251 MB/s
CCTV3_联通_吉林,http://119.54.12.6:9999/hls/3/index.m3u8,0.792 MB/s
CCTV3_联通_天津,http://221.198.174.113:8888/udp/225.1.1.158:5002,0.549 MB/s
CCTV3_联通_山西,http://171.116.210.162:8003/rtp/226.0.2.208:9576,0.601 MB/s
CCTV3_联通_山西,http://171.116.211.70:8005/rtp/226.0.2.208:9576,0.592 MB/s
CCTV3_联通_山西,http://118.81.201.143:8085/rtp/226.0.2.208:9576,0.588 MB/s
CCTV3_联通_山西,http://171.117.180.171:8085/rtp/226.0.2.208:9576,0.573 MB/s
CCTV3_联通_山西,http://171.120.109.234:8085/rtp/226.0.2.208:9576,0.569 MB/s
CCTV3_联通_山西,http://171.120.111.89:8085/rtp/226.0.2.208:9576,0.563 MB/s
CCTV3_联通_山西,http://221.205.201.55:8085/rtp/226.0.2.208:9576,0.559 MB/s
CCTV3_联通_山西,http://116.179.130.242:6000/rtp/226.0.2.208:9576,0.558 MB/s
CCTV3_联通_山西,http://183.188.20.168:6000/rtp/226.0.2.208:9576,0.545 MB/s
CCTV3_联通_山西,http://221.205.200.128:8085/rtp/226.0.2.208:9576,0.544 MB/s
CCTV3_联通_山西,http://118.79.114.230:6000/rtp/226.0.2.208:9576,0.539 MB/s
CCTV3_联通_山西,http://171.120.69.226:8005/rtp/226.0.2.208:9576,0.537 MB/s
CCTV3_联通_山西,http://171.116.71.69:8084/rtp/226.0.2.208:9576,0.528 MB/s
CCTV3_联通_山西,http://171.116.224.177:8085/rtp/226.0.2.20:8072,0.520 MB/s
CCTV3_联通_山西,http://171.120.111.64:8085/rtp/226.0.2.208:9576,0.501 MB/s
CCTV3_联通_山西,http://171.117.180.171:8084/rtp/226.0.2.208:9576,0.481 MB/s
CCTV3_联通_山西,http://171.116.224.177:8085/rtp/226.0.2.208:9576,0.374 MB/s
CCTV3_联通_山西,http://171.117.202.161:8082/rtp/226.0.2.208:9576,0.337 MB/s
CCTV3_联通_山西,http://221.205.201.55:8085/rtp/226.0.2.20:8072,0.330 MB/s
CCTV3_联通_山西,http://221.205.200.128:8085/rtp/226.0.2.20:8072,0.329 MB/s
CCTV3_联通_山西,http://183.188.20.168:6000/rtp/226.0.2.20:8072,0.327 MB/s
CCTV3_联通_山西,http://60.223.72.4:8001/rtp/226.0.2.20:8072,0.326 MB/s
CCTV3_联通_山西,http://171.120.109.234:8085/rtp/226.0.2.20:8072,0.326 MB/s
CCTV3_联通_山西,http://171.117.180.171:8085/rtp/226.0.2.20:8072,0.326 MB/s
CCTV3_联通_山西,http://116.179.130.242:6000/rtp/226.0.2.20:8072,0.326 MB/s
CCTV3_联通_山西,http://118.81.201.143:8085/rtp/226.0.2.20:8072,0.326 MB/s
CCTV3_联通_山西,http://171.118.108.99:8084/rtp/226.0.2.20:8072,0.324 MB/s
CCTV3_联通_山西,http://171.117.180.171:8084/rtp/226.0.2.20:8072,0.324 MB/s
CCTV3_联通_山西,http://171.120.69.226:8005/rtp/226.0.2.20:8072,0.323 MB/s
CCTV3_联通_山西,http://118.79.114.230:6000/rtp/226.0.2.20:8072,0.323 MB/s
CCTV3_联通_山西,http://171.116.211.70:8005/rtp/226.0.2.20:8072,0.322 MB/s
CCTV3_联通_山西,http://171.120.111.64:8085/rtp/226.0.2.20:8072,0.322 MB/s
CCTV3_联通_山西,http://171.120.111.89:8085/rtp/226.0.2.20:8072,0.315 MB/s
CCTV3_联通_山西,http://60.223.72.253:8001/rtp/226.0.2.20:8072,0.277 MB/s
CCTV3_联通_山西,http://171.116.71.69:8084/rtp/226.0.2.20:8072,0.276 MB/s
CCTV3_联通_山西,http://171.116.210.162:8003/rtp/226.0.2.20:8072,0.250 MB/s
CCTV3_联通_山西,http://183.184.138.144:8085/rtp/226.0.2.20:8072,0.190 MB/s
CCTV3_联通_山西,http://171.117.202.161:8082/rtp/226.0.2.20:8072,0.158 MB/s
CCTV3_联通_河北,http://116.131.173.194:809/hls/3/index.m3u8,0.907 MB/s
CCTV3_联通_河北,http://120.4.34.234:4000/rtp/239.253.92.191:6057,0.607 MB/s
CCTV3_联通_河北,http://110.253.152.47:8888/rtp/239.253.92.191:6057,0.540 MB/s
CCTV3_联通_河北,http://121.24.99.112:8090/hls/11/index.m3u8,0.299 MB/s
CCTV3_联通_河北,http://121.19.134.48:808/tsfile/live/0003_1.m3u8,0.133 MB/s
CCTV3_联通_河北,http://121.24.98.179:8090/hls/11/index.m3u8,0.001 MB/s
CCTV3_联通_河北,http://120.7.86.85:808/hls/3/index.m3u8,0.001 MB/s
CCTV3_联通_河北,http://121.27.126.103:809/hls/3/index.m3u8,0.001 MB/s
CCTV3_联通_河南,http://219.156.116.168:808/hls/3/index.m3u8,1.076 MB/s
CCTV3_联通_河南,http://115.59.84.31:8089/rtp/225.1.4.158:1194,0.557 MB/s
CCTV3_联通_河南,http://61.52.8.160:13579/rtp/225.1.4.158:1194,0.379 MB/s
CCTV3_联通_辽宁,http://175.147.76.205:8888/rtp/232.0.0.170:1234,0.548 MB/s
CCTV3_联通_重庆,http://113.206.179.208:8005/udp/225.0.4.142:7980,0.582 MB/s
CCTV3_联通_重庆,http://27.11.40.250:8003/udp/225.0.4.142:7980,0.579 MB/s
CCTV3_联通_重庆,http://123.145.12.76:8004/udp/225.0.4.142:7980,0.574 MB/s
CCTV3_联通_重庆,http://123.145.76.160:4000/udp/225.0.4.142:7980,0.560 MB/s
CCTV3_联通_重庆,http://113.206.158.89:8004/udp/225.0.4.142:7980,0.559 MB/s
CCTV3_联通_重庆,http://27.11.38.238:8004/udp/225.0.4.142:7980,0.534 MB/s
CCTV3_联通_重庆,http://27.11.62.175:8008/udp/225.0.4.142:7980,0.507 MB/s
CCTV3_联通_重庆,http://27.11.249.153:8010/udp/225.0.4.142:7980,0.497 MB/s
CCTV3_联通_重庆,http://27.11.49.156:8009/udp/225.0.4.142:7980,0.496 MB/s
CCTV3_联通_重庆,http://27.11.62.175:8002/udp/225.0.4.142:7980,0.463 MB/s
CCTV3_联通_重庆,http://27.11.49.156:8007/udp/225.0.4.142:7980,0.453 MB/s
CCTV3_联通_重庆,http://27.11.49.156:8008/udp/225.0.4.142:7980,0.243 MB/s
CCTV3超清_电信_广东,http://113.78.253.125:8888/udp/239.77.0.175:5146,0.643 MB/s
CCTV3超清_电信_广东,http://113.67.166.23:8889/udp/239.77.0.175:5146,0.634 MB/s
CCTV3超清_电信_广东,http://14.117.234.16:9000/udp/239.77.0.175:5146,0.617 MB/s
CCTV3超清_电信_广东,http://14.216.239.140:8888/udp/239.77.0.175:5146,0.612 MB/s
CCTV3超清_电信_广东,http://113.75.183.99:2086/udp/239.77.0.175:5146,0.592 MB/s
CCTV3超清_电信_广东,http://218.19.110.134:9999/udp/239.77.0.175:5146,0.522 MB/s
CCTV3超清_电信_广东,http://125.92.101.148:8899/udp/239.77.0.175:5146,0.138 MB/s
CETV3_电信_北京,http://115.171.251.148:8888/udp/225.1.8.194:4120,0.278 MB/s
CETV3_联通_北京,http://221.221.159.57:8182/rtp/239.3.1.55:4120,1.039 MB/s
CETV3_联通_北京,http://221.218.212.142:8012/rtp/239.3.1.55:4120,0.280 MB/s
CETV3_联通_北京,http://123.122.162.5:19999/rtp/239.3.1.55:4120,0.279 MB/s
CETV3_联通_北京,http://222.129.36.84:8888/rtp/239.3.1.55:4120,0.279 MB/s
CETV3_联通_北京,http://123.115.116.115:4000/rtp/239.3.1.55:4120,0.279 MB/s
CETV3_联通_北京,http://114.250.19.220:33333/rtp/239.3.1.55:4120,0.279 MB/s
CETV3_联通_北京,http://114.243.106.222:8821/rtp/239.3.1.55:4120,0.278 MB/s
CETV3_联通_北京,http://123.117.32.124:4000/rtp/239.3.1.55:4120,0.278 MB/s
CETV3_联通_北京,http://222.129.98.92:8888/rtp/239.3.1.55:4120,0.277 MB/s
CETV3_联通_北京,http://111.201.166.36:10000/rtp/239.3.1.55:4120,0.277 MB/s
CETV3_联通_北京,http://111.196.130.206:20000/rtp/239.3.1.55:4120,0.277 MB/s
CETV3_联通_北京,http://123.118.48.192:9000/rtp/239.3.1.55:4120,0.276 MB/s
CETV3_联通_北京,http://114.254.89.130:8020/rtp/239.3.1.55:4120,0.276 MB/s
CETV3_联通_北京,http://123.115.195.226:8888/rtp/239.3.1.55:4120,0.276 MB/s
CETV3_联通_北京,http://114.254.85.234:2222/rtp/239.3.1.55:4120,0.276 MB/s
CETV3_联通_北京,http://123.113.100.181:4022/rtp/239.3.1.55:4120,0.275 MB/s
CETV3_联通_北京,http://125.33.179.15:5555/rtp/239.3.1.55:4120,0.275 MB/s
CETV3_联通_北京,http://123.113.9.199:8876/rtp/239.3.1.55:4120,0.272 MB/s
CETV3_联通_北京,http://124.65.3.44:20000/rtp/239.3.1.55:4120,0.193 MB/s
IPTV3+_电信_海南,http://36.101.6.96:554/rtp/239.253.64.10:5140,0.285 MB/s
IPTV3+_联通_重庆,http://27.11.40.250:8003/udp/225.0.4.51:7980,0.286 MB/s
IPTV3+_联通_重庆,http://123.145.12.76:8004/udp/225.0.4.51:7980,0.286 MB/s
IPTV3+_联通_重庆,http://27.10.208.156:8005/udp/225.0.4.51:7980,0.285 MB/s
IPTV3+_联通_重庆,http://113.206.179.208:8005/udp/225.0.4.51:7980,0.285 MB/s
IPTV3+_联通_重庆,http://27.11.38.238:8004/udp/225.0.4.51:7980,0.284 MB/s
IPTV3+_联通_重庆,http://113.206.158.89:8004/udp/225.0.4.51:7980,0.284 MB/s
IPTV3+_联通_重庆,http://27.11.49.156:8009/udp/225.0.4.51:7980,0.283 MB/s
IPTV3+_联通_重庆,http://123.145.76.160:4000/udp/225.0.4.51:7980,0.283 MB/s
IPTV3+_联通_重庆,http://27.11.62.175:8008/udp/225.0.4.51:7980,0.282 MB/s
IPTV3+_联通_重庆,http://27.11.249.153:8010/udp/225.0.4.51:7980,0.281 MB/s
IPTV3+_联通_重庆,http://27.11.49.156:8008/udp/225.0.4.51:7980,0.149 MB/s
IPTV3_电信_重庆,http://113.251.180.215:4022/rtp/235.254.198.13:1328,0.281 MB/s
IPTV3轮播_联通_辽宁,http://175.147.76.205:8888/rtp/232.0.0.118:1234,0.295 MB/s
CCTV4K50p_电信_广东,http://113.67.166.23:8889/udp/239.77.0.174:5146,0.684 MB/s
CCTV4K50p_电信_广东,http://14.117.234.16:9000/udp/239.77.0.174:5146,0.683 MB/s
CCTV4K50p_电信_广东,http://14.216.239.140:8888/udp/239.77.0.174:5146,0.669 MB/s
CCTV4K50p_电信_广东,http://125.92.101.148:8899/udp/239.77.0.174:5146,0.613 MB/s
CCTV4K50p_电信_广东,http://113.78.253.125:8888/udp/239.77.0.174:5146,0.611 MB/s
CCTV4K50p_电信_广东,http://113.75.183.99:2086/udp/239.77.0.174:5146,0.587 MB/s
CCTV4K50p_电信_广东,http://218.19.110.134:9999/udp/239.77.0.174:5146,0.546 MB/s
CCTV4K_电信_广东,http://113.67.166.23:8889/udp/239.77.0.194:5146,0.675 MB/s
CCTV4K_电信_广东,http://113.78.253.125:8888/udp/239.77.0.194:5146,0.663 MB/s
CCTV4K_电信_广东,http://14.117.234.16:9000/udp/239.77.0.194:5146,0.641 MB/s
CCTV4K_电信_广东,http://14.216.239.140:8888/udp/239.77.0.194:5146,0.619 MB/s
CCTV4K_电信_广东,http://125.92.101.148:8899/udp/239.77.0.194:5146,0.613 MB/s
CCTV4K_电信_广东,http://218.19.110.134:9999/udp/239.77.0.194:5146,0.563 MB/s
CCTV4K_电信_广东,http://113.75.183.99:2086/udp/239.77.0.194:5146,0.542 MB/s
CCTV4K_联通_河北,http://110.253.152.47:8888/rtp/239.253.93.134:6631,0.642 MB/s
CCTV4K_联通_河北,http://120.4.34.234:4000/rtp/239.253.93.134:6631,0.398 MB/s
CCTV4_电信_内蒙,http://111.126.77.93:808/hls/104/index.m3u8,0.352 MB/s
CCTV4_电信_北京,http://115.171.216.22:4000/udp/225.1.8.4:8092,0.320 MB/s
CCTV4_电信_北京,http://115.171.251.148:8888/udp/225.1.8.104:8216,0.300 MB/s
CCTV4_电信_北京,http://115.171.251.148:8888/udp/225.1.8.4:8092,0.199 MB/s
CCTV4_电信_北京,http://115.171.216.22:4000/udp/225.1.8.104:8216,0.199 MB/s
CCTV4_电信_四川,http://125.71.122.30:8888/udp/239.93.1.105:5140,0.577 MB/s
CCTV4_电信_四川,http://182.149.106.41:8888/udp/239.93.1.105:5140,0.553 MB/s
CCTV4_电信_四川,http://118.114.188.36:8888/udp/239.93.1.105:5140,0.533 MB/s
CCTV4_电信_四川,http://110.188.37.163:55555/udp/239.93.1.105:5140,0.504 MB/s
CCTV4_电信_四川,http://171.88.35.80:4000/udp/239.93.1.105:5140,0.233 MB/s
CCTV4_电信_安徽,http://117.64.156.177:8888/rtp/238.1.78.236:7760,0.605 MB/s
CCTV4_电信_安徽,http://114.98.188.23:2000/rtp/238.1.78.236:7760,0.586 MB/s
CCTV4_电信_安徽,http://114.98.190.41:2000/rtp/238.1.78.236:7760,0.583 MB/s
CCTV4_电信_安徽,http://117.66.254.58:2000/rtp/238.1.78.236:7760,0.579 MB/s
CCTV4_电信_山东,http://182.32.160.10:9997/udp/239.21.1.154:5002,0.584 MB/s
CCTV4_电信_山东,http://182.32.160.10:9997/udp/239.21.2.28:5002,0.580 MB/s
CCTV4_电信_山东,http://182.32.160.10:9997/udp/239.21.1.4:5002,0.262 MB/s
CCTV4_电信_山西,http://223.10.24.101:8083/udp/239.1.1.10:8010,0.567 MB/s
CCTV4_电信_山西,http://223.10.23.41:8085/udp/239.1.1.10:8010,0.535 MB/s
CCTV4_电信_广东,http://14.19.199.43:8089/hls/23/index.m3u8,0.749 MB/s
CCTV4_电信_广东,http://113.67.166.23:8889/udp/239.77.1.166:5146,0.657 MB/s
CCTV4_电信_广东,http://113.78.253.125:8888/udp/239.77.1.166:5146,0.632 MB/s
CCTV4_电信_广东,http://14.216.239.140:8888/udp/239.77.1.163:5146,0.629 MB/s
CCTV4_电信_广东,http://14.117.234.16:9000/udp/239.77.1.163:5146,0.628 MB/s
CCTV4_电信_广东,http://14.117.234.16:9000/udp/239.77.0.78:5146,0.623 MB/s
CCTV4_电信_广东,http://14.216.239.140:8888/udp/239.77.0.78:5146,0.619 MB/s
CCTV4_电信_广东,http://113.67.166.23:8889/udp/239.77.1.163:5146,0.609 MB/s
CCTV4_电信_广东,http://113.67.166.23:8889/udp/239.77.0.78:5146,0.608 MB/s
CCTV4_电信_广东,http://14.216.239.140:8888/udp/239.77.1.166:5146,0.604 MB/s
CCTV4_电信_广东,http://125.92.101.148:8899/udp/239.77.1.166:5146,0.602 MB/s
CCTV4_电信_广东,http://14.117.234.16:9000/udp/239.77.1.166:5146,0.596 MB/s
CCTV4_电信_广东,http://125.92.101.148:8899/udp/239.77.1.163:5146,0.595 MB/s
CCTV4_电信_广东,http://218.19.110.134:9999/udp/239.77.0.78:5146,0.590 MB/s
CCTV4_电信_广东,http://113.75.183.99:2086/udp/239.77.0.78:5146,0.583 MB/s
CCTV4_电信_广东,http://114.98.188.23:2000/rtp/238.1.78.236:7760,0.579 MB/s
CCTV4_电信_广东,http://113.75.183.99:2086/udp/239.77.1.163:5146,0.559 MB/s
CCTV4_电信_广东,http://218.19.110.134:9999/udp/239.77.1.163:5146,0.556 MB/s
CCTV4_电信_广东,http://113.100.72.95:8899/udp/239.77.1.163:5146,0.553 MB/s
CCTV4_电信_广东,http://113.75.183.99:2086/udp/239.77.1.166:5146,0.551 MB/s
CCTV4_电信_广东,http://113.100.72.95:8899/udp/239.77.0.78:5146,0.548 MB/s
CCTV4_电信_广东,http://218.19.110.134:9999/udp/239.77.1.166:5146,0.543 MB/s
CCTV4_电信_广东,http://125.92.101.148:8899/udp/239.77.0.78:5146,0.525 MB/s
CCTV4_电信_广东,http://14.121.146.49:554/udp/239.77.0.78:5146,0.505 MB/s
CCTV4_电信_广东,http://113.110.72.121:808/hls/116/index.m3u8,0.473 MB/s
CCTV4_电信_广东,http://113.86.205.10:8090/hls/116/index.m3u8,0.001 MB/s
CCTV4_电信_河南,http://222.88.207.5:808/hls/4/index.m3u8,1.035 MB/s
CCTV4_电信_河南,http://222.89.29.199:808/hls/4/index.m3u8,0.001 MB/s
CCTV4_电信_浙江,http://122.234.76.0:4022/rtp/233.50.201.4:5140,0.288 MB/s
CCTV4_电信_浙江,http://125.110.26.33:8044/rtp/233.50.201.4:5140,0.287 MB/s
CCTV4_电信_浙江,http://125.125.199.56:8889/rtp/233.50.201.4:5140,0.287 MB/s
CCTV4_电信_海南,http://36.101.6.96:554/rtp/239.253.64.196:5140,0.434 MB/s
CCTV4_电信_海南,http://36.101.6.96:554/rtp/239.253.64.15:5140,0.301 MB/s
CCTV4_电信_湖北,http://119.98.125.196:4022/rtp/239.69.1.138:10466,0.560 MB/s
CCTV4_电信_湖北,http://59.175.18.100:8888/rtp/239.69.1.138:10466,0.534 MB/s
CCTV4_电信_湖南,http://118.254.159.80:8888/udp/239.76.246.154:1234,0.594 MB/s
CCTV4_电信_湖南,http://118.254.159.80:8888/udp/239.76.246.95:1234,0.584 MB/s
CCTV4_电信_湖南,http://118.254.159.80:8888/udp/239.76.253.154:9000,0.581 MB/s
CCTV4_电信_湖南,http://118.251.69.109:4022/udp/239.76.246.95:1234,0.567 MB/s
CCTV4_电信_湖南,http://118.251.69.109:4022/udp/239.76.246.154:1234,0.555 MB/s
CCTV4_电信_湖南,http://118.251.69.109:4022/udp/239.76.253.154:9000,0.552 MB/s
CCTV4_电信_湖南,http://118.251.69.109:4022/udp/239.76.245.195:1234,0.485 MB/s
CCTV4_电信_湖南,http://118.254.159.80:8888/udp/239.76.253.95:9000,0.305 MB/s
CCTV4_电信_湖南,http://118.254.159.80:8888/udp/239.76.245.195:1234,0.183 MB/s
CCTV4_电信_西藏,http://220.182.45.198:20088/tsfile/live/0004_1.m3u8,0.485 MB/s
CCTV4_电信_重庆,http://113.251.180.215:4022/rtp/235.254.198.183:7980,0.587 MB/s
CCTV4_电信_重庆,http://14.105.65.166:7980/rtp/235.254.198.183:7980,0.556 MB/s
CCTV4_电信_重庆,http://113.251.180.215:4022/rtp/235.254.198.3:1288,0.298 MB/s
CCTV4_电信_陕西,http://219.145.19.145:4000/rtp/239.112.205.202:5140,0.615 MB/s
CCTV4_电信_陕西,http://219.145.19.7:5558/rtp/239.112.205.202:5140,0.568 MB/s
CCTV4_电信_陕西,http://219.145.19.213:5555/rtp/239.112.205.202:5140,0.559 MB/s
CCTV4_电信_陕西,http://113.133.233.177:8014/rtp/239.112.205.202:5140,0.552 MB/s
CCTV4_电信_陕西,http://222.90.48.33:9999/rtp/239.112.205.202:5140,0.527 MB/s
CCTV4_电信_陕西,http://117.23.162.73:9001/rtp/239.112.205.202:5140,0.519 MB/s
CCTV4_移动,http://39.134.24.161/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226191/index.m3u8?,0.001 MB/s
CCTV4_移动,http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226191/index.m3u8,0.001 MB/s
CCTV4_移动,http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226191/index.m3u8?,0.001 MB/s
CCTV4_移动,http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226191/1.m3u8,0.001 MB/s
CCTV4_移动,http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226191/index.m3u8,0.001 MB/s
CCTV4_移动,http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226428/index.m3u8,0.001 MB/s
CCTV4_移动_山东,http://120.224.7.90:809/hls/216/index.m3u8,1.202 MB/s
CCTV4_联通_内蒙,http://116.116.118.78:9999/udp/239.125.2.196:4120,0.546 MB/s
CCTV4_联通_内蒙,http://116.112.42.199:808/hls/104/index.m3u8,0.001 MB/s
CCTV4_联通_内蒙,http://110.7.128.156:8096/tsfile/live/0004_1.m3u8,0.001 MB/s
CCTV4_联通_内蒙,http://1.24.190.98:10080/hls/4/index.m3u8,0.001 MB/s
CCTV4_联通_北京,http://221.221.159.57:8182/rtp/239.3.1.213:4220,0.988 MB/s
CCTV4_联通_北京,http://221.221.159.57:8182/rtp/239.3.1.105:8092,0.875 MB/s
CCTV4_联通_北京,http://114.254.89.130:8020/rtp/239.3.1.105:8092,0.650 MB/s
CCTV4_联通_北京,http://114.250.19.220:33333/rtp/239.3.1.213:4220,0.599 MB/s
CCTV4_联通_北京,http://123.118.48.192:9000/rtp/239.3.1.105:8092,0.596 MB/s
CCTV4_联通_北京,http://222.129.36.84:8888/rtp/239.3.1.105:8092,0.588 MB/s
CCTV4_联通_北京,http://222.129.36.84:8888/rtp/239.3.1.213:4220,0.588 MB/s
CCTV4_联通_北京,http://123.117.32.124:4000/rtp/239.3.1.213:4220,0.584 MB/s
CCTV4_联通_北京,http://221.218.212.142:8012/rtp/239.3.1.105:8092,0.584 MB/s
CCTV4_联通_北京,http://111.201.166.36:10000/rtp/239.3.1.213:4220,0.578 MB/s
CCTV4_联通_北京,http://111.201.166.36:10000/rtp/239.3.1.105:8092,0.578 MB/s
CCTV4_联通_北京,http://114.243.106.222:8821/rtp/239.3.1.213:4220,0.577 MB/s
CCTV4_联通_北京,http://222.129.98.92:8888/rtp/239.3.1.105:8092,0.576 MB/s
CCTV4_联通_北京,http://221.218.212.142:8012/rtp/239.3.1.213:4220,0.576 MB/s
CCTV4_联通_北京,http://123.115.195.226:8888/rtp/239.3.1.213:4220,0.575 MB/s
CCTV4_联通_北京,http://114.245.179.5:10000/rtp/239.3.1.213:4220,0.568 MB/s
CCTV4_联通_北京,http://114.250.19.220:33333/rtp/239.3.1.105:8092,0.568 MB/s
CCTV4_联通_北京,http://114.243.106.222:8821/rtp/239.3.1.105:8092,0.566 MB/s
CCTV4_联通_北京,http://123.122.162.5:19999/rtp/239.3.1.213:4220,0.560 MB/s
CCTV4_联通_北京,http://123.122.162.5:19999/rtp/239.3.1.105:8092,0.560 MB/s
CCTV4_联通_北京,http://111.196.130.206:20000/rtp/239.3.1.105:8092,0.558 MB/s
CCTV4_联通_北京,http://123.115.195.226:8888/rtp/239.3.1.105:8092,0.554 MB/s
CCTV4_联通_北京,http://123.115.116.115:4000/rtp/239.3.1.105:8092,0.545 MB/s
CCTV4_联通_北京,http://114.245.179.5:10000/rtp/239.3.1.105:8092,0.545 MB/s
CCTV4_联通_北京,http://123.115.116.115:4000/rtp/239.3.1.213:4220,0.544 MB/s
CCTV4_联通_北京,http://222.129.98.92:8888/rtp/239.3.1.213:4220,0.539 MB/s
CCTV4_联通_北京,http://123.113.9.199:8876/rtp/239.3.1.105:8092,0.535 MB/s
CCTV4_联通_北京,http://123.118.48.192:9000/rtp/239.3.1.213:4220,0.525 MB/s
CCTV4_联通_北京,http://125.33.179.15:5555/rtp/239.3.1.105:8092,0.493 MB/s
CCTV4_联通_北京,http://114.254.85.234:2222/rtp/239.3.1.213:4220,0.470 MB/s
CCTV4_联通_北京,http://114.254.85.234:2222/rtp/239.3.1.105:8092,0.466 MB/s
CCTV4_联通_北京,http://124.65.3.44:20000/rtp/239.3.1.105:8092,0.457 MB/s
CCTV4_联通_北京,http://123.117.32.124:4000/rtp/239.3.1.105:8092,0.454 MB/s
CCTV4_联通_北京,http://125.33.179.15:5555/rtp/239.3.1.213:4220,0.444 MB/s
CCTV4_联通_北京,http://123.122.161.121:19999/rtp/239.3.1.213:4220,0.398 MB/s
CCTV4_联通_北京,http://114.254.89.130:8020/rtp/239.3.1.213:4220,0.250 MB/s
CCTV4_联通_北京,http://111.196.130.206:20000/rtp/239.3.1.213:4220,0.211 MB/s
CCTV4_联通_北京,http://123.113.9.199:8876/rtp/239.3.1.213:4220,0.186 MB/s
CCTV4_联通_北京,http://123.113.100.181:4022/rtp/239.3.1.213:4220,0.154 MB/s
CCTV4_联通_吉林,http://119.54.9.138:9999/hls/4/index.m3u8,0.951 MB/s
CCTV4_联通_天津,http://221.198.174.113:8888/udp/225.1.1.150:5002,0.542 MB/s
CCTV4_联通_山西,http://118.81.201.143:8085/rtp/226.0.2.156:9160,0.609 MB/s
CCTV4_联通_山西,http://171.120.109.234:8085/rtp/226.0.2.156:9160,0.592 MB/s
CCTV4_联通_山西,http://171.116.210.162:8003/rtp/226.0.2.156:9160,0.591 MB/s
CCTV4_联通_山西,http://171.117.180.171:8085/rtp/226.0.2.156:9160,0.555 MB/s
CCTV4_联通_山西,http://183.188.20.168:6000/rtp/226.0.2.156:9160,0.552 MB/s
CCTV4_联通_山西,http://171.116.211.70:8005/rtp/226.0.2.156:9160,0.549 MB/s
CCTV4_联通_山西,http://221.205.200.128:8085/rtp/226.0.2.156:9160,0.542 MB/s
CCTV4_联通_山西,http://171.120.111.89:8085/rtp/226.0.2.156:9160,0.535 MB/s
CCTV4_联通_山西,http://118.79.114.230:6000/rtp/226.0.2.156:9160,0.534 MB/s
CCTV4_联通_山西,http://171.116.71.69:8084/rtp/226.0.2.156:9160,0.528 MB/s
CCTV4_联通_山西,http://171.120.69.226:8005/rtp/226.0.2.156:9160,0.521 MB/s
CCTV4_联通_山西,http://221.205.201.55:8085/rtp/226.0.2.156:9160,0.500 MB/s
CCTV4_联通_山西,http://116.179.130.242:6000/rtp/226.0.2.156:9160,0.494 MB/s
CCTV4_联通_山西,http://171.117.180.171:8084/rtp/226.0.2.156:9160,0.490 MB/s
CCTV4_联通_山西,http://171.116.71.69:8084/rtp/226.0.2.21:8080,0.486 MB/s
CCTV4_联通_山西,http://171.120.111.64:8085/rtp/226.0.2.156:9160,0.449 MB/s
CCTV4_联通_山西,http://183.188.20.168:6000/rtp/226.0.2.21:8080,0.330 MB/s
CCTV4_联通_山西,http://171.120.111.89:8085/rtp/226.0.2.21:8080,0.328 MB/s
CCTV4_联通_山西,http://171.117.180.171:8084/rtp/226.0.2.21:8080,0.328 MB/s
CCTV4_联通_山西,http://171.120.69.226:8005/rtp/226.0.2.21:8080,0.327 MB/s
CCTV4_联通_山西,http://221.205.201.55:8085/rtp/226.0.2.21:8080,0.326 MB/s
CCTV4_联通_山西,http://60.223.72.253:8001/rtp/226.0.2.21:8080,0.326 MB/s
CCTV4_联通_山西,http://171.117.180.171:8085/rtp/226.0.2.21:8080,0.326 MB/s
CCTV4_联通_山西,http://118.81.201.143:8085/rtp/226.0.2.21:8080,0.326 MB/s
CCTV4_联通_山西,http://171.116.211.70:8005/rtp/226.0.2.21:8080,0.325 MB/s
CCTV4_联通_山西,http://60.223.72.4:8001/rtp/226.0.2.21:8080,0.325 MB/s
CCTV4_联通_山西,http://118.79.114.230:6000/rtp/226.0.2.21:8080,0.325 MB/s
CCTV4_联通_山西,http://221.205.200.128:8085/rtp/226.0.2.21:8080,0.324 MB/s
CCTV4_联通_山西,http://171.120.109.234:8085/rtp/226.0.2.21:8080,0.324 MB/s
CCTV4_联通_山西,http://116.179.130.242:6000/rtp/226.0.2.21:8080,0.322 MB/s
CCTV4_联通_山西,http://171.117.202.161:8083/rtp/226.0.2.21:8080,0.320 MB/s
CCTV4_联通_山西,http://171.118.108.99:8084/rtp/226.0.2.156:9160,0.310 MB/s
CCTV4_联通_山西,http://171.116.210.162:8003/rtp/226.0.2.21:8080,0.309 MB/s
CCTV4_联通_山西,http://171.120.111.64:8085/rtp/226.0.2.21:8080,0.284 MB/s
CCTV4_联通_山西,http://183.184.138.144:8085/rtp/226.0.2.21:8080,0.284 MB/s
CCTV4_联通_山西,http://171.117.120.54:8082/rtp/226.0.2.156:9160,0.266 MB/s
CCTV4_联通_山西,http://171.117.202.161:8082/rtp/226.0.2.156:9160,0.266 MB/s
CCTV4_联通_山西,http://171.117.202.161:8082/rtp/226.0.2.21:8080,0.254 MB/s
CCTV4_联通_山西,http://171.118.108.99:8084/rtp/226.0.2.21:8080,0.254 MB/s
CCTV4_联通_山西,http://171.117.202.161:8084/rtp/226.0.2.21:8080,0.175 MB/s
CCTV4_联通_山西,http://171.116.224.177:8085/rtp/226.0.2.21:8080,0.139 MB/s
CCTV4_联通_山西,http://171.116.224.177:8085/rtp/226.0.2.156:9160,0.137 MB/s
CCTV4_联通_河北,http://101.23.216.151:8090/hls/12/index.m3u8,0.739 MB/s
CCTV4_联通_河北,http://121.24.98.179:8090/hls/12/index.m3u8,0.715 MB/s
CCTV4_联通_河北,http://120.4.34.234:4000/rtp/239.253.93.192:6370,0.564 MB/s
CCTV4_联通_河北,http://110.253.152.47:8888/rtp/239.253.93.192:6370,0.538 MB/s
CCTV4_联通_河北,http://116.131.173.194:809/hls/4/index.m3u8,0.510 MB/s
CCTV4_联通_河北,http://121.24.99.44:8090/hls/12/index.m3u8,0.001 MB/s
CCTV4_联通_河北,http://121.27.126.103:809/hls/4/index.m3u8,0.001 MB/s
CCTV4_联通_河北,http://121.19.134.48:808/tsfile/live/0004_1.m3u8,0.001 MB/s
CCTV4_联通_河南,http://115.59.84.31:8089/rtp/225.1.5.30:1333,0.533 MB/s
CCTV4_联通_河南,http://115.59.84.31:8089/rtp/225.1.5.31:1342,0.529 MB/s
CCTV4_联通_河南,http://61.52.26.70:2000/rtp/225.1.5.30:1333,0.461 MB/s
CCTV4_联通_河南,http://61.52.26.70:2000/rtp/225.1.5.31:1342,0.406 MB/s
CCTV4_联通_河南,http://61.52.8.160:13579/rtp/225.1.5.31:1342,0.356 MB/s
CCTV4_联通_河南,http://221.15.7.122:8888/rtp/225.1.5.31:1342,0.312 MB/s
CCTV4_联通_河南,http://61.52.8.160:13579/rtp/225.1.5.30:1333,0.309 MB/s
CCTV4_联通_河南,http://115.59.84.31:8089/rtp/225.1.4.4:1033,0.300 MB/s
CCTV4_联通_河南,http://221.15.7.122:8888/rtp/225.1.4.4:1033,0.300 MB/s
CCTV4_联通_河南,http://61.52.8.160:13579/rtp/225.1.4.4:1033,0.298 MB/s
CCTV4_联通_河南,http://61.52.26.70:2000/rtp/225.1.4.4:1033,0.293 MB/s
CCTV4_联通_河南,http://221.15.7.122:8888/rtp/225.1.5.30:1333,0.253 MB/s
CCTV4_联通_河南,http://219.156.116.168:808/hls/4/index.m3u8,0.001 MB/s
CCTV4_联通_辽宁,http://175.147.76.205:8888/rtp/232.0.0.201:1234,0.548 MB/s
CCTV4_联通_辽宁,http://175.147.76.205:8888/rtp/232.0.0.53:1234,0.537 MB/s
CCTV4_联通_重庆,http://123.145.76.160:4000/udp/225.0.4.176:7980,0.590 MB/s
CCTV4_联通_重庆,http://27.10.213.1:8004/udp/225.0.4.176:7980,0.578 MB/s
CCTV4_联通_重庆,http://123.145.12.76:8004/udp/225.0.4.176:7980,0.576 MB/s
CCTV4_联通_重庆,http://27.11.40.250:8003/udp/225.0.4.176:7980,0.567 MB/s
CCTV4_联通_重庆,http://113.206.158.89:8004/udp/225.0.4.176:7980,0.554 MB/s
CCTV4_联通_重庆,http://27.11.249.153:8010/udp/225.0.4.176:7980,0.550 MB/s
CCTV4_联通_重庆,http://27.11.49.156:8007/udp/225.0.4.176:7980,0.539 MB/s
CCTV4_联通_重庆,http://27.11.38.238:8004/udp/225.0.4.176:7980,0.527 MB/s
CCTV4_联通_重庆,http://113.206.179.208:8005/udp/225.0.4.176:7980,0.517 MB/s
CCTV4_联通_重庆,http://27.11.49.156:8008/udp/225.0.4.176:7980,0.383 MB/s
CCTV4_联通_重庆,http://27.11.49.156:8009/udp/225.0.4.176:7980,0.373 MB/s
CCTV4_联通_重庆,http://27.11.62.175:8002/udp/225.0.4.176:7980,0.333 MB/s
CCTV4_联通_重庆,http://27.11.62.175:8008/udp/225.0.4.176:7980,0.198 MB/s
CCTV4_联通_重庆,http://27.11.249.38:8004/udp/225.0.4.176:7980,0.170 MB/s
CCTV4亚洲_联通_河北,http://110.253.152.47:8888/rtp/239.253.92.251:6141,0.594 MB/s
CCTV4亚洲_联通_河北,http://120.4.34.234:4000/rtp/239.253.92.251:6141,0.542 MB/s
CCTV4北美_电信_山东,http://182.32.160.10:9997/udp/239.21.2.29:5002,0.567 MB/s
CCTV4美洲_电信_湖南,http://118.254.159.80:8888/udp/239.76.253.96:9000,0.614 MB/s
CCTV4美洲_电信_湖南,http://118.254.159.80:8888/udp/239.76.246.96:1234,0.562 MB/s
CCTV4美洲_电信_湖南,http://118.251.69.109:4022/udp/239.76.246.96:1234,0.550 MB/s
CCTV4美洲_电信_湖南,http://118.251.69.109:4022/udp/239.76.253.96:9000,0.525 MB/s
CCTV4美洲_联通_内蒙,http://116.116.118.78:9999/udp/239.125.2.197:4120,0.482 MB/s
CCTV4美洲_联通_北京,http://114.254.89.130:8020/rtp/239.3.1.214:4220,0.650 MB/s
CCTV4美洲_联通_北京,http://221.221.159.57:8182/rtp/239.3.1.214:4220,0.635 MB/s
CCTV4美洲_联通_北京,http://123.118.48.192:9000/rtp/239.3.1.214:4220,0.594 MB/s
CCTV4美洲_联通_北京,http://114.250.19.220:33333/rtp/239.3.1.214:4220,0.593 MB/s
CCTV4美洲_联通_北京,http://222.129.36.84:8888/rtp/239.3.1.214:4220,0.588 MB/s
CCTV4美洲_联通_北京,http://123.115.195.226:8888/rtp/239.3.1.214:4220,0.587 MB/s
CCTV4美洲_联通_北京,http://111.201.166.36:10000/rtp/239.3.1.214:4220,0.586 MB/s
CCTV4美洲_联通_北京,http://123.115.116.115:4000/rtp/239.3.1.214:4220,0.581 MB/s
CCTV4美洲_联通_北京,http://114.243.106.222:8821/rtp/239.3.1.214:4220,0.562 MB/s
CCTV4美洲_联通_北京,http://221.218.212.142:8012/rtp/239.3.1.214:4220,0.554 MB/s
CCTV4美洲_联通_北京,http://111.196.130.206:20000/rtp/239.3.1.214:4220,0.531 MB/s
CCTV4美洲_联通_北京,http://124.65.3.44:20000/rtp/239.3.1.214:4220,0.528 MB/s
CCTV4美洲_联通_北京,http://222.129.98.92:8888/rtp/239.3.1.214:4220,0.525 MB/s
CCTV4美洲_联通_北京,http://123.113.9.199:8876/rtp/239.3.1.214:4220,0.524 MB/s
CCTV4美洲_联通_北京,http://114.254.85.234:2222/rtp/239.3.1.214:4220,0.470 MB/s
CCTV4美洲_联通_北京,http://125.33.179.15:5555/rtp/239.3.1.214:4220,0.442 MB/s
CCTV4美洲_联通_北京,http://123.122.162.5:19999/rtp/239.3.1.214:4220,0.303 MB/s
CCTV4美洲_联通_北京,http://114.245.179.5:10000/rtp/239.3.1.214:4220,0.148 MB/s
CCTV4美洲_联通_河北,http://120.4.34.234:4000/rtp/239.253.93.193:6371,0.542 MB/s
CCTV4美洲_联通_河北,http://110.253.152.47:8888/rtp/239.253.93.193:6371,0.538 MB/s
CCTV4美洲_联通_河南,http://115.59.84.31:8089/rtp/225.1.5.32:1343,0.553 MB/s
CCTV4美洲_联通_河南,http://61.52.26.70:2000/rtp/225.1.5.32:1343,0.469 MB/s
CCTV4美洲_联通_河南,http://61.52.8.160:13579/rtp/225.1.5.32:1343,0.372 MB/s
CCTV4美洲_联通_辽宁,http://175.147.76.205:8888/rtp/232.0.0.59:1234,0.538 MB/s
CCTV音乐风云4M1080_移动,http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226953/index.m3u8,0.001 MB/s
CETV4SD_电信_海南,http://36.101.6.96:554/rtp/239.253.64.139:5140,0.296 MB/s
CETV4_电信_北京,http://115.171.251.148:8888/udp/225.1.8.195:4120,0.294 MB/s
CETV4_电信_北京,http://115.171.216.22:4000/udp/225.1.8.195:4120,0.212 MB/s
CETV4_电信_四川,http://182.149.106.41:8888/udp/239.93.0.50:5140,0.297 MB/s
CETV4_电信_四川,http://171.88.35.80:4000/udp/239.93.0.50:5140,0.296 MB/s
CETV4_电信_四川,http://125.71.122.30:8888/udp/239.93.0.50:5140,0.296 MB/s
CETV4_电信_四川,http://110.188.37.163:55555/udp/239.93.0.50:5140,0.296 MB/s
CETV4_电信_四川,http://118.114.188.36:8888/udp/239.93.0.50:5140,0.294 MB/s
CETV4_电信_山东,http://182.32.160.10:9997/udp/239.21.1.222:5002,0.297 MB/s
CETV4_电信_陕西,http://113.133.233.177:8014/rtp/239.111.205.169:5140,0.311 MB/s
CETV4_电信_陕西,http://219.145.19.7:5558/rtp/239.109.205.49:8328,0.310 MB/s
CETV4_电信_陕西,http://219.145.19.145:4000/rtp/239.109.205.49:8328,0.310 MB/s
CETV4_电信_陕西,http://113.133.233.177:8011/rtp/239.111.205.169:5140,0.310 MB/s
CETV4_电信_陕西,http://219.145.19.7:5558/rtp/239.111.205.169:5140,0.310 MB/s
CETV4_电信_陕西,http://113.133.233.177:8014/rtp/239.109.205.49:8328,0.309 MB/s
CETV4_电信_陕西,http://113.133.233.177:8011/rtp/239.109.205.49:8328,0.309 MB/s
CETV4_电信_陕西,http://222.90.48.33:9999/rtp/239.111.205.169:5140,0.308 MB/s
CETV4_电信_陕西,http://219.145.19.213:5555/rtp/239.109.205.49:8328,0.308 MB/s
CETV4_电信_陕西,http://219.145.19.213:5555/rtp/239.111.205.169:5140,0.308 MB/s
CETV4_电信_陕西,http://222.90.48.33:9999/rtp/239.109.205.49:8328,0.306 MB/s
CETV4_电信_陕西,http://117.23.162.73:9001/rtp/239.109.205.49:8328,0.304 MB/s
CETV4_电信_陕西,http://117.23.162.73:9001/rtp/239.111.205.169:5140,0.301 MB/s
CETV4_联通_内蒙,http://1.24.190.98:10080/hls/19/index.m3u8,0.605 MB/s
CETV4_联通_内蒙,http://116.116.118.78:9999/udp/239.125.1.110:4120,0.527 MB/s
CETV4_联通_北京,http://221.221.159.57:8182/rtp/239.3.1.56:4120,0.521 MB/s
CETV4_联通_北京,http://123.117.32.124:4000/rtp/239.3.1.56:4120,0.297 MB/s
CETV4_联通_北京,http://222.129.36.84:8888/rtp/239.3.1.56:4120,0.297 MB/s
CETV4_联通_北京,http://114.250.19.220:33333/rtp/239.3.1.56:4120,0.297 MB/s
CETV4_联通_北京,http://111.196.130.206:20000/rtp/239.3.1.56:4120,0.297 MB/s
CETV4_联通_北京,http://123.122.162.5:19999/rtp/239.3.1.56:4120,0.297 MB/s
CETV4_联通_北京,http://124.65.3.44:20000/rtp/239.3.1.56:4120,0.297 MB/s
CETV4_联通_北京,http://114.243.106.222:8821/rtp/239.3.1.56:4120,0.296 MB/s
CETV4_联通_北京,http://123.115.116.115:4000/rtp/239.3.1.56:4120,0.296 MB/s
CETV4_联通_北京,http://123.122.161.121:19999/rtp/239.3.1.56:4120,0.296 MB/s
CETV4_联通_北京,http://111.201.166.36:10000/rtp/239.3.1.56:4120,0.296 MB/s
CETV4_联通_北京,http://123.115.195.226:8888/rtp/239.3.1.56:4120,0.295 MB/s
CETV4_联通_北京,http://222.129.98.92:8888/rtp/239.3.1.56:4120,0.295 MB/s
CETV4_联通_北京,http://123.118.48.192:9000/rtp/239.3.1.56:4120,0.295 MB/s