forked from Delaax67/log_dobleM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPlutoVOD_ES.m3u
2151 lines (2151 loc) · 335 KB
/
PlutoVOD_ES.m3u
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 PlutoVOD_ES 16/05/2023 23:45 https://t.me/EPG_dobleM
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/603cf1284d8d87001aaa909f/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Titanic II
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/603cf1284d8d87001aaa909f.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60dabf4ab8187f00136b1ef9/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",La caza
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60dabf4ab8187f00136b1ef9.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63566c7357400d0013a9aea3/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Ondine, la leyenda del mar
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63566c7357400d0013a9aea3.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60dabf4eb8187f00136b2017/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Amor
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60dabf4eb8187f00136b2017.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60dabf4ab8187f00136b1ef9/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",La caza
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60dabf4ab8187f00136b1ef9.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60d427a1b8187f00136a4141/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",De tal padre, tal hijo
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60d427a1b8187f00136a4141.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60d18632d2de2a0013003599/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Melancolía
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60d18632d2de2a0013003599.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/610bf37a94c1ec001376579d/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El juego de Hollywood
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/610bf37a94c1ec001376579d.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6189443a836015001bd0728d/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Breve encuentro
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6189443a836015001bd0728d.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/610bf38894c1ec0013765a68/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El Tercer Hombre
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/610bf38894c1ec0013765a68.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60d0437928f1d30013ed3ca3/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Sin amor
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60d0437928f1d30013ed3ca3.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60d0438c28f1d30013ed4161/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Tres caras
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60d0438c28f1d30013ed4161.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63723d3c1ac5b40013b799f0/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El Gatopardo
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63723d3c1ac5b40013b799f0.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60ed3e5834c9a50013f23493/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Un hombre sin pasado
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60ed3e5834c9a50013f23493.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6384a5949112e1001306e6ea/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",True Story
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6384a5949112e1001306e6ea.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6426c871fe0679001a24d58d/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Valentine, la venganza oscura
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6426c871fe0679001a24d58d.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63b6fa6d4da5ab00130b172e/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Hasta que la ley nos separe
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63b6fa6d4da5ab00130b172e.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63d2481af97d0100131e0fbc/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Conversaciones con otras mujeres
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63d2481af97d0100131e0fbc.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/64106a315d300f001323be52/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Las Apariencias
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/64106a315d300f001323be52.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6405a759c33aa40013039533/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El Chico de la Burbuja de Plástico
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6405a759c33aa40013039533.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63b411b988bc2000134e3d29/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Fresa y chocolate
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63b411b988bc2000134e3d29.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/64106a355d300f001323bf46/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Las Fantasias
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/64106a355d300f001323bf46.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63b6fa694da5ab00130b16b1/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Presunta inocencia
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63b6fa694da5ab00130b16b1.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/64103a61183a5400136fa8f4/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Más Allá de la Onda Expansiva
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/64103a61183a5400136fa8f4.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63b3ea9d6d793400134e7268/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Max Reload y los Desintegradores Abisales
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63b3ea9d6d793400134e7268.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63ad6efae83c950013967c3f/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",The Dead Girl
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63ad6efae83c950013967c3f.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63d7b6fd5957f2001315ff13/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Juego asesino
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63d7b6fd5957f2001315ff13.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60057a1e813b2d001b6871ee/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Crossworlds: entre dos mundos
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60057a1e813b2d001b6871ee.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63b6b4bd86acfd001367051a/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Quien eres
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63b6b4bd86acfd001367051a.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63ad733586acfd00136480ed/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Monster Hunt
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63ad733586acfd00136480ed.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63ad821a4da5ab00130883a7/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Un tipo de altura
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63ad821a4da5ab00130883a7.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63ad7601a6bb3b001471c4eb/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Reina Cristina
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63ad7601a6bb3b001471c4eb.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63d7b6ea5957f2001315fd02/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Una historia del Bronx
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63d7b6ea5957f2001315fd02.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63d7b6ea5957f2001315fd02/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Una historia del Bronx
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63d7b6ea5957f2001315fd02.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/61ea6ddb161b65001a9c2b72/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Dune
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/61ea6ddb161b65001a9c2b72.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f4f5cf0fa72a5001a5fda18/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Valkiria
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f4f5cf0fa72a5001a5fda18.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/61dec514635aeb001ac7d706/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Cube
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/61dec514635aeb001ac7d706.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f523c16db45a1001a79aac9/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Mis dos amores
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f523c16db45a1001a79aac9.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f4ead37db45a1001a795479/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",New York, I Love You
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f4ead37db45a1001a795479.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/618263c7b5d0e9001a8ca9ef/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El Hombre del Brazo de Oro
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/618263c7b5d0e9001a8ca9ef.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60dabf4ab8187f00136b1ef9/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",La caza
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60dabf4ab8187f00136b1ef9.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f523c26db45a1001a79ab9e/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El Luchador
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f523c26db45a1001a79ab9e.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/618102f8436116001a0bbea1/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Winter's Bone
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/618102f8436116001a0bbea1.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f620813fb35bf001af7c089/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Asesinato Justo
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f620813fb35bf001af7c089.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/62384c89ff21e500131cb453/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Mi pie izquierdo
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/62384c89ff21e500131cb453.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63723d3c1ac5b40013b799f0/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El Gatopardo
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63723d3c1ac5b40013b799f0.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f4f5ce5fa72a5001a5fd945/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",The Road
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f4f5ce5fa72a5001a5fd945.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/618a26b7f23da3001b149d2e/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Hamlet
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/618a26b7f23da3001b149d2e.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60dabf4eb8187f00136b2017/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Amor
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60dabf4eb8187f00136b2017.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/62876b26e26cc40014b2d9ff/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Precious
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/62876b26e26cc40014b2d9ff.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f4eb5f29dd795001ab5b671/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Nine
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f4eb5f29dd795001ab5b671.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/62384c84ff21e500131cb334/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",La decisión de Sophie
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/62384c84ff21e500131cb334.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6065b6943bbc1b001aee0231/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El rey de la comedia
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6065b6943bbc1b001aee0231.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60d0438328f1d30013ed3ea1/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Siempre Alice
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60d0438328f1d30013ed3ea1.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f4eac76db45a1001a794f96/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",La Mejor Oferta
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f4eac76db45a1001a794f96.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60d2d7c1fad1f80013b310b4/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Pride
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60d2d7c1fad1f80013b310b4.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6189443a836015001bd0728d/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Breve encuentro
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6189443a836015001bd0728d.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60d18632d2de2a0013003599/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Melancolía
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60d18632d2de2a0013003599.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/615eaa9c74755c001a4c9942/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Charada
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/615eaa9c74755c001a4c9942.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/610bf38894c1ec0013765a68/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El Tercer Hombre
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/610bf38894c1ec0013765a68.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6114cd6fdf179f0013199224/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Luna Nueva
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6114cd6fdf179f0013199224.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/61894447836015001bd07335/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Las Zapatillas Rojas
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/61894447836015001bd07335.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f4eaceddb45a1001a7952bb/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Mi Vida Ahora
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f4eaceddb45a1001a7952bb.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63527f70f030950013a3db05/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Byzantium
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63527f70f030950013a3db05.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f4eacc4db45a1001a7950fe/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Little Fish
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f4eacc4db45a1001a7950fe.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6076b665235736001ac44321/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Más fuerte que su destino
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6076b665235736001ac44321.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f4eacdbdb45a1001a79520d/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Manny & Lo
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f4eacdbdb45a1001a79520d.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f562df3f7db51001a3c5fa0/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El largo camino a casa
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f562df3f7db51001a3c5fa0.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60d18632d2de2a0013003599/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Melancolía
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60d18632d2de2a0013003599.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60d0438328f1d30013ed3ea1/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Siempre Alice
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60d0438328f1d30013ed3ea1.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/637249ef36d64a00145a344a/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Monte Carlo
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/637249ef36d64a00145a344a.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63565de90e420300134c57f4/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Madame Bovary
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63565de90e420300134c57f4.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f4f5cdbfa72a5001a5fd899/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",The Burning Plain
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f4f5cdbfa72a5001a5fd899.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f4e1855fa72a5001a5fa892/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Freeheld, Un Amor Incondicional
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f4e1855fa72a5001a5fa892.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/62384c84ff21e500131cb334/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",La decisión de Sophie
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/62384c84ff21e500131cb334.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f4eb5f29dd795001ab5b671/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Nine
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f4eb5f29dd795001ab5b671.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6299d355ba369d001340e574/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El Viaje de Fanny
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6299d355ba369d001340e574.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6189443d836015001bd072b3/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Todo por un Sueño
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6189443d836015001bd072b3.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/618102f8436116001a0bbea1/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Winter's Bone
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/618102f8436116001a0bbea1.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f4e1812fa72a5001a5fa3df/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Betty Anne Waters
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f4e1812fa72a5001a5fa3df.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6299d34aba369d001340e3f1/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El Postre De La Alegría
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6299d34aba369d001340e3f1.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/62876b29e26cc40014b2dad1/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",París puede esperar
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/62876b29e26cc40014b2dad1.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60cc7c62529bee00141df80f/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El que caminaba solo
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60cc7c62529bee00141df80f.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f4f5ccffa72a5001a5fd7d0/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Sonámbulo
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f4f5ccffa72a5001a5fd7d0.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/62876b26e26cc40014b2d9ff/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Precious
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/62876b26e26cc40014b2d9ff.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f4f5cc1fa72a5001a5fd6d6/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Relaciones cruzadas
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f4f5cc1fa72a5001a5fd6d6.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60d0439228f1d30013ed429c/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",45 Años
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60d0439228f1d30013ed429c.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60d2d7befad1f80013b30ffd/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El porvenir
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60d2d7befad1f80013b30ffd.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6299d30fba369d001340e11f/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Woman
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6299d30fba369d001340e11f.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6076b660235736001ac44291/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Sólo ellas... los chicos a un lado
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6076b660235736001ac44291.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/614071ef73f7ab0013a92eb5/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Katherine Johnson: Un Valor Atípico
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/614071ef73f7ab0013a92eb5.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60d0438028f1d30013ed3e46/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Mi casa en París
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60d0438028f1d30013ed3e46.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60226332bffdfc001aa1df93/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El callejón de los milagros
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60226332bffdfc001aa1df93.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5fa28b9fb06bf7001ade7baa/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Juana Gallo
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5fa28b9fb06bf7001ade7baa.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6076b66b235736001ac443a5/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Abajo el amor
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6076b66b235736001ac443a5.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6076b67d235736001ac44569/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Siete días y una vida
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6076b67d235736001ac44569.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60d0435128f1d30013ed3406/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Historia de una pasión
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60d0435128f1d30013ed3406.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f929abdfe51e4001aac9cf1/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Las horas del verano
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f929abdfe51e4001aac9cf1.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/64103a61183a5400136fa8f4/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Más Allá de la Onda Expansiva
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/64103a61183a5400136fa8f4.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5ff2ee76eff9b2001a7f5bcb/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El poder de la fuerza
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5ff2ee76eff9b2001a7f5bcb.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6426c871fe0679001a24d58d/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Valentine, la venganza oscura
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6426c871fe0679001a24d58d.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/62b479d9cb0324001353e300/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Alpha
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/62b479d9cb0324001353e300.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5fe9b75e4aa70a001a4fd2c7/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Railroad Tigers
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5fe9b75e4aa70a001a4fd2c7.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f8b2c4f90fbf4001aa3ad18/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Hércules en Nueva York
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f8b2c4f90fbf4001aa3ad18.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/62876b04e26cc40014b2b7e5/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Tipos Legales
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/62876b04e26cc40014b2b7e5.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f523c30db45a1001a79abf5/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Mentiras e Ilusiones
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f523c30db45a1001a79abf5.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f71928b6c03610013ac0294/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Red
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f71928b6c03610013ac0294.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f929ad3fe51e4001aac9dc9/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Bestia de carga
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f929ad3fe51e4001aac9dc9.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60fec4127afdca0013a192c1/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Categoría 5: Ciclogénesis infernal
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60fec4127afdca0013a192c1.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/61dec518635aeb001ac7d757/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",F6: Twister
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/61dec518635aeb001ac7d757.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f4f5cc2fa72a5001a5fd6fb/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Rescate en Damasco
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f4f5cc2fa72a5001a5fd6fb.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f4f5cf0fa72a5001a5fda18/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Valkiria
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f4f5cf0fa72a5001a5fda18.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f4f5cdefa72a5001a5fd8d3/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",The Contract
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f4f5cdefa72a5001a5fd8d3.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f562df4f7db51001a3c5fbd/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El último patriota
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f562df4f7db51001a3c5fbd.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f523c26db45a1001a79ab9e/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El Luchador
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f523c26db45a1001a79ab9e.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6299d394ba369d001340ea00/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El Rey Arturo: El Ascenso de Excalibur
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6299d394ba369d001340ea00.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60780caef96a44001a1d81b2/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Sunchaser
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60780caef96a44001a1d81b2.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/62a9e1ec65c30400136adbbd/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El Lute II: Mañana seré libre
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/62a9e1ec65c30400136adbbd.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/62f0d4253568a9001bb9ff03/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Evolver
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/62f0d4253568a9001bb9ff03.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/62876afae26cc40014b2b0a7/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Sultanes del Sur
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/62876afae26cc40014b2b0a7.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60d0438528f1d30013ed3f64/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",The Grandmaster
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60d0438528f1d30013ed3f64.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/636a705e3cd246001343e2da/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Vampyre Nation
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/636a705e3cd246001343e2da.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5fe9b7734aa70a001a4fd419/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Jurassic Games
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5fe9b7734aa70a001a4fd419.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f4e17f1fa72a5001a5fa195/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",3:10 to Yuma
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f4e17f1fa72a5001a5fa195.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60057a1e813b2d001b6871ee/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Crossworlds: entre dos mundos
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60057a1e813b2d001b6871ee.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/62a9e1e965c30400136adae4/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El Lute: Camina o Revienta
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/62a9e1e965c30400136adae4.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63566c7157400d0013a9ae46/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Yatterman
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63566c7157400d0013a9ae46.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f4e183cfa72a5001a5fa6dd/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Doble identidad
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f4e183cfa72a5001a5fa6dd.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63525bdfcfefb2001321050a/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Catástrofe helada
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63525bdfcfefb2001321050a.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63525bd9cfefb200132103ba/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",La guerra de los drones
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63525bd9cfefb200132103ba.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/624ab64e6b411b00137bdad4/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Arma joven
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/624ab64e6b411b00137bdad4.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5ff4315b28abd1001a64062e/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Megafault
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5ff4315b28abd1001a64062e.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/61ea6ddb161b65001a9c2b72/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Dune
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/61ea6ddb161b65001a9c2b72.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f562dfaf7db51001a3c6014/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Hasta donde los pies me lleven
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f562dfaf7db51001a3c6014.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/639315374f35ef00136a81b5/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El jorobado de Notre Dame
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/639315374f35ef00136a81b5.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63565de90e420300134c57f4/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Madame Bovary
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63565de90e420300134c57f4.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63930e29a8f5a40013c8a2d9/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El señor de las moscas
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63930e29a8f5a40013c8a2d9.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/61ea6ddb161b65001a9c2b72/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Dune
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/61ea6ddb161b65001a9c2b72.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f4f5ce5fa72a5001a5fd945/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",The Road
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f4f5ce5fa72a5001a5fd945.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/62876b1ce26cc40014b2ccec/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Rebelde Entre el Centeno
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/62876b1ce26cc40014b2ccec.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/61a4a4feeeb8a3001307b6ea/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Diez negritos
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/61a4a4feeeb8a3001307b6ea.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63ad71c98ba71d0013ead065/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El libro de la selva
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63ad71c98ba71d0013ead065.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60d2d7c7fad1f80013b31c2a/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Crónicas diplomáticas
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60d2d7c7fad1f80013b31c2a.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/628748bde6e53d0013676f4d/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Manolito Gafotas
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/628748bde6e53d0013676f4d.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/618102f8436116001a0bbea1/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Winter's Bone
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/618102f8436116001a0bbea1.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/610bf37c94c1ec0013765860/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Las Nieves Del Kilimanjaro
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/610bf37c94c1ec0013765860.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63723d3c1ac5b40013b799f0/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El Gatopardo
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63723d3c1ac5b40013b799f0.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/62876b26e26cc40014b2d9ff/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Precious
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/62876b26e26cc40014b2d9ff.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/610bf38894c1ec0013765a68/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El Tercer Hombre
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/610bf38894c1ec0013765a68.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/61640f8bf3593c001aa34d43/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",La última vez que vi París
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/61640f8bf3593c001aa34d43.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/62384c8fff21e500131cb4c3/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Kika Superbruja y el libro de los hechizos
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/62384c8fff21e500131cb4c3.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/615eaaae74755c001a4c9b97/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Adiós a las Armas
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/615eaaae74755c001a4c9b97.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/61a4a4e3eeb8a3001307b584/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El ultimo hombre sobre la Tierra
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/61a4a4e3eeb8a3001307b584.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/615eaaf174755c001a4ca3d5/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El fantasma de la ópera
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/615eaaf174755c001a4ca3d5.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/615eaac774755c001a4c9e7a/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Nosferatu
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/615eaac774755c001a4c9e7a.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/62384c9cff21e500131cb6ce/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Kika Superbruja: El viaje a Mandolán
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/62384c9cff21e500131cb6ce.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6384a5949112e1001306e6ea/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",True Story
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6384a5949112e1001306e6ea.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f4e184efa72a5001a5fa818/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",En el centro de la tormenta
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f4e184efa72a5001a5fa818.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63527d99f92dc200149bb77c/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El secuestro de Alfred Heineken
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63527d99f92dc200149bb77c.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f620813fb35bf001af7c089/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Asesinato Justo
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f620813fb35bf001af7c089.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/64106a315d300f001323be52/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Las Apariencias
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/64106a315d300f001323be52.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63d7b6fd5957f2001315ff13/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Juego asesino
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63d7b6fd5957f2001315ff13.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63526f09cfefb20013210eef/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",La próxima vez apuntaré al corazón
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63526f09cfefb20013210eef.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6299d399ba369d001340ea70/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",The Unthinkable
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6299d399ba369d001340ea70.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5ff2ee74eff9b2001a7f5bb0/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Flight 7500
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5ff2ee74eff9b2001a7f5bb0.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6389eb952da7ac0013987318/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Mentiras de Familia
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6389eb952da7ac0013987318.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f4eac8edb45a1001a795067/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",La sabiduría de los cocodrilos
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f4eac8edb45a1001a795067.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/61dec526635aeb001ac7d822/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Pánico en el aire
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/61dec526635aeb001ac7d822.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6076b68c235736001ac446cd/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Reflejos
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6076b68c235736001ac446cd.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60d1863dd2de2a0013003804/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El tercer asesinato
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60d1863dd2de2a0013003804.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/62a9e1c765c30400136ad6e9/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",La Hermandad
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/62a9e1c765c30400136ad6e9.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/645a46a1442733001a6cebf1/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",The Abduction
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/645a46a1442733001a6cebf1.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63b6b4bd86acfd001367051a/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Quien eres
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63b6b4bd86acfd001367051a.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f8b2c5290fbf4001aa3ad4e/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El miau del gato
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f8b2c5290fbf4001aa3ad4e.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f8b2c4690fbf4001aa3ac74/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Crimen desorganizado
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f8b2c4690fbf4001aa3ac74.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/62876ae6e26cc40014b29aac/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Transsiberian
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/62876ae6e26cc40014b29aac.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f929ab4fe51e4001aac9cbb/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Mobius
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f929ab4fe51e4001aac9cbb.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f4f5cf2fa72a5001a5fda3b/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Voces en la noche
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f4f5cf2fa72a5001a5fda3b.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f6316baddf1b7001a80d203/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Special Delivery
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f6316baddf1b7001a80d203.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f929aaefe51e4001aac9c66/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Poseido
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f929aaefe51e4001aac9c66.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/628748ade6e53d0013675d0b/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Palabras Encadenadas
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/628748ade6e53d0013675d0b.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f4e182efa72a5001a5fa5d8/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Darkness
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f4e182efa72a5001a5fa5d8.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/61efeca46f81a5001bd3dbab/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",The Limey
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/61efeca46f81a5001bd3dbab.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/641041695c57fb001388c544/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El Espía Honesto
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/641041695c57fb001388c544.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/61dec514635aeb001ac7d706/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Cube
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/61dec514635aeb001ac7d706.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/627cac8b725d090014992189/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",True Crime
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/627cac8b725d090014992189.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/62a9e1e565c30400136ada9f/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",La Senda
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/62a9e1e565c30400136ada9f.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/64103a61183a5400136fa8f4/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Más Allá de la Onda Expansiva
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/64103a61183a5400136fa8f4.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f90226ffdb601001aef86f6/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Cube 2 Hypercube
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f90226ffdb601001aef86f6.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/61894437836015001bd07263/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",En Compañía de Lobos
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/61894437836015001bd07263.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f71928b6c03610013ac0294/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Red
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f71928b6c03610013ac0294.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f4e182dfa72a5001a5fa5bb/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Dagon, La Secta Del Mar
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f4e182dfa72a5001a5fa5bb.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6356622b5332160013405d7d/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El pozo: Hay cosas que preferirías no saber
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6356622b5332160013405d7d.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f4ab3d2fa72a5001a5f79cd/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Dark Intentions
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f4ab3d2fa72a5001a5f79cd.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f4e1839fa72a5001a5fa6a3/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Dictado
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f4e1839fa72a5001a5fa6a3.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f4ab3d1fa72a5001a5f79ae/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Dangerous Lessons
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f4ab3d1fa72a5001a5f79ae.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63ce6b82798844001b1957d5/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Acoso perfecto
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63ce6b82798844001b1957d5.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63ad6efae83c950013967c3f/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",The Dead Girl
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63ad6efae83c950013967c3f.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/628748b9e6e53d00136768be/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Moebius
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/628748b9e6e53d00136768be.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63b6fa694da5ab00130b16b1/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Presunta inocencia
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63b6fa694da5ab00130b16b1.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63ad6c3abc652100135227b8/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Fría Como un Diamante
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63ad6c3abc652100135227b8.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6356638ef030950013a4d8a7/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Palabras suaves
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6356638ef030950013a4d8a7.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60798062235736001ac4abe4/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Distrito 34: Corrupción total
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60798062235736001ac4abe4.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f4b5f0e61f1b1001afedbc6/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Stranger In The House
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f4b5f0e61f1b1001afedbc6.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6062dc48a224c9001bb82a4a/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",JFK: Caso abierto
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6062dc48a224c9001bb82a4a.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f4f5cd8fa72a5001a5fd861/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Cuatro vidas
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f4f5cd8fa72a5001a5fd861.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6389ea29d9c17f001457e0b1/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Bad Stepmother ES
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6389ea29d9c17f001457e0b1.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f4e1812fa72a5001a5fa3df/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Betty Anne Waters
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f4e1812fa72a5001a5fa3df.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/636a6ef63cd246001343e17c/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Shark Shock
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/636a6ef63cd246001343e17c.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60780cabf96a44001a1d8186/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Sombras en el silencio
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60780cabf96a44001a1d8186.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63525bd9cfefb200132103ba/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",La guerra de los drones
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63525bd9cfefb200132103ba.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63527f70f030950013a3db05/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Byzantium
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63527f70f030950013a3db05.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f4ead2cdb45a1001a795405/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Muerte en la isla
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f4ead2cdb45a1001a795405.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f4eac8cdb45a1001a79504a/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",La isla de la niebla
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f4eac8cdb45a1001a79504a.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f562deaf7db51001a3c5f0f/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Crónica De Un Engaño
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f562deaf7db51001a3c5f0f.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/61aa2e496011980013254718/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Crupier
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/61aa2e496011980013254718.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/62b479e1cb0324001353e3ea/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Ausentes
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/62b479e1cb0324001353e3ea.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6189443d836015001bd072b3/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Todo por un Sueño
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6189443d836015001bd072b3.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/62a2ed994a9f0a001394398f/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",La Romasanta
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/62a2ed994a9f0a001394398f.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/61dec518635aeb001ac7d757/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",F6: Twister
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/61dec518635aeb001ac7d757.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/62876afae26cc40014b2b0a7/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Sultanes del Sur
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/62876afae26cc40014b2b0a7.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6284ad37c514110013494c93/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El Segundo Nombre
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6284ad37c514110013494c93.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/62b479d9cb0324001353e300/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Alpha
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/62b479d9cb0324001353e300.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/626baf645bbb230014b6d4c3/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",The Pursuit Of D.B. Cooper
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/626baf645bbb230014b6d4c3.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f4ab3cffa72a5001a5f798f/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Dangerous Company
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f4ab3cffa72a5001a5f798f.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f4b5f0c61f1b1001afedba9/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Past Sins
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f4b5f0c61f1b1001afedba9.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f4eac73db45a1001a794f79/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",La marca del lobo
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f4eac73db45a1001a794f79.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f4ead20db45a1001a795340/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Miranda de Marc Munden
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f4ead20db45a1001a795340.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f4f3a2c2aa610001a82fc06/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Obsession
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f4f3a2c2aa610001a82fc06.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f4ab3cbfa72a5001a5f7955/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Cries In The Dark
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f4ab3cbfa72a5001a5f7955.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f6316beddf1b7001a80d239/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Enemy Within
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f6316beddf1b7001a80d239.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f4eac76db45a1001a794f96/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",La Mejor Oferta
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f4eac76db45a1001a794f96.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6152edaf172b9c0013526082/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Madre Acosada
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6152edaf172b9c0013526082.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6152edb4172b9c00135260d6/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Hasta que la Muerte nos Separe
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6152edb4172b9c00135260d6.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/615c4b92188bfb001adf286b/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",La Sospechosa
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/615c4b92188bfb001adf286b.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6152eda9172b9c001352602e/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Secretos Enterrados
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6152eda9172b9c001352602e.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/603cf1284d8d87001aaa909f/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Titanic II
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/603cf1284d8d87001aaa909f.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/61ea6ddb161b65001a9c2b72/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Dune
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/61ea6ddb161b65001a9c2b72.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f523c58db45a1001a79ad02/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Corto Circuito
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f523c58db45a1001a79ad02.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63b3ea9d6d793400134e7268/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Max Reload y los Desintegradores Abisales
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63b3ea9d6d793400134e7268.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f620804fb35bf001af7bf86/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Código 46
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f620804fb35bf001af7bf86.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6076b662235736001ac442c1/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Brazil
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6076b662235736001ac442c1.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6393088c753d210014220953/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",C.H.U.D.
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6393088c753d210014220953.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/61ea6dd2161b65001a9c2ad9/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Han llegado
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/61ea6dd2161b65001a9c2ad9.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f90226ffdb601001aef86f6/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Cube 2 Hypercube
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f90226ffdb601001aef86f6.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63ad733586acfd00136480ed/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Monster Hunt
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63ad733586acfd00136480ed.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/636a705e3cd246001343e2da/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Vampyre Nation
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/636a705e3cd246001343e2da.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/636a6ef63cd246001343e17c/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Shark Shock
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/636a6ef63cd246001343e17c.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60057a1e813b2d001b6871ee/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Crossworlds: entre dos mundos
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60057a1e813b2d001b6871ee.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63527f70f030950013a3db05/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Byzantium
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63527f70f030950013a3db05.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63525bd9cfefb200132103ba/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",La guerra de los drones
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63525bd9cfefb200132103ba.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f8b2c5790fbf4001aa3ada1/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Comunión
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f8b2c5790fbf4001aa3ada1.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/636ce7c4bc198f0013381ba8/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El Amo del Calabozo
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/636ce7c4bc198f0013381ba8.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6299d394ba369d001340ea00/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El Rey Arturo: El Ascenso de Excalibur
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6299d394ba369d001340ea00.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63566c7157400d0013a9ae46/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Yatterman
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63566c7157400d0013a9ae46.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f4948bf61f1b1001afec82f/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",10,000 Days
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f4948bf61f1b1001afec82f.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5fe9b7734aa70a001a4fd419/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Jurassic Games
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5fe9b7734aa70a001a4fd419.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63525bdfcfefb2001321050a/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Catástrofe helada
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63525bdfcfefb2001321050a.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/610bf38d94c1ec0013765b3a/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Eclipse Total
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/610bf38d94c1ec0013765b3a.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6076b67c235736001ac4453d/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Leyenda
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6076b67c235736001ac4453d.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/608fa3966a72b000130cc9f2/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Megalodón
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/608fa3966a72b000130cc9f2.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/628748b9e6e53d00136768be/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Moebius
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/628748b9e6e53d00136768be.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/608fa3936a72b000130cc99f/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Moby Dick 2010
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/608fa3936a72b000130cc99f.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63527f73f030950013a3db6a/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Grabbers
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63527f73f030950013a3db6a.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63723d391ac5b40013b79990/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El Enigma de Otro Mundo
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63723d391ac5b40013b79990.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6093a2a15cb63f001a15108f/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",San Andreas mega seísmo
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6093a2a15cb63f001a15108f.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/608fa3916a72b000130cc950/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Oceans Rising
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/608fa3916a72b000130cc950.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/608fa38b6a72b000130cc8ae/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Tentáculos de las Bermudas
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/608fa38b6a72b000130cc8ae.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/62a2ed994a9f0a001394398f/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",La Romasanta
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/62a2ed994a9f0a001394398f.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/608fa39b6a72b000130cca94/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",La era del mañana
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/608fa39b6a72b000130cca94.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63ad6d918ba71d0013eace73/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Monster Hunt 2
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63ad6d918ba71d0013eace73.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6393110af1ac720013bca579/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Freaked. La disparatada parada de los monstruos
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6393110af1ac720013bca579.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/636a6d891ac5b40013b48c92/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Curse of The Dream Witch
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/636a6d891ac5b40013b48c92.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6299d35dba369d001340e5df/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Los Cuatro Guerreros
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6299d35dba369d001340e5df.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f96a1a715b9be001ada4daf/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El aparecido
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f96a1a715b9be001ada4daf.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/62f0d4253568a9001bb9ff03/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Evolver
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/62f0d4253568a9001bb9ff03.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/603cf12c4d8d87001aaa9124/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Megashark Vs. Kolossus
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/603cf12c4d8d87001aaa9124.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f929ab2fe51e4001aac9ca0/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Nuclear Hurricane
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f929ab2fe51e4001aac9ca0.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f929abbfe51e4001aac9cd6/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Llamarada solar
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f929abbfe51e4001aac9cd6.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f929ac4fe51e4001aac9d27/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Force of Impact
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f929ac4fe51e4001aac9d27.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/604f890112d561001a4eef76/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Tormenta colosal
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/604f890112d561001a4eef76.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/61dec514635aeb001ac7d706/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Cube
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/61dec514635aeb001ac7d706.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/62384c6cff21e500131cb0f7/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",La mujer avispa
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/62384c6cff21e500131cb0f7.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/62384c81ff21e500131cb2dd/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El cerebro que no podía morir
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/62384c81ff21e500131cb2dd.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5ff4315b28abd1001a64062e/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Megafault
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5ff4315b28abd1001a64062e.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f929aa5fe51e4001aac9c15/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Tormenta de Lava
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f929aa5fe51e4001aac9c15.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/61894437836015001bd07263/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",En Compañía de Lobos
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/61894437836015001bd07263.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/61894441836015001bd072dd/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Capricornio Uno
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/61894441836015001bd072dd.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f4e182dfa72a5001a5fa5bb/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Dagon, La Secta Del Mar
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f4e182dfa72a5001a5fa5bb.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f929aaefe51e4001aac9c66/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Poseido
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f929aaefe51e4001aac9c66.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/610bf37f94c1ec0013765937/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",La Pequeña Tienda De Los Horrores
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/610bf37f94c1ec0013765937.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6076b686235736001ac4464d/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Atrapado en un pirado
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6076b686235736001ac4464d.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f4f5cd4fa72a5001a5fd827/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Superhero Movie
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f4f5cd4fa72a5001a5fd827.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6076b6a5235736001ac44939/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El hombre que no sabía nada
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6076b6a5235736001ac44939.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/618263cfb5d0e9001a8caa75/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Inseparables
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/618263cfb5d0e9001a8caa75.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f523c18db45a1001a79aaee/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Algo pasa en Hollywood
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f523c18db45a1001a79aaee.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6076b65b235736001ac4420d/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Al diablo con el diablo
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6076b65b235736001ac4420d.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f8b2c4f90fbf4001aa3ad18/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Hércules en Nueva York
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f8b2c4f90fbf4001aa3ad18.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f523c13db45a1001a79aaa4/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",No Se Aceptan Devoluciones
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f523c13db45a1001a79aaa4.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63527f73f030950013a3db6a/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Grabbers
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63527f73f030950013a3db6a.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f4f5cddfa72a5001a5fd8b6/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",The Chaperone
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f4f5cddfa72a5001a5fd8b6.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6393110af1ac720013bca579/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Freaked. La disparatada parada de los monstruos
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6393110af1ac720013bca579.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f4f5ce9fa72a5001a5fd9a0/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Un Trabajo Embarazoso
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f4f5ce9fa72a5001a5fd9a0.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5ff4315d28abd1001a640649/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",En Estado Crítico
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5ff4315d28abd1001a640649.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6086b369c80199001ac6373c/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Boo! A Madea Halloween ES
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6086b369c80199001ac6373c.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/64106a355d300f001323bf46/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Las Fantasias
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/64106a355d300f001323bf46.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/64106b99803fcf0013249f76/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Un Lio Inesperado
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/64106b99803fcf0013249f76.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6299d36eba369d001340e6dd/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",¿Y dónde están los hombres?
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6299d36eba369d001340e6dd.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63d2481af97d0100131e0fbc/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Conversaciones con otras mujeres
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63d2481af97d0100131e0fbc.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f4eacd8db45a1001a7951f0/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Mama's Boy
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f4eacd8db45a1001a7951f0.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/635667c1f92dc200149ce89c/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Tres solteros y un biberón
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/635667c1f92dc200149ce89c.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6076b676235736001ac444b9/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Un padre de cuidado
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6076b676235736001ac444b9.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5fc527f02fd74a0014cd4a2b/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Solteras Indisponibles
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5fc527f02fd74a0014cd4a2b.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60d9a0887d70330014d5421e/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Wagons East
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60d9a0887d70330014d5421e.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6076b6a8235736001ac44991/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Híncame el diente
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6076b6a8235736001ac44991.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6299d39dba369d001340eae4/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Bendita Locura
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6299d39dba369d001340eae4.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6065b6943bbc1b001aee0231/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El rey de la comedia
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6065b6943bbc1b001aee0231.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/635671a6f2de430013c3da94/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Deal
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/635671a6f2de430013c3da94.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6299d34aba369d001340e3f1/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El Postre De La Alegría
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6299d34aba369d001340e3f1.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63ce6314f97d0100130e9318/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Dulce como el amor
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63ce6314f97d0100130e9318.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6076b685235736001ac44621/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Marmaduke
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6076b685235736001ac44621.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6076b6aa235736001ac449b9/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Dime con cuántos
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6076b6aa235736001ac449b9.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63ad821a4da5ab00130883a7/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Un tipo de altura
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63ad821a4da5ab00130883a7.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63b411bd88bc2000134e3da7/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Un asesino muy ético
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63b411bd88bc2000134e3da7.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6299d34eba369d001340e45d/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Tímidos Anónimos
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6299d34eba369d001340e45d.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5fa288fb7ecf48001a36464c/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El guía de las turistas
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5fa288fb7ecf48001a36464c.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60780ca8f96a44001a1d815a/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Empire Records
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60780ca8f96a44001a1d815a.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63b3ea9d6d793400134e7268/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Max Reload y los Desintegradores Abisales
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63b3ea9d6d793400134e7268.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5fa2887a79094d001ae792ec/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El Carita
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5fa2887a79094d001ae792ec.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5fa3e1f9ff9e43001a695dfc/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Mil Cosas Que Haría Por Ti
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5fa3e1f9ff9e43001a695dfc.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6076b68a235736001ac446a1/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Memorias de un hombre invisible
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6076b68a235736001ac446a1.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5fa28c331788de001ad5c236/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",La Mujer de Oro
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5fa28c331788de001ad5c236.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6389eb912da7ac0013987286/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Valentine's Again
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6389eb912da7ac0013987286.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6076b66b235736001ac443a5/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Abajo el amor
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6076b66b235736001ac443a5.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60057a1e813b2d001b6871ee/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Crossworlds: entre dos mundos
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60057a1e813b2d001b6871ee.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f4e1822fa72a5001a5fa4f0/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Cambio De Papeles
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f4e1822fa72a5001a5fa4f0.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5fa285eeb7f0da001afae38f/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Buenos Dias, Acapulco
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5fa285eeb7f0da001afae38f.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5fa28cdc397eee001abbd463/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Santo Contra Capulina
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5fa28cdc397eee001abbd463.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/637228ee3416c70013e6c7e6/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Creepshow
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/637228ee3416c70013e6c7e6.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5fa28a174f3d92001ac7b16e/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El Karateca Azteca
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5fa28a174f3d92001ac7b16e.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6372298ccea64000135d61d1/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Creepshow 2 ES
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6372298ccea64000135d61d1.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5fa28be81788de001ad5c222/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",La Hermana Trinquete
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5fa28be81788de001ad5c222.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/637249ef36d64a00145a344a/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Monte Carlo
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/637249ef36d64a00145a344a.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/635671a4f2de430013c3da23/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Mediterráneo
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/635671a4f2de430013c3da23.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6356638ef030950013a4d8a7/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Palabras suaves
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6356638ef030950013a4d8a7.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6299d326ba369d001340e269/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Quien Me Quiera Que Me Siga
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6299d326ba369d001340e269.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6076b66d235736001ac443d6/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Negocios de familia
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6076b66d235736001ac443d6.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5fa28737184e2e001a759393/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Capulina Speedy Gonzalez
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5fa28737184e2e001a759393.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5fa2869888d408001aa90f6a/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Capulina contra Los Monstruos
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5fa2869888d408001aa90f6a.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f523c66db45a1001a79add1/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Un hombre solitario
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f523c66db45a1001a79add1.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/608930e7dfb0ed001b306fc8/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Carpool, todos al coche
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/608930e7dfb0ed001b306fc8.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/628637fb94317400134cb84d/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Morir en San Hilario
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/628637fb94317400134cb84d.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5fa28aeee657fb00131337d2/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Implacable
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5fa28aeee657fb00131337d2.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5fa287094f3d92001ac7b146/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Capulina contra Los Vampiros
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5fa287094f3d92001ac7b146.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6299d344ba369d001340e338/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Foto de Familia
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6299d344ba369d001340e338.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f4eacefdb45a1001a7952d8/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Mi Vida Es Una Ruina
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f4eacefdb45a1001a7952d8.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/618263c1b5d0e9001a8ca993/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Viaje a Italia
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/618263c1b5d0e9001a8ca993.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5fa28cc0184e2e001a7593db/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Mi Padrino
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5fa28cc0184e2e001a7593db.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5fc5201f39211a001a8b266e/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Andrea y Lorenzo
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5fc5201f39211a001a8b266e.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/62876af6e26cc40014b2af56/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Tapas
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/62876af6e26cc40014b2af56.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f4e17f5fa72a5001a5fa1d3/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",All's Faire in Love
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f4e17f5fa72a5001a5fa1d3.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/610bf37a94c1ec001376579d/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El juego de Hollywood
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/610bf37a94c1ec001376579d.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60d0438028f1d30013ed3e46/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Mi casa en París
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60d0438028f1d30013ed3e46.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5fa2891ae906e1001a03d127/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El Hermano Capulina
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5fa2891ae906e1001a03d127.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5fa28a4e184e2e001a7593b9/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El Metiche
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5fa28a4e184e2e001a7593b9.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/62876b04e26cc40014b2b7e5/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Tipos Legales
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/62876b04e26cc40014b2b7e5.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5fc52758ce9667001a28ebfa/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Lotoman 003
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5fc52758ce9667001a28ebfa.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/618263c4b5d0e9001a8ca9c1/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",The Trip
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/618263c4b5d0e9001a8ca9c1.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f4eaccbdb45a1001a79515d/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Los Dalton Contra Lucky Luke
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f4eaccbdb45a1001a79515d.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f523c27db45a1001a79abbb/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Hojas de hierba
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f523c27db45a1001a79abbb.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5fc5273c39211a001a8b26f0/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Los Fabulosos Má Mejores
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5fc5273c39211a001a8b26f0.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60d2d7c7fad1f80013b31c2a/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Crónicas diplomáticas
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60d2d7c7fad1f80013b31c2a.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f4948b261f1b1001afec7d0/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Nicky Deuce
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f4948b261f1b1001afec7d0.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f8b2c4690fbf4001aa3ac74/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Crimen desorganizado
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f8b2c4690fbf4001aa3ac74.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/62876b29e26cc40014b2dad1/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",París puede esperar
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/62876b29e26cc40014b2dad1.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/628748bde6e53d0013676f4d/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Manolito Gafotas
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/628748bde6e53d0013676f4d.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6188ef3c1be642001a304d04/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Paper Heart
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6188ef3c1be642001a304d04.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63566c7157400d0013a9ae46/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Yatterman
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63566c7157400d0013a9ae46.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6189443d836015001bd072b3/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Todo por un Sueño
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6189443d836015001bd072b3.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f90226afdb601001aef86a5/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Chicos monsters
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f90226afdb601001aef86a5.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f6207f4fb35bf001af7be7f/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El último voto
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f6207f4fb35bf001af7be7f.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f6207fcfb35bf001af7bef9/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El Concursante
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f6207fcfb35bf001af7bef9.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/62876b36e26cc40014b2e9bc/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Sexo por Compasion
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/62876b36e26cc40014b2e9bc.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f4ead37db45a1001a795479/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",New York, I Love You
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f4ead37db45a1001a795479.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60d0436f28f1d30013ed39c3/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El precio de la fama
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60d0436f28f1d30013ed39c3.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60d2d7c9fad1f80013b321de/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El viaje del director de recursos humanos
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60d2d7c9fad1f80013b321de.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5fe9b77b4aa70a001a4fd4a6/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Drop Off
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5fe9b77b4aa70a001a4fd4a6.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f4e1833fa72a5001a5fa62f/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Descubriendo El Amor
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f4e1833fa72a5001a5fa62f.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f4b5f1161f1b1001afedc06/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Today's Special
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f4b5f1161f1b1001afedc06.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f69edb0e4b56900138a1ddc/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Pants On Fire
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f69edb0e4b56900138a1ddc.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f8b2c5c90fbf4001aa3adfa/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Buffalo '66
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f8b2c5c90fbf4001aa3adfa.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63565dec0e420300134c588e/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Las mejores intenciones
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63565dec0e420300134c588e.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/64106a355d300f001323bf46/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Las Fantasias
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/64106a355d300f001323bf46.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/64106b99803fcf0013249f76/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Un Lio Inesperado
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/64106b99803fcf0013249f76.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63526c395f952a00138f7cab/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",La profesora de Historia
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63526c395f952a00138f7cab.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6299d3a0ba369d001340eb2d/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Crescendo
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6299d3a0ba369d001340eb2d.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f4eac76db45a1001a794f96/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",La Mejor Oferta
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f4eac76db45a1001a794f96.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6299d344ba369d001340e338/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Foto de Familia
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6299d344ba369d001340e338.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6352710168f5d80013768ee4/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Señor Manglehorn
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6352710168f5d80013768ee4.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63566c7357400d0013a9aea3/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Ondine, la leyenda del mar
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63566c7357400d0013a9aea3.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60d0435628f1d30013ed3494/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Después de la tormenta
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60d0435628f1d30013ed3494.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6299d399ba369d001340ea70/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",The Unthinkable
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6299d399ba369d001340ea70.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60d4279bb8187f00136a3a4c/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Fausto
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60d4279bb8187f00136a3a4c.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60d18625d2de2a001300337c/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Nader y Simin, una separación
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60d18625d2de2a001300337c.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60d0439028f1d30013ed424f/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Nuestra hermana pequeña
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60d0439028f1d30013ed424f.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60dabf4eb8187f00136b2017/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Amor
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60dabf4eb8187f00136b2017.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60d0436928f1d30013ed3858/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Gracias A Dios
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60d0436928f1d30013ed3858.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63526f09cfefb20013210eef/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",La próxima vez apuntaré al corazón
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63526f09cfefb20013210eef.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60d2d7c5fad1f80013b31b73/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",En un mundo mejor
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60d2d7c5fad1f80013b31b73.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/635289c957400d0013a8f672/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El último bailarín de Mao
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/635289c957400d0013a8f672.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/628637f494317400134cb3b9/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",La Pacifista
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/628637f494317400134cb3b9.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/635664f1f2de430013c3d73d/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El barbero de Siberia
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/635664f1f2de430013c3d73d.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63d2481af97d0100131e0fbc/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Conversaciones con otras mujeres
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63d2481af97d0100131e0fbc.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/618102f8436116001a0bbea1/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Winter's Bone
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/618102f8436116001a0bbea1.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60efe24dd806630013d9aec2/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",La verdad
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60efe24dd806630013d9aec2.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60d1863dd2de2a0013003804/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El tercer asesinato
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60d1863dd2de2a0013003804.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60d427a1b8187f00136a4141/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",De tal padre, tal hijo
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60d427a1b8187f00136a4141.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/635670310e420300134c5a33/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Todas las mañanas del mundo
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/635670310e420300134c5a33.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6356638ef030950013a4d8a7/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Palabras suaves
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6356638ef030950013a4d8a7.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6356719ef2de430013c3d865/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Man to man
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6356719ef2de430013c3d865.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63527a495f952a00138f94f2/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Jappeloup. De padre a hijo
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63527a495f952a00138f94f2.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63ad7601a6bb3b001471c4eb/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Reina Cristina
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63ad7601a6bb3b001471c4eb.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/62876b26e26cc40014b2d9ff/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Precious
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/62876b26e26cc40014b2d9ff.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63ad6c3dbc65210013522817/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Midiendo el mundo
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63ad6c3dbc65210013522817.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/635667c5f92dc200149ce911/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Quemado por el sol
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/635667c5f92dc200149ce911.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60d18632d2de2a0013003599/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Melancolía
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60d18632d2de2a0013003599.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/635667c1f92dc200149ce89c/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Tres solteros y un biberón
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/635667c1f92dc200149ce89c.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/635662285332160013405ce7/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Farinelli (Il castrato)
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/635662285332160013405ce7.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60d0436b28f1d30013ed38eb/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Happy End
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60d0436b28f1d30013ed38eb.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6299d338ba369d001340e2ae/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Mentes Brillantes
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6299d338ba369d001340e2ae.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/61c1dda042817b001a8bb049/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El Gruñón
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/61c1dda042817b001a8bb049.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63565de90e420300134c57f4/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Madame Bovary
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63565de90e420300134c57f4.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60d2d7c1fad1f80013b310b4/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Pride
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60d2d7c1fad1f80013b310b4.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63566389f030950013a4d819/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El último vuelo
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63566389f030950013a4d819.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60dabf4ab8187f00136b1ef9/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",La caza
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60dabf4ab8187f00136b1ef9.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60dabf4cb8187f00136b1f54/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Vals Con Bashir
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60dabf4cb8187f00136b1f54.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60d18638d2de2a001300367a/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Regreso A Montauk
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60d18638d2de2a001300367a.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60d1863bd2de2a0013003741/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Corazón Silencioso
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60d1863bd2de2a0013003741.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63566a97533216001340729d/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Cuento de primavera
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63566a97533216001340729d.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6356665fcfefb2001321f724/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Cuento de invierno
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6356665fcfefb2001321f724.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/635664f4f2de430013c3d7aa/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Cuento de verano
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/635664f4f2de430013c3d7aa.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/635667c8f92dc200149ce9ab/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Cuento de otoño
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/635667c8f92dc200149ce9ab.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60d2d7befad1f80013b30ffd/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El porvenir
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60d2d7befad1f80013b30ffd.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6299d326ba369d001340e269/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Quien Me Quiera Que Me Siga
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6299d326ba369d001340e269.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6299d34eba369d001340e45d/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Tímidos Anónimos
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6299d34eba369d001340e45d.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6299d34aba369d001340e3f1/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El Postre De La Alegría
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6299d34aba369d001340e3f1.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60d18640d2de2a001300385f/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",No
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60d18640d2de2a001300385f.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/635671a4f2de430013c3da23/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Mediterráneo
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/635671a4f2de430013c3da23.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60d2d7c7fad1f80013b31c2a/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Crónicas diplomáticas
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60d2d7c7fad1f80013b31c2a.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60d0437428f1d30013ed3b51/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Los Caballeros Blancos
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60d0437428f1d30013ed3b51.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60ed3e5834c9a50013f23493/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Un hombre sin pasado
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60ed3e5834c9a50013f23493.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/62861ebea6d5630013068e64/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Ficción
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/62861ebea6d5630013068e64.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/61a4a4d3eeb8a3001307b4d8/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Una vida sencilla
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/61a4a4d3eeb8a3001307b4d8.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60d4279db8187f00136a40b6/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Si no nosotros, ¿quién?
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60d4279db8187f00136a40b6.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60d0436228f1d30013ed3755/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El amor es más fuerte que las bombas
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60d0436228f1d30013ed3755.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60d0437928f1d30013ed3ca3/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Sin amor
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60d0437928f1d30013ed3ca3.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60d0438c28f1d30013ed4161/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Tres caras
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60d0438c28f1d30013ed4161.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60d0439228f1d30013ed429c/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",45 Años
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60d0439228f1d30013ed429c.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60d0437628f1d30013ed3c18/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El amor es extraño
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60d0437628f1d30013ed3c18.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6188ef3c1be642001a304d04/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Paper Heart
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6188ef3c1be642001a304d04.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60d2d7cbfad1f80013b326b5/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El baño del Papa
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60d2d7cbfad1f80013b326b5.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60d2d7c9fad1f80013b321de/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El viaje del director de recursos humanos
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60d2d7c9fad1f80013b321de.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60d0436428f1d30013ed37b0/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El viajante
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60d0436428f1d30013ed37b0.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60d2d7cdfad1f80013b32b9e/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",En tránsito
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60d2d7cdfad1f80013b32b9e.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60d0435428f1d30013ed3465/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Un asunto real
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60d0435428f1d30013ed3465.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f96a19a15b9be001ada4d03/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Salón de árboles
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f96a19a15b9be001ada4d03.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60fec41e7afdca0013a19314/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Rapsodia en agosto
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60fec41e7afdca0013a19314.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60dabf47b8187f00136b1939/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",La comuna
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60dabf47b8187f00136b1939.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f6207fcfb35bf001af7bef9/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El Concursante
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f6207fcfb35bf001af7bef9.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60d42798b8187f00136a398d/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",A propósito de Elly
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60d42798b8187f00136a398d.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60d0438928f1d30013ed40c2/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",El peral salvaje
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60d0438928f1d30013ed40c2.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60d0437b28f1d30013ed3cf0/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Mia Madre
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60d0437b28f1d30013ed3cf0.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60d2d7c3fad1f80013b316a8/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Miel
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60d2d7c3fad1f80013b316a8.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60d18627d2de2a001300340b/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",La mujer del chatarrero
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60d18627d2de2a001300340b.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/60d2d7cffad1f80013b3305a/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Hedi
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/60d2d7cffad1f80013b3305a.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6076b67c235736001ac4453d/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Leyenda
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6076b67c235736001ac4453d.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/637e1681d6253300132a920b/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Aliens in the Attic
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/637e1681d6253300132a920b.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6076b685235736001ac44621/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Marmaduke
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6076b685235736001ac44621.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63b3ea9d6d793400134e7268/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Max Reload y los Desintegradores Abisales
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63b3ea9d6d793400134e7268.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/61aa2e4460119800132546c8/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Stubby, un héroe muy especial
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/61aa2e4460119800132546c8.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63b697316d793400134fb916/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Las Hermanas Vampiro
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63b697316d793400134fb916.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/62384c9cff21e500131cb6ce/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Kika Superbruja: El viaje a Mandolán
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/62384c9cff21e500131cb6ce.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5fe9b76b4aa70a001a4fd38a/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Mi Amigo Raffi
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5fe9b76b4aa70a001a4fd38a.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/61aa2e3060119800132545c4/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Ana y Bruno
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/61aa2e3060119800132545c4.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f902274fdb601001aef872c/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Robin Hood contra el dragón
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f902274fdb601001aef872c.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5fe9b7a14aa70a001a4fd89f/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Abulele
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5fe9b7a14aa70a001a4fd89f.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/5f96a1a915b9be001ada4dca/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Aventuras en la corte del rey Arturo
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/5f96a1a915b9be001ada4dca.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63b6b63c501aab0013b8dea5/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Vendaval 1
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63b6b63c501aab0013b8dea5.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63b6ac49a6bb3b00147452f0/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Vendaval 2
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63b6ac49a6bb3b00147452f0.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63b698998ba71d0013ecebca/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Las Hermanas Vampiro 2
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63b698998ba71d0013ecebca.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6299d347ba369d001340e3a8/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Alabama Moon
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6299d347ba369d001340e3a8.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/6284ad34c514110013494552/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Copito de Nieve
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/6284ad34c514110013494552.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/62384c6aff21e500131cb0a0/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Animales en apuros
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/62384c6aff21e500131cb0a0.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63b3eab16d793400134e7644/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Jóvenes Extraordinarios
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63b3eab16d793400134e7644.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/628748bde6e53d0013676f4d/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Manolito Gafotas
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/628748bde6e53d0013676f4d.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63b6a6adeb85c50013318da2/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Max y la pandilla Gamberra
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63b6a6adeb85c50013318da2.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/62384c8fff21e500131cb4c3/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Kika Superbruja y el libro de los hechizos
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/62384c8fff21e500131cb4c3.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63b6a3d9a6bb3b0014744fb9/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Socorro, he encogido a mi profe
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63b6a3d9a6bb3b0014744fb9.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63b69a154da5ab00130aff9f/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Las Hermanas Vampiro 3
pipe:///usr/bin/env streamlink --stdout --default-stream best --url https://helmerluzo.github.io/PlutoTV_HL/vod/m3u8_ES/63b69a154da5ab00130aff9f.m3u8
#EXTINF:-1 tvg-logo="https://images.pluto.tv/episodes/63b6a816a6bb3b00147451dc/poster.jpg?fill=blur&fit=fill&fm=jpg&h=1000&q=75&w=694" group-title="",Vendaval 3