-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtest.m3u8
2869 lines (2869 loc) · 199 KB
/
test.m3u8
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
#EXTM3U
#EXT-X-ALLOW-CACHE:YES
#EXT-X-VERSION:3
#EXT-X-TARGETDURATION:9
#EXTINF:5.133333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0000.ts
#EXTINF:5.9,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0001.ts
#EXTINF:4.966667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0002.ts
#EXTINF:5.533333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0003.ts
#EXTINF:6.266667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0004.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0005.ts
#EXTINF:2.733333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0006.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0007.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0008.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0009.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0010.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0011.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0012.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0013.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0014.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0015.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0016.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0017.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0018.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0019.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0020.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0021.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0022.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0023.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0024.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0025.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0026.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0027.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0028.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0029.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0030.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0031.ts
#EXTINF:7.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0032.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0033.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0034.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0035.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0036.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0037.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0038.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0039.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0040.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0041.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0042.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0043.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0044.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0045.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0046.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0047.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0048.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0049.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0050.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0051.ts
#EXTINF:3.3,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0052.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0053.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0054.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0055.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0056.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0057.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0058.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0059.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0060.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0061.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0062.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0063.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0064.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0065.ts
#EXTINF:6.7,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0066.ts
#EXTINF:2.833333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0067.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0068.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0069.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0070.ts
#EXTINF:7.466667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0071.ts
#EXTINF:6.366667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0072.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0073.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0074.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0075.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0076.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0077.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0078.ts
#EXTINF:7.4,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0079.ts
#EXTINF:8.266667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0080.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0081.ts
#EXTINF:7.4,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0082.ts
#EXTINF:5.133333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0083.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0084.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0085.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0086.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0087.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0088.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0089.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0090.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0091.ts
#EXTINF:7.8,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0092.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0093.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0094.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0095.ts
#EXTINF:7.433333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0096.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0097.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0098.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0099.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0100.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0101.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0102.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0103.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0104.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0105.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0106.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0107.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0108.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0109.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0110.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0111.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0112.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0113.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0114.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0115.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0116.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0117.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0118.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0119.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0120.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0121.ts
#EXTINF:6.433333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0122.ts
#EXTINF:4.033333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0123.ts
#EXTINF:6.8,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0124.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0125.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0126.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0127.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0128.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0129.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0130.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0131.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0132.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0133.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0134.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0135.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0136.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0137.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0138.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0139.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0140.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0141.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0142.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0143.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0144.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0145.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0146.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0147.ts
#EXTINF:7.566667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0148.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0149.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0150.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0151.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0152.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0153.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0154.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0155.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0156.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0157.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0158.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0159.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0160.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0161.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0162.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0163.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0164.ts
#EXTINF:4.166667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0165.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0166.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0167.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0168.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0169.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0170.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0171.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0172.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0173.ts
#EXTINF:7.766667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0174.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0175.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0176.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0177.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0178.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0179.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0180.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0181.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0182.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0183.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0184.ts
#EXTINF:5.7,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0185.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0186.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0187.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0188.ts
#EXTINF:2.966667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0189.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0190.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0191.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0192.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0193.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0194.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0195.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0196.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0197.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0198.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0199.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0200.ts
#EXTINF:8,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0201.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0202.ts
#EXTINF:7,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0203.ts
#EXTINF:7.033333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0204.ts
#EXTINF:7.633333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0205.ts
#EXTINF:5.9,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0206.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0207.ts
#EXTINF:7.8,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0208.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0209.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0210.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0211.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0212.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0213.ts
#EXTINF:7.133333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0214.ts
#EXTINF:7.5,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0215.ts
#EXTINF:3.7,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0216.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0217.ts
#EXTINF:7.266667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0218.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0219.ts
#EXTINF:7.166667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0220.ts
#EXTINF:6.933333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0221.ts
#EXTINF:6.4,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0222.ts
#EXTINF:7.6,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0223.ts
#EXTINF:5.033333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0224.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0225.ts
#EXTINF:8.133333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0226.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0227.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0228.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0229.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0230.ts
#EXTINF:8.033333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0231.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0232.ts
#EXTINF:5.166667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0233.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0234.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0235.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0236.ts
#EXTINF:6.933333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0237.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0238.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0239.ts
#EXTINF:3.1,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0240.ts
#EXTINF:8.266667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0241.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0242.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0243.ts
#EXTINF:6,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0244.ts
#EXTINF:4.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0245.ts
#EXTINF:5.033333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0246.ts
#EXTINF:4.866667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0247.ts
#EXTINF:4.966667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0248.ts
#EXTINF:5.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0249.ts
#EXTINF:1.4,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0250.ts
#EXTINF:1.633333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0251.ts
#EXTINF:8.3,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0252.ts
#EXTINF:7.366667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0253.ts
#EXTINF:4.3,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0254.ts
#EXTINF:6.6,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0255.ts
#EXTINF:5.1,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0256.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0257.ts
#EXTINF:4.933333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0258.ts
#EXTINF:4.833333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0259.ts
#EXTINF:6,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0260.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0261.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0262.ts
#EXTINF:5,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0263.ts
#EXTINF:4.6,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0264.ts
#EXTINF:5.633333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0265.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0266.ts
#EXTINF:4.633333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0267.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0268.ts
#EXTINF:7.866667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0269.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0270.ts
#EXTINF:6.666667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0271.ts
#EXTINF:6,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0272.ts
#EXTINF:6.633333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0273.ts
#EXTINF:5.066667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0274.ts
#EXTINF:8.266667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0275.ts
#EXTINF:8.066667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0276.ts
#EXTINF:6.533333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0277.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0278.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0279.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0280.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0281.ts
#EXTINF:7.633333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0282.ts
#EXTINF:2.566667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0283.ts
#EXTINF:3.833333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0284.ts
#EXTINF:3.6,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0285.ts
#EXTINF:2.133333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0286.ts
#EXTINF:1.633333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0287.ts
#EXTINF:2.8,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0288.ts
#EXTINF:3.7,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0289.ts
#EXTINF:1.866667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0290.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0291.ts
#EXTINF:6.733333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0292.ts
#EXTINF:7.066667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0293.ts
#EXTINF:5.633333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0294.ts
#EXTINF:6.266667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0295.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0296.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0297.ts
#EXTINF:5.533333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0298.ts
#EXTINF:7.8,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0299.ts
#EXTINF:7.8,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0300.ts
#EXTINF:6.2,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0301.ts
#EXTINF:5.666667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0302.ts
#EXTINF:6.833333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0303.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0304.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0305.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0306.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0307.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0308.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0309.ts
#EXTINF:5.166667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0310.ts
#EXTINF:5.133333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0311.ts
#EXTINF:7.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0312.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0313.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0314.ts
#EXTINF:7.733333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0315.ts
#EXTINF:7.6,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0316.ts
#EXTINF:7.466667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0317.ts
#EXTINF:6.933333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0318.ts
#EXTINF:4.066667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0319.ts
#EXTINF:5.566667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0320.ts
#EXTINF:4.133333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0321.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0322.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0323.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0324.ts
#EXTINF:6.666667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0325.ts
#EXTINF:6.5,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0326.ts
#EXTINF:6.2,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0327.ts
#EXTINF:8,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0328.ts
#EXTINF:6,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0329.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0330.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0331.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0332.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0333.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0334.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0335.ts
#EXTINF:8.066667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0336.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0337.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0338.ts
#EXTINF:2.933333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0339.ts
#EXTINF:5.8,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0340.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0341.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0342.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0343.ts
#EXTINF:6,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0344.ts
#EXTINF:4,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0345.ts
#EXTINF:6,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0346.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0347.ts
#EXTINF:6.666667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0348.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0349.ts
#EXTINF:4,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0350.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0351.ts
#EXTINF:4.2,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0352.ts
#EXTINF:4.366667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0353.ts
#EXTINF:3.8,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0354.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0355.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0356.ts
#EXTINF:6.1,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0357.ts
#EXTINF:7.166667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0358.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0359.ts
#EXTINF:7.466667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0360.ts
#EXTINF:7.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0361.ts
#EXTINF:1.866667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0362.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0363.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0364.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0365.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0366.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0367.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0368.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0369.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0370.ts
#EXTINF:6.266667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0371.ts
#EXTINF:7.933333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0372.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0373.ts
#EXTINF:8.166667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0374.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0375.ts
#EXTINF:6.6,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0376.ts
#EXTINF:7.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0377.ts
#EXTINF:3.3,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0378.ts
#EXTINF:1.633333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0379.ts
#EXTINF:6.366667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0380.ts
#EXTINF:7.933333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0381.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0382.ts
#EXTINF:8.266667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0383.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0384.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0385.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0386.ts
#EXTINF:6.533333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0387.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0388.ts
#EXTINF:5.4,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0389.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0390.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0391.ts
#EXTINF:7.633333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0392.ts
#EXTINF:8,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0393.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0394.ts
#EXTINF:7.7,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0395.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0396.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0397.ts
#EXTINF:4.7,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0398.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0399.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0400.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0401.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0402.ts
#EXTINF:7.366667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0403.ts
#EXTINF:6,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0404.ts
#EXTINF:2.2,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0405.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0406.ts
#EXTINF:1.466667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0407.ts
#EXTINF:1.133333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0408.ts
#EXTINF:0.833333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0409.ts
#EXTINF:8.033333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0410.ts
#EXTINF:7.1,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0411.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0412.ts
#EXTINF:5.866667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0413.ts
#EXTINF:6.733333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0414.ts
#EXTINF:3.166667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0415.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0416.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0417.ts
#EXTINF:3.7,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0418.ts
#EXTINF:3.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0419.ts
#EXTINF:5.9,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0420.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0421.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0422.ts
#EXTINF:4.633333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0423.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0424.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0425.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0426.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0427.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0428.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0429.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0430.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0431.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0432.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0433.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0434.ts
#EXTINF:6.5,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0435.ts
#EXTINF:6.266667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0436.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0437.ts
#EXTINF:6.6,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0438.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0439.ts
#EXTINF:5.966667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0440.ts
#EXTINF:1.966667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0441.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0442.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0443.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0444.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0445.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0446.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0447.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0448.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0449.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0450.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0451.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0452.ts
#EXTINF:3.666667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0453.ts
#EXTINF:2,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0454.ts
#EXTINF:3.633333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0455.ts
#EXTINF:7.633333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0456.ts
#EXTINF:8,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0457.ts
#EXTINF:8.033333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0458.ts
#EXTINF:7.066667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0459.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0460.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0461.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0462.ts
#EXTINF:5.966667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0463.ts
#EXTINF:5.1,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0464.ts
#EXTINF:3.8,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0465.ts
#EXTINF:1.766667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0466.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0467.ts
#EXTINF:6.833333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0468.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0469.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0470.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0471.ts
#EXTINF:6.766667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0472.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0473.ts
#EXTINF:5.433333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0474.ts
#EXTINF:3.733333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0475.ts
#EXTINF:5.633333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0476.ts
#EXTINF:7.566667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0477.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0478.ts
#EXTINF:7.266667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0479.ts
#EXTINF:6.966667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0480.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0481.ts
#EXTINF:5.966667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0482.ts
#EXTINF:7.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0483.ts
#EXTINF:3.4,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0484.ts
#EXTINF:7.5,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0485.ts
#EXTINF:4.733333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0486.ts
#EXTINF:3.133333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0487.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0488.ts
#EXTINF:8.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0489.ts
#EXTINF:7.033333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0490.ts
#EXTINF:4.333333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0491.ts
#EXTINF:3.933333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0492.ts
#EXTINF:4.466667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0493.ts
#EXTINF:3.366667,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0494.ts
#EXTINF:7.133333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0495.ts
#EXTINF:4.233333,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0496.ts
#EXTINF:5.3,
https://git.qiyezhushou.com.cn/cos/txvideo-new/scraper/bbb/mp4-720p/ts/ts1678735414/bf37112b6af1be60e5bfc47b952bdc9c_0497.ts