-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathJT
More file actions
1143 lines (914 loc) · 103 KB
/
JT
File metadata and controls
1143 lines (914 loc) · 103 KB
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
#EXTINF:-1 tvg-id="1668" tvg-logo="https://jiotv.catchup.cdn.jio.com/dare_images/images/And_Xplore_HD.png" group-title="JT",&Xplore HD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=67e52f4bdcfc525898be0446feb7f185:8cf5c24b168105bca24b358eb05f6df4
https://jiotvmblive.cdn.jio.com/bpk-tv/AndXploreHD_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1349" tvg-logo="https://jiotv.catchup.cdn.jio.com/dare_images/images/And_Prive_HD.png" group-title="JT",&Prive HD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=5060ddebb51c57a1825a18ca70e24014:e61277adab8ff7dd8314ae0287556787
https://jiotvmblive.cdn.jio.com/bpk-tv/AndPriveHD_MOB/WDVLive/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="415" tvg-logo="https://jiotv.catchup.cdn.jio.com/dare_images/images/Zee_Anmol_Cinema.png" group-title="JT",&TV HD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=d5f46c3bb170561ab93db79c032825b5:a834101c520ab2af65add91e5e9a2b61
https://jiotvmblive.cdn.jio.com/bpk-tv/ZeeAnmolCinema_MOB/WDVLive/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="185" tvg-logo="https://jiotv.catchup.cdn.jio.com/dare_images/images/And_Pictures_HD.png" group-title="JT",&Pictures HD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=09187bccb7ec59428352a31b4b321ce0:25b08b1c7a004e43ef92c239f93e6613
https://jiotvmblive.cdn.jio.com/bpk-tv/AndPicturesHD_MOB/WDVLive/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="167" tvg-logo="https://jiotv.catchup.cdn.jio.com/dare_images/images/Zee_TV_HD.png" group-title="JT",Zee TV HD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=a23b609b33e254a48e4fc6fa7af0fd8d:4064c52328bfe9e6008776b48a431e4b
https://jiotvmblive.cdn.jio.com/bpk-tv/ZeeTVHD_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="165" tvg-logo="https://jiotv.catchup.cdn.jio.com/dare_images/images/Zee_Cinema_HD.png" group-title="JT",Zee Cinema HD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=d0049ab307fd5a13b96e306b953d06dd:8057ff282237f0831dcdc4f8a9b2946f
https://jiotvmblive.cdn.jio.com/bpk-tv/ZeeCinemaHD_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1319" tvg-logo="https://jiotv.catchup.cdn.jio.com/dare_images/images/Zee_Cafe_HD.png" group-title="JT",Zee Cafe HD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=937e3af54bd55ef4b862296e0319bb80:8868db6c5e57e4330e9304d18745ea5f
https://jiotvmblive.cdn.jio.com/bpk-tv/ZeeCafeHD_MOB/WDVLive/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1132" group-title="JT" tvg-logo="https://jiotv.catchup.cdn.jio.com/dare_images/images/Star_Plus_HD.png",Star Plus HD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=6f7b7241b2935a909d389fe318e5baaa:65783311644973348f359dc154bb41db
#EXTVLCOPT:http-user-agent=plaYtv/7.1.5 (Linux;Android 15) ExoPlayerLib/2.11.6 YGX/69.69.69.69
https://jiotvmblive.cdn.jio.com/bpk-tv/Star_Plus_HD_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="931" tvg-logo="https://jiotv.catchup.cdn.jio.com/dare_images/images/Star_Bharat_HD.png" group-title="JT",Star Bharat HD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=701524f373c55b2785ac49aab0bdc4a6:9de42eedb40f6c243848eb8aa8103e32
#EXTVLCOPT:http-user-agent=plaYtv/7.1.3 (Linux;Android 13) ygx/824.1 ExoPlayerLib/824.0
https://jiotvmblive.cdn.jio.com/bpk-tv/Star_Bharat_HD_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="156" group-title="JT" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/Star_Gold_HD.png",Star Gold HD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=ec7ad3786d9e5efa9e0c4aeb3e58c7b7:907509ccae7e68b30ae75b5d09fe60ef
#EXTVLCOPT:http-user-agent=plaYtv/7.1.5 (Linux;Android 15) ExoPlayerLib/2.11.6 YGX/69.69.69.69
https://jiotvmblive.cdn.jio.com/bpk-tv/Star_Gold_HD_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/Star_Gold_2_HD.png" group-title="JT",Star Gold 2 HD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=e6afa4754bc15dd28ab6806f417d319d:6a74ef2884813547109ee96098610387
https://jiotvmblive.cdn.jio.com/bpk-tv/Star_Gold_2_HD_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1113" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/Star_Gold_Select_HD.png" group-title="JT",Star Gold Select HD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=2cb38dd5e6235bd9936ad7a29bc7ffd8:281d7b329be4e22d4e0e3e1d508ba2a4
#EXTVLCOPT:http-user-agent=plaYtv/7.1.5 (Linux;Android 15) ExoPlayerLib/2.11.6 YGX/69.69.69.69
https://jiotvmblive.cdn.jio.com/bpk-tv/Star_Gold_Select_HD_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1104" tvg-logo="https://jiotv.catchup.cdn.jio.com/dare_images/images/Star_Movies_HD.png" group-title="JT",Star Movies HD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=6ac6943751e558b181da32727f03dff7:f36e5cd48252bcd0fcda2bfe21f5b365
https://jiotvmblive.cdn.jio.com/bpk-tv/Star_Movies_HD_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1110" tvg-logo="https://ltsk-cdn.s3.eu-west-1.amazonaws.com/jumpstart/Temp_Live/cdn/HLS/Channel/imageContent-12193-j9q33dpc-v2/imageContent-12193-j9q33dpc-m3.png" group-title="JT",Star Movies Select HD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=b55393cd147a54debaf2b0f2d82b5d9f:6b168db49241a78c1b423ab9a29409ef
https://jiotvmblive.cdn.jio.com/bpk-tv/Star_Movies_Select_HD_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="144" tvg-name="Colors HD" group-title="JT" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/Colors_HD.png",Colors HD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=d9025bf5bbe6502cab58edaa0b50750b:91b5ca6ebefe3a977cb6fcae31868664
#EXTVLCOPT:http-user-agent=plaYtv/7.1.5 (Linux; Android 13) ExoPlayerLib/2.11.7
https://jiotvmblive.cdn.jio.com/bpk-tv/ColorsHD_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1477" tvg-name="" group-title="JT" tvg-logo="https://jiotv.catchup.cdn.jio.com/dare_images/images/ColorsCineplexHD.png",Colors Cineplex HD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=bc74a4c7b66856f19ce77fffecd18590:5532bd5f660547d3b82992f1ef471d6a
#EXTVLCOPT:http-user-agent=plaYtv/7.1.5 (Linux; Android 13) ExoPlayerLib/2.11.7
https://jiotvmblive.cdn.jio.com/bpk-tv/ColorsCineplexHD_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1158" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/Colors_Infinity_HD.png" group-title="JT",Colors Infinity HD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=509216860f8e594aaf7e921296f53851:536df1e35e2bb055be0117b51db8139c
https://jiotvmblive.cdn.jio.com/bpk-tv/Colors_Infinity_HD_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1145" tvg-name="MTV HD" tvg-logo="https://jiotv.catchup.cdn.jio.com/dare_images/images/MTV_HD_Plus.png" group-title="JT",MTV HD
#KODIPROP:inputstream=inputstream.adaptive
#KODIPROP:inputstream.adaptive.license_type=org.w3.clearkey
#KODIPROP:inputstream.adaptive.license_key=90d8713ba5e85d779d005b1f14a5bc8d:33650314fe1e945017640ba9878c5de9
https://jiotvmblive.cdn.jio.com/bpk-tv/MTV_HD_Plus_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1145" tvg-name="" tvg-logo="https://jiotv.catchup.cdn.jio.com/dare_images/images/Sony_HD.png" group-title="JT",Sony HD
#KODIPROP:inputstream=inputstream.adaptive
#KODIPROP:inputstream.adaptive.license_type=org.w3.clearkey
#KODIPROP:inputstream.adaptive.license_key=ebd37e936867596a868cc085070e4cd5:f5c58e6bf0a2deb018fe87a934a6a1d0
https://jiotvmblive.cdn.jio.com/bpk-tv/Sony_HD_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="471" tvg-logo="https://jiotv.catchup.cdn.jio.com/dare_images/images/SonySAB.png" group-title="JT",Sony SAB HD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=0449d593e6bb5a81a7ab5c5986e5940b:c0abc7e159389031e53a4b8dfa53d141
#EXTVLCOPT:http-user-agent=plaYtv/7.1.3 (Linux;Android 13) ygx/824.1 ExoPlayerLib/824.0
https://jiotvmblive.cdn.jio.com/bpk-tv/SonySAB_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="476" tvg-logo="https://jiotv.catchup.cdn.jio.com/dare_images/images/SonyMAX.png" group-title="JT",Sony Max HD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=fe8b5e6e0a275d7fbfeb27abf9b75c0b:c27da65de4d17976409daed680b1e9a1
#EXTVLCOPT:http-user-agent=plaYtv/7.1.3 (Linux;Android 13) ygx/824.1 ExoPlayerLib/824.0
https://jiotvmblive.cdn.jio.com/bpk-tv/SonyMAX_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="762" tvg-logo="https://jiotv.catchup.cdn.jio.com/dare_images/images/SonyPIX.png" group-title="JT",Sony Pix HD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=00426b6344e351f491f324a94b62cd2f:ae3a59fe9918e7180ed65e2c842f7cc8
#EXTVLCOPT:http-user-agent=plaYtv/7.1.3 (Linux;Android 13) ygx/824.1 ExoPlayerLib/824.0
https://jiotvmblive.cdn.jio.com/bpk-tv/SonyPIX_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="821" tvg-logo="https://jiotv.catchup.cdn.jio.com/dare_images/images/SonyBBCEarthHin.png" group-title="JT",Sony BBC Earth HD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=f45e69507f0f5aa1a6e82374efb0af25:f84348219837769feb5a26a7b1cd31dc
#EXTVLCOPT:http-user-agent=plaYtv/7.1.3 (Linux;Android 13) ygx/824.1 ExoPlayerLib/824.0
https://jiotvmblive.cdn.jio.com/bpk-tv/SonyBBCEarthHin_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/National_Geographic_HD.png" group-title="JT",Nat Geo HD
#KODIPROP:inputstream=inputstream.adaptive
#KODIPROP:inputstream.adaptive.license_type=org.w3.clearkey
#KODIPROP:inputstream.adaptive.license_key=4b006dd7965e5777a7fa33dd636c2e5d:179f796bdf11b750bebd469a3aeae1d0
https://jiotvmblive.cdn.jio.com/bpk-tv/National_Geographic_HD_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/Nat_Geo_Wild_HD.png" group-title="JT",Nat Geo Wild HD
#KODIPROP:inputstream=inputstream.adaptive
#KODIPROP:inputstream.adaptive.license_type=org.w3.clearkey
#KODIPROP:inputstream.adaptive.license_key=45fc661aa1af51c98950c43329391d18:c2677c874886e78d24b3fb656c5734e0
https://jiotvmblive.cdn.jio.com/bpk-tv/Nat_Geo_Wild_HD_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="3444" tvg-logo="https://jiotv.catchup.cdn.jio.com/dare_images/images/DiscoveryHDHin.png" group-title="JT",Discovery HD Hindi
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=8d2754e59a025dd2a9fd98c15fe8e45d:b13562dae0e15973a2ea562c76ce292f
#EXTVLCOPT:http-user-agent=plaYtv/7.1.3 (Linux;Android 13) ygx/824.1 ExoPlayerLib/824.0
https://jiotvmblive.cdn.jio.com/bpk-tv/DiscoveryHDHin_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="3434" tvg-logo="https://jiotv.catchup.cdn.jio.com/dare_images/images/IDHDHindi.png" group-title="JT",Discovery ID HD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=8a0d5007c45c5547b36901dc5f125c41:d474651d58ba24f6a779e0772e240138
#EXTVLCOPT:http-user-agent=plaYtv/7.1.3 (Linux;Android 13) ygx/824.1 ExoPlayerLib/824.0
https://jiotvmblive.cdn.jio.com/bpk-tv/IDHDHindi_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="286" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/Animal_Planet_HD.png" group-title="JT",Animal Planet HD World
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=6e56dee54bd4596b8ba528012fd3c7e7:c10f10e9b4926b13a6627c99ec0fae1c
#EXTVLCOPT:http-user-agent=plaYtv/7.1.3 (Linux;Android 13) ygx/824.1 ExoPlayerLib/824.0
https://jiotvmblive.cdn.jio.com/bpk-tv/AnimalPlanetHDHin_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/History_HD.png" group-title="JT",History TV 18 HD
#KODIPROP:inputstream=inputstream.adaptive
#KODIPROP:inputstream.adaptive.license_type=org.w3.clearkey
#KODIPROP:inputstream.adaptive.license_key=0172b8cd13ed59349a05aadc58ae11e0:e4ab7836617767a2a6e7aaae17fad2b6
https://jiotvmblive.cdn.jio.com/bpk-tv/History_HD_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="3458" tvg-logo="https://jiotv.catchup.cdn.jio.com/dare_images/images/TLCHDHindi.png" group-title="JT",TLC HD Hindi
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=5efbe8c07fea5e4088f65d86fdfbf722:9b6371c0e564b4b1fbafad90e9f26dbf
#EXTVLCOPT:http-user-agent=plaYtv/7.1.3 (Linux;Android 13) ygx/824.1 ExoPlayerLib/824.0
https://jiotvmblive.cdn.jio.com/bpk-tv/TLCHDHindi_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="562" tvg-logo="https://jiotv.catchup.cdn.jio.com/dare_images/images/Travel_XP.png" group-title="JT",Travelxp HD Hindi
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=39aa887ebbc35db6bd10217aba5e016b:a1862a47f6db0af137d0c69b3cb422bb
#EXTVLCOPT:http-user-agent=plaYtv/7.1.3 (Linux;Android 13) ygx/824.1 ExoPlayerLib/824.0
https://jiotvmblive.cdn.jio.com/bpk-tv/Travel_XP_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1226" tvg-logo="https://jiotv.catchup.cdn.jio.com/dare_images/images/Nick_HD_Plus.png" group-title="JT",Nick HD+
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=50c0ac86d9445b3a855fcabae7538aaf:cf79083218d809d379c2f64acbde561f
#EXTVLCOPT:http-user-agent=plaYtv/7.1.3 (Linux;Android 13) ygx/824.1 ExoPlayerLib/824.0
https://jiotvmblive.cdn.jio.com/bpk-tv/Nick_HD_Plus_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="" tvg-logo="https://jiotv.catchup.cdn.jio.com/dare_images/images/CNHDHindi.png" group-title="JT",CN+ HD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=e0a906e1b3d5536fa62e87ecf5c54859:a7c78450be43a75cda96e9daaad9ca1b
#EXTVLCOPT:http-user-agent=plaYtv/7.1.3 (Linux;Android 13) ygx/824.1 ExoPlayerLib/824.0
https://jiotvmblive.cdn.jio.com/bpk-tv/CNHDHindi_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1375" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/Disney_International_HD.png" group-title="JT",Disney International HD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=d0e021aa91c65e68a7028c2a6a762eca:d50822403365e360d12840251cecee84
#EXTVLCOPT:http-user-agent=plaYtv/7.1.3 (Linux;Android 13) ygx/824.1 ExoPlayerLib/824.0
https://jiotvmblive.cdn.jio.com/bpk-tv/Disney_International_HD_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="" tvg-logo="https://jiotv.catchup.cdn.jio.com/dare_images/images/Star_Sports_HD1_Hindi.png" group-title="JT",Star Sports HD1
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=965dc2ddb1d85138ad787999a7f30ca5:859695076e67fe961836b564db6d689c
#EXTVLCOPT:http-user-agent=plaYtv/7.1.3 (Linux;Android 13) ygx/824.1 ExoPlayerLib/824.0
https://jiotvpllive.cdn.jio.com/bpk-tv/Star_Sports_HD1_BTS/output/index.mpd?__hdnea__=st=1772974701~exp=1773061101~acl=/*~hmac=74da9cfac46e6a957599c53f85c1e70719a78b76e795b479a31b9cf6ae513fd2
#EXTINF:-1 tvg-id="" tvg-logo="https://jiotv.catchup.cdn.jio.com/dare_images/images/Star_Sports_HD1.png" group-title="JT",Star Sports HD1 Hindi
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=965dc2ddb1d85138ad787999a7f30ca5:859695076e67fe961836b564db6d689c
#EXTVLCOPT:http-user-agent=plaYtv/7.1.3 (Linux;Android 13) ygx/824.1 ExoPlayerLib/824.0
https://jiotvpllive.cdn.jio.com/bpk-tv/Star_Sports_HD1_BTS/output/index.mpd?__hdnea__=st=1772974701~exp=1773061101~acl=/*~hmac=74da9cfac46e6a957599c53f85c1e70719a78b76e795b479a31b9cf6ae513fd2
#EXTINF:-1 tvg-id="" tvg-logo="https://jiotv.catchup.cdn.jio.com/dare_images/images/Sports18_1_HD.png" group-title="JT",Star Sports 2 Hindi HD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=bd1ea6a1c1fb5dcdb709434e0826bbc0:f57f22cba32739ce7beb1fab3f3d060b
#EXTVLCOPT:http-user-agent=plaYtv/7.1.3 (Linux;Android 13) ygx/824.1 ExoPlayerLib/824.0
https://jiotvpllive.cdn.jio.com/bpk-tv/Sports18_1_HD_BTS/output/index.mpd?__hdnea__=st=1772974701~exp=1773061101~acl=/*~hmac=74da9cfac46e6a957599c53f85c1e70719a78b76e795b479a31b9cf6ae513fd2
#EXTINF:-1 tvg-id="" tvg-logo="https://jiotv.catchup.cdn.jio.com/dare_images/images/Star_Sports_HD2.png" group-title="JT",Star Sports HD2
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=9457eb90129456fa8ea95e10ba4ac51e:e620a970cea474c491ac78ae71a4d764
#EXTVLCOPT:http-user-agent=plaYtv/7.1.3 (Linux;Android 13) ygx/824.1 ExoPlayerLib/824.0
https://jiotvpllive.cdn.jio.com/bpk-tv/Star_Sports_HD2_BTS/output/index.mpd?__hdnea__=st=1772974701~exp=1773061101~acl=/*~hmac=74da9cfac46e6a957599c53f85c1e70719a78b76e795b479a31b9cf6ae513fd2
#EXTINF:-1 tvg-id="1839" tvg-logo="https://jiotv.catchup.cdn.jio.com/dare_images/images/And_Pictures.png" group-title="JT",&Pictures SD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=5d495d29b3e754748389f04dab476c89:2509aac0c21ca795b28d3e3ed3ad96df
https://jiotvmblive.cdn.jio.com/bpk-tv/AndPictures_MOB/WDVLive/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1351" tvg-logo="https://jiotv.catchup.cdn.jio.com/dare_images/images/Zee_TV.png" group-title="JT",Zee TV SD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=284db1a465ee50c081b7fa9735c4e000:26d05a4a82a0d6eb317dd861a06d746c
https://jiotvmblive.cdn.jio.com/bpk-tv/ZeeTV_MOB/WDVLive/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="484" tvg-logo="https://jiotv.catchup.cdn.jio.com/dare_images/images/Zee_Cinema.png" group-title="JT",Zee Cinema SD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=da42ae25046f5ba980f0fe4cc2e5e33e:ea7fd965094ff9b933e3fb654466f19f
https://jiotvmblive.cdn.jio.com/bpk-tv/ZeeCinema_MOB/WDVLive/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="488" tvg-logo="https://jiotv.catchup.cdn.jio.com/dare_images/images/Zee_Action.png" group-title="JT",Zee Action
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=80e87d88c856547a917ed83f62656cd7:c68fcd4330e5f188793df509bb5e19a6
https://jiotvmblive.cdn.jio.com/bpk-tv/ZeeAction_MOB/WDVLive/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1691" tvg-logo="https://jiotv.catchup.cdn.jio.com/dare_images/images/Zee_Classic_SD.png" group-title="JT",Zee Classic
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=2aea84bae39054cbbc86ace8a08bac37:146d2414142edb746f82d71459274d39
https://jiotvmblive.cdn.jio.com/bpk-tv/ZeeClassicSD_MOB/WDVLive/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1751" tvg-logo="https://jiotv.catchup.cdn.jio.com/dare_images/images/Zee_Punjabi.png" group-title="JT",Zee Punjabi
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=3e84a5e3bec95259be62298af311a881:82fe7d44316ca55e034f78b4c7596f60
https://jiotvmblive.cdn.jio.com/bpk-tv/ZeePunjabi_MOB/WDVLive/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="572" tvg-logo="https://jiotv.catchup.cdn.jio.com/dare_images/images/Living_Foodz.png" group-title="JT",Zee UP UK
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=6ec829b78df75cd9b0b1c0b882dbd705:b77aa3b944753f7259ca25e2a8957729
https://jiotvmblive.cdn.jio.com/bpk-tv/Living_Foodz_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="494" tvg-logo="https://jiotv.catchup.cdn.jio.com/dare_images/images/AL_Jazeera.png" group-title="JT",AL Jazeera
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=938cded498cc523d8efb30ba1a566ed0:fe27674fbc0c08dd1e2b5da479285f38
https://jiotvmblive.cdn.jio.com/bpk-tv/AL_Jazeera_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1373" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/Disney_Channel.png" group-title="JT",Disney Channel
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=5181d3e6698055578cedc5bfc86b3e56:3dca7917d8cf9bb7095dc72b48bdcd3c
https://jiotvmblive.cdn.jio.com/bpk-tv/Disney_Channel_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1374" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/Disney_Junior.png" group-title="JT",Disney Junior
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=1b1f9702f7d853c1b198495f64924311:40e11e60a12dd6c154dfea0ffbd5bda8
https://jiotvmblive.cdn.jio.com/bpk-tv/Disney_Junior_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="2000" tvg-logo="https://i.ibb.co/5WZ2CNSf/1000029431.jpg" group-title="JT",Sony Liv
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=4e4c5dba5bfe5a7c9338bc086eb80379:b8e8932f440084e1d2b705fa52eef94b
https://jiotvmblive.cdn.jio.com/bpk-tv/SonyLIV_Sports_1_MOB/WDVLive/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="204" tvg-logo="https://jiotv.catchup.cdn.jio.com/dare_images/images/DD_Sports.png" group-title="JT",DD Sports
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=0c1b139b9a955134a1efae8e44b63aac:00897bffd6997049787270797b8c3a17
https://jiotvmblive.cdn.jio.com/bpk-tv/DD_Sports_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="875" tvg-logo="https://jiotv.catchup.cdn.jio.com/dare_images/images/Dsports_HD.png" group-title="JT",Eurosport HD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=14fc31f9d832509c9f7cdd77e622e30b:a884515f4e1dd77f07aa100ccec13388
https://jiotvmblive.cdn.jio.com/bpk-tv/Dsports_HD_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1163" tvg-logo="https://jiotv.catchup.cdn.jio.com/dare_images/images/Jio_Esports_HD.png" group-title="JT",JioGames HD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=3ae597f8c16c52429d3240a91fd39935:87c7615c0f83d6e1a2e2095120c55112
https://jiotvmblive.cdn.jio.com/bpk-tv/Jio_Esports_HD_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="4470" tvg-logo="https://img.media.jio.com/tvpimages/76/32/301981_1749665664018_l_medium.jpg" group-title="JT",Star Sports 1 HD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=965dc2ddb1d85138ad787999a7f30ca5:859695076e67fe961836b564db6d689c
https://jiotvmblive.cdn.jio.com/bpk-tv/Star_Sports_HD1_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1984" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/Sports18_1_HD.png" group-title="JT",Star Sports 2 Hindi HD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=bd1ea6a1c1fb5dcdb709434e0826bbc0:f57f22cba32739ce7beb1fab3f3d060b
https://jiotvmblive.cdn.jio.com/bpk-tv/Sports18_1_HD_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1984" tvg-logo="https://img.media.jio.com/tvpimages/57/17/302124_1749130246443_l_medium.jpg" group-title="JT",Star Sports 2 Hindi
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=a3ed8dc0e0cb5d238da80ee0a85bd2e1:67a96992e6406606f3480ab58d7f540c
https://jiotvmblive.cdn.jio.com/bpk-tv/Sports18_1_SD_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="300" tvg-logo="https://img.media.jio.com/tvpimages/96/65/302113_1749664252703_l_medium.jpg" group-title="JT",Star Sports Select 1 HD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=c2c048e439d65316beeda6ef64d5d0f8:8e2fdc132cbdee65501b845ce414fce39
https://jiotvmblive.cdn.jio.com/bpk-tv/Star_Sports_Select_HD_1_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1123" tvg-logo="https://img.media.jio.com/tvpimages/13/82/301994_1749664069587_l_medium.jpg" group-title="JT",Star Sports Select 1
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=ea7985dacbb95f1c9d62e5a1675142e5:39d5910ca04841b5f32bf24623cdae58
https://jiotvmblive.cdn.jio.com/bpk-tv/Star_Sports_Select_1_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="301" tvg-logo="https://img.media.jio.com/tvpimages/98/79/302114_1749665414817_l_medium.jpg" group-title="JT",Star Sports Select 2 HD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=6017d0514d425fa38f6e80ba6dcc852f:0018944b00adf2078f62386f30c68b74
https://jiotvmblive.cdn.jio.com/bpk-tv/Star_Sports_Select_HD_2_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1114" tvg-logo="https://img.media.jio.com/tvpimages/98/48/301989_1749664475828_l_medium.jpg" group-title="JT",Star Sports Select 2
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=ec7d009d07aa5cbc81a441880530dfa5:8147983ad7402ebfc222d28b667a196f
https://jiotvmblive.cdn.jio.com/bpk-tv/Star_Sports_Select_2_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1998" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/Sports18_Khel.png" group-title="JT",Star Sports Khel
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=ab947ddbb9795d38bff35597b4f73108:2671e22eb7dc174c35b6aad4b113f7b0
https://jiotvmblive.cdn.jio.com/bpk-tv/Sports18_Khel_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1104" tvg-logo="https://ltsk-cdn.s3.eu-west-1.amazonaws.com/jumpstart/Temp_Live/cdn/HLS/Channel/imageContent-12086-j9od8wxc-v1/imageContent-12086-j9od8wxc-m1.png" group-title="JT",Star Movies HD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=6ac6943751e558b181da32727f03dff7:f36e5cd48252bcd0fcda2bfe21f5b365
https://jiotvmblive.cdn.jio.com/bpk-tv/Star_Movies_HD_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1110" tvg-logo="https://ltsk-cdn.s3.eu-west-1.amazonaws.com/jumpstart/Temp_Live/cdn/HLS/Channel/imageContent-12193-j9q33dpc-v2/imageContent-12193-j9q33dpc-m3.png" group-title="JT",Star Movies Select HD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=b55393cd147a54debaf2b0f2d82b5d9f:6b168db49241a78c1b423ab9a29409ef
https://jiotvmblive.cdn.jio.com/bpk-tv/Star_Movies_Select_HD_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1158" tvg-logo=" group-title="JT",Colors Infinity HD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=509216860f8e594aaf7e921296f53851:536df1e35e2bb055be0117b51db8139c
https://jiotvmblive.cdn.jio.com/bpk-tv/Colors_Infinity_HD_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="143" tvg-name="CNBC Tv18 Prime HD" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/CNBC_Tv18_Prime_HD.png" group-title="JT",CNBC Tv18 Prime HD
#KODIPROP:inputstream=inputstream.adaptive
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=810f0869e10c537891203cc70315dd6d:b8f7d22abf86cf12444a848ed5dbec13
https://jiotvmblive.cdn.jio.com/bpk-tv/CNBC_Tv18_Prime_HD_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="144" tvg-name="Colors HD" group-title="JT" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/Colors_HD.png",Colors HD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=d9025bf5bbe6502cab58edaa0b50750b:91b5ca6ebefe3a977cb6fcae31868664
#EXTVLCOPT:http-user-agent=plaYtv/7.1.5 (Linux; Android 13) ExoPlayerLib/2.11.7
https://jiotvmblive.cdn.jio.com/bpk-tv/Colors_HD_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="146" tvg-name="History TV18 HD" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/History_HD.png" group-title="JT",History TV18 HD
#KODIPROP:inputstream=inputstream.adaptive
#KODIPROP:inputstream.adaptive.license_type=org.w3.clearkey
#KODIPROP:inputstream.adaptive.license_key=0172b8cd13ed59349a05aadc58ae11e0:e4ab7836617767a2a6e7aaae17fad2b6
https://jiotvmblive.cdn.jio.com/bpk-tv/History_HD_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="156" group-title="JT" tvg-logo="https://xstreamcp-assets-msp.streamready.in/assets/LIVETV/LIVECHANNEL/LIVETV_LIVETVCHANNEL_STAR_GOLD_HD/images/LOGO_HD/image.png",Star Gold HD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=ec7ad3786d9e5efa9e0c4aeb3e58c7b7:907509ccae7e68b30ae75b5d09fe60ef
#EXTVLCOPT:http-user-agent=plaYtv/7.1.5 (Linux;Android 15) ExoPlayerLib/2.11.6 YGX/69.69.69.69
https://jiotvmblive.cdn.jio.com/bpk-tv/Star_Gold_HD_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="164" tvg-name="Travelxp HD" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/Travel_XP_HD.png" group-title="JT",Travelxp HD
#KODIPROP:inputstream=inputstream.adaptive
#KODIPROP:inputstream.adaptive.license_type=org.w3.clearkey
#KODIPROP:inputstream.adaptive.license_key=021bd4635e8653bca6830adaca183b14:035ec746d6ee0d39cb7cb15963da8424
https://jiotvmblive.cdn.jio.com/bpk-tv/Travel_XP_HD_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="173" group-title="JT" tvg-logo="https://xstreamcp-assets-msp.streamready.in/assets/LIVETV/LIVECHANNEL/657978f46cbc4372820a5bdf/images/237.webp" group-title="JT", Star Sports 1 Hindi HD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=400131994b445d8c8817202248760fda:2d56cb6f07a75b9aff165d534ae2bfc4
#EXTVLCOPT:http-user-agent=plaYtv/7.1.5 (Linux;Android 15) ExoPlayerLib/2.11.6 YGX/69.69.69.69
https://jiotvmblive.cdn.jio.com/bpk-tv/Star_Sports_HD1_Hindi_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="177" tvg-name="ABP News India" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/ABP_News_India.png" group-title="JT",ABP News India
#KODIPROP:inputstream=inputstream.adaptive
#KODIPROP:inputstream.adaptive.license_type=org.w3.clearkey
#KODIPROP:inputstream.adaptive.license_key=177a4826f7395b3cbcc7c6f94f495f52:db77e50ed2b92483b416f914e1e118df
https://jiotvmblive.cdn.jio.com/bpk-tv/ABP_News_India_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="182" tvg-name="B4U Movies" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/B4U_Movies.png" group-title="JT",B4U Movies
#KODIPROP:inputstream=inputstream.adaptive
#KODIPROP:inputstream.adaptive.license_type=org.w3.clearkey
#KODIPROP:inputstream.adaptive.license_key=aad9243981dc5e2aa1d1d25b2e03a20f:45e116c3073675d7ce8f98d479fe223d
https://jiotvmblive.cdn.jio.com/bpk-tv/B4U_Movies_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="183" tvg-name="B4U Music" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/B4U_Music.png" group-title="JT",B4U Music
#KODIPROP:inputstream=inputstream.adaptive
#KODIPROP:inputstream.adaptive.license_type=org.w3.clearkey
#KODIPROP:inputstream.adaptive.license_key=cdc194e4c255538cb3f628486e1d4d35:739d3124813d50159407eac2d1e5a739
https://jiotvmblive.cdn.jio.com/bpk-tv/B4U_Music_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="193" tvg-name="CNN" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/CNN.png" group-title="JT",CNN
#KODIPROP:inputstream=inputstream.adaptive
#KODIPROP:inputstream.adaptive.license_type=org.w3.clearkey
#KODIPROP:inputstream.adaptive.license_key=056cd34f1064579190844b76aabaad5f:319e62e2cc92c257bce26205a58c484b
https://jiotvmblive.cdn.jio.com/bpk-tv/CNN_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="202" tvg-name="DD National" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/DD_National.png" group-title="JT",DD National
#KODIPROP:inputstream=inputstream.adaptive
#KODIPROP:inputstream.adaptive.license_type=org.w3.clearkey
#KODIPROP:inputstream.adaptive.license_key=4b1521eed3df5f339451bce846950abd:b32833fe11a251724bc6c0b84cc02449
https://jiotvmblive.cdn.jio.com/bpk-tv/DD_National_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="203" tvg-name="DD News" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/DD_News.png" group-title="JT",DD News
#KODIPROP:inputstream=inputstream.adaptive
#KODIPROP:inputstream.adaptive.license_type=org.w3.clearkey
#KODIPROP:inputstream.adaptive.license_key=a923003c246153f8b2af4278df5b7189:75f4f1da66ed734efc6547bc486efa8d
https://jiotvmblive.cdn.jio.com/bpk-tv/DD_News_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="204" tvg-name="DD Sports" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/DD_Sports.png" group-title="JT",DD Sports
#KODIPROP:inputstream=inputstream.adaptive
#KODIPROP:inputstream.adaptive.license_type=org.w3.clearkey
#KODIPROP:inputstream.adaptive.license_key=0c1b139b9a955134a1efae8e44b63aac:00897bffd6997049787270797b8c3a17
https://jiotvmblive.cdn.jio.com/bpk-tv/DD_Sports_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="212" tvg-name="ET Now" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/ET_Now.png" group-title="JT",ET Now
#KODIPROP:inputstream=inputstream.adaptive
#KODIPROP:inputstream.adaptive.license_type=org.w3.clearkey
#KODIPROP:inputstream.adaptive.license_key=e05bb7fccc9c541ebc3d180fb3004d1a:fd8ff50906c9b384c894ec084f8b6aee
https://jiotvmblive.cdn.jio.com/bpk-tv/ET_Now_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="231" tvg-name="News 18 India" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/IBN_7.png" group-title="JT",News 18 India
#KODIPROP:inputstream=inputstream.adaptive
#KODIPROP:inputstream.adaptive.license_type=org.w3.clearkey
#KODIPROP:inputstream.adaptive.license_key=b9d4acedc66c5660a1e06197a55bccd2:dd53bab1a42f41ae8f0a5c8fd286f456
https://jiotvmblive.cdn.jio.com/bpk-tv/IBN_7_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="235" tvg-name="India TV" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/India_TV.png" group-title="JT",India TV
#KODIPROP:inputstream=inputstream.adaptive
#KODIPROP:inputstream.adaptive.license_type=org.w3.clearkey
#KODIPROP:inputstream.adaptive.license_key=c6d6b3104f03558283c5bea6bb387a41:561ee86909f10796243328f2dd68c935
https://jiotvmblive.cdn.jio.com/bpk-tv/India_TV_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="242" tvg-name="Discovery" tvg-logo="" group-title="JT",Discovery
#KODIPROP:inputstream=inputstream.adaptive
#KODIPROP:inputstream.adaptive.license_type=org.w3.clearkey
#KODIPROP:inputstream.adaptive.license_key=a77c9893335a5c7da2b32343d0dfff50:26d646a63b8b006dd1317ce69e2132e6
https://jiotvmblive.cdn.jio.com/bpk-tv/Discovery_Channel_Hindi_MOB/WDVLive/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="" tvg-name="MTV" tvg-logo="" group-title="JT",MTV
#KODIPROP:inputstream.adaptive.license_type=org.w3.clearkey
#KODIPROP:inputstream.adaptive.license_key=3af9106a677854a1b9f043eed3124e02:1e042abd297460e5031f50ddb6116d0f
https://jiotvmblive.cdn.jio.com/bpk-tv/MTV_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1145" tvg-name="MTV" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/MTV.png" group-title="JT",MTV HD
#KODIPROP:inputstream=inputstream.adaptive
#KODIPROP:inputstream.adaptive.license_type=org.w3.clearkey
#KODIPROP:inputstream.adaptive.license_key=90d8713ba5e85d779d005b1f14a5bc8d:33650314fe1e945017640ba9878c5de9
https://jiotvmblive.cdn.jio.com/bpk-tv/MTV_HD_Plus_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="250" tvg-name="Music India" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/Music_India.png" group-title="JT",Music India
#KODIPROP:inputstream=inputstream.adaptive
#KODIPROP:inputstream.adaptive.license_type=org.w3.clearkey
#KODIPROP:inputstream.adaptive.license_key=d08f7a69f83a5e41b9d246bba079bd5f:122e5ea9772f5d997288881009a9386b
https://jiotvmblive.cdn.jio.com/bpk-tv/Music_India_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="255" tvg-name="NDTV 24x7" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/NDTV_24x7.png" group-title="JT",NDTV 24x7
#KODIPROP:inputstream=inputstream.adaptive
#KODIPROP:inputstream.adaptive.license_type=org.w3.clearkey
#KODIPROP:inputstream.adaptive.license_key=7b710f1d018c5c7e9e8e0d56d8d0f83c:a45d3abc5fa99458e6ef79a79de3dd8e
https://jiotvmblive.cdn.jio.com/bpk-tv/NDTV_24x7_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="258" tvg-name="NDTV India" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/NDTV_India.png" group-title="JT",NDTV India
#KODIPROP:inputstream=inputstream.adaptive
#KODIPROP:inputstream.adaptive.license_type=org.w3.clearkey
#KODIPROP:inputstream.adaptive.license_key=d56f014696225741a82633b078cb6f39:dab93636838bdb820f29ef6d3e8fe563
https://jiotvmblive.cdn.jio.com/bpk-tv/NDTV_India_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="259" tvg-name="NDTV Profit" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/NDTV_Profit.png" group-title="JT",NDTV Profit
#KODIPROP:inputstream=inputstream.adaptive
#KODIPROP:inputstream.adaptive.license_type=org.w3.clearkey
#KODIPROP:inputstream.adaptive.license_key=10946821a8325846900deec9f8031ceb:a552375bef472dad2bf359986b0dfe31
https://jiotvmblive.cdn.jio.com/bpk-tv/NDTV_Profit_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="279" tvg-name="Rishtey" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/Rishtey.png" group-title="JT",Colors Rishtey
#KODIPROP:inputstream=inputstream.adaptive
#KODIPROP:inputstream.adaptive.license_type=org.w3.clearkey
#KODIPROP:inputstream.adaptive.license_key=190829c4e2b05b8ca547d2cd30ab3bba:a28225e91492ce2d6601874c701bf9bd
https://jiotvmblive.cdn.jio.com/bpk-tv/Rishtey_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="286" tvg-name="Animal Planet HD World" group-title="JT" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/Animal_Planet_HD.png",Animal Planet HD World
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=2e5b244dece4589e8cb63c3f78599b8b:d0bf0aea980e46b12a38f8004505e2fe
https://jiotvmblive.cdn.jio.com/bpk-tv/Animal_Planet_HD_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="" tvg-name="Sanskar" group-title="JT" tvg-logo="",Sanskar
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=dfff473e173152108d5690b30587cfae:84de2917bc930b575a6bb2af4e315f8d
https://jiotvmblive.cdn.jio.com/bpk-tv/Sanskar_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="" tvg-name="Sanskar" group-title="JT" tvg-logo="",Times NOW
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=193d92661b2e584493dd00a0a59f739b:0adccdc9a36e03da70ea1f9189105b83
https://jiotvmblive.cdn.jio.com/bpk-tv/Times_NOW_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="301" group-title="JT" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/Star_Sports_Select_HD_2.png",Star Sports Select 2 HD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=6017d0514d425fa38f6e80ba6dcc852f:0018944b00adf2078f62386f30c68b74
#EXTVLCOPT:http-user-agent=plaYtv/7.1.5 (Linux;Android 15) ExoPlayerLib/2.11.6 YGX/69.69.69.69
https://stream.kliv.fun/allplus11de/jtv/manifest.mpd?id=301
#EXTINF:-1 tvg-id="412" tvg-name="Wion" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/Wion.png" group-title="JT",Wion
#KODIPROP:inputstream=inputstream.adaptive
#KODIPROP:inputstream.adaptive.license_type=org.w3.clearkey
#KODIPROP:inputstream.adaptive.license_key=516d26778a21587484208637d89ff773:77599313595e70e5903151b0592ffa15
https://jiotvmblive.cdn.jio.com/bpk-tv/Wion_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="440" tvg-name="9X Jalwa" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/9X_Jalwa.png" group-title="JT",9X Jalwa
#KODIPROP:inputstream=inputstream.adaptive
#KODIPROP:inputstream.adaptive.license_type=org.w3.clearkey
#KODIPROP:inputstream.adaptive.license_key=f34586787f91537e92d80c5709b026dd:f836b3681ac0c184cd18af67fc168874
https://jiotvmblive.cdn.jio.com/bpk-tv/9X_Jalwa_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="441" tvg-name="9x Jhakaas" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/9x_Jhakaas.png" group-title="JT",9x Jhakaas
#KODIPROP:inputstream=inputstream.adaptive
#KODIPROP:inputstream.adaptive.license_type=org.w3.clearkey
#KODIPROP:inputstream.adaptive.license_key=eec26d8c68505675a840ac969f571162:13f46ae10e844d5f2b65fe41ebd59e16
https://jiotvmblive.cdn.jio.com/bpk-tv/9x_Jhakaas_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="463" tvg-name="Discovery HD World" group-title="JT" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/Discovery_HD_World.png",Discovery HD World
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=ce16454b1fc85beab2f807af176046bb:ff67cca83c770daa6dc9c295cc76564f
https://jiotvmblive.cdn.jio.com/bpk-tv/Discovery_HD_World_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="821" tvg-name="https://ltsk-cdn.s3.eu-west-1.amazonaws.com/jumpstart/Temp_Live/cdn/HLS/Channel/SOBB_Thumbnail-v6/SOBB_Thumbnail.png" group-title="JT" tvg-logo="",Sony BBC Earth HD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=f45e69507f0f5aa1a6e82374efb0af25:f84348219837769feb5a26a7b1cd31dc
https://jiotvmblive.cdn.jio.com/bpk-tv/SonyBBCEarthHin_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="479" tvg-name="TLC HD" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/TLC_HD_World.png" group-title="JT",TLC HD
#KODIPROP:inputstream=inputstream.adaptive
#KODIPROP:inputstream.adaptive.license_type=org.w3.clearkey
#KODIPROP:inputstream.adaptive.license_key=ef9f76e7a4e25534a349c65c6b5e7122:db439de64495212588ce839126b2923f
https://jiotvmblive.cdn.jio.com/bpk-tv/TLC_HD_World_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="481" tvg-name="Epic" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/Epic_HD.png" group-title="JT",Epic
#KODIPROP:inputstream=inputstream.adaptive
#KODIPROP:inputstream.adaptive.license_type=org.w3.clearkey
#KODIPROP:inputstream.adaptive.license_key=7a0c08db83b75a4ba13aaa88e32e3c15:d9538492130ab51229bccf4257a13601
https://jiotvmblive.cdn.jio.com/bpk-tv/Epic_HD_MOB/WDVLive/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="481" tvg-name="Colors Cineplex" tvg-logo="" group-title="JT",Colors Cineplex
#KODIPROP:inputstream=inputstream.adaptive
#KODIPROP:inputstream.adaptive.license_type=org.w3.clearkey
#KODIPROP:inputstream.adaptive.license_key=b9d4acedc66c5660a1e06197a55bccd2:dd53bab1a42f41ae8f0a5c8fd286f456
https://jiotvmblive.cdn.jio.com/bpk-tv/Colors_Cineplex_MOB/WDVLive/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="485" tvg-name="Enterr 10" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/Enterr_10.png" group-title="JT",Enterr 10
#KODIPROP:inputstream=inputstream.adaptive
#KODIPROP:inputstream.adaptive.license_type=org.w3.clearkey
#KODIPROP:inputstream.adaptive.license_key=fb4ec300d28954b3bfc13826bd4b2c7d:8bcf373a0ade9ed1283420befac2f54c
https://jiotvmblive.cdn.jio.com/bpk-tv/Enterr_10_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="486" tvg-name="Bhojpuri Cinema" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/Bhojpuri_Cinema.png" group-title="JT",Bhojpuri Cinema
#KODIPROP:inputstream=inputstream.adaptive
#KODIPROP:inputstream.adaptive.license_type=org.w3.clearkey
#KODIPROP:inputstream.adaptive.license_key=a9ad912a180e53ed829aeaad4de8eed3:e550016b276d7d15fd5e16ada6b433c0
https://jiotvmblive.cdn.jio.com/bpk-tv/Bhojpuri_Cinema_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="492" tvg-name="CNN News 18" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/CNN_NEWS_18.png" group-title="JT",CNN News 18
#KODIPROP:inputstream=inputstream.adaptive
#KODIPROP:inputstream.adaptive.license_type=org.w3.clearkey
#KODIPROP:inputstream.adaptive.license_key=dac2dd338cbf5340bbaa63762095109c:870cb23835dc7271d128ef8b3794a7e0
https://jiotvmblive.cdn.jio.com/bpk-tv/CNN_NEWS_18_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="493" tvg-name="India Today" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/India_Today.png" group-title="JT",India Today
#KODIPROP:inputstream=inputstream.adaptive
#KODIPROP:inputstream.adaptive.license_type=org.w3.clearkey
#KODIPROP:inputstream.adaptive.license_key=0bf2f731b3f25e66b7278d28c6567d37:aa9ca08dff759a6930380c7fe09cf3f6
https://jiotvmblive.cdn.jio.com/bpk-tv/India_Today_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="494" tvg-name="Al Jazeera" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/AL_Jazeera.png" group-title="JT",Al Jazeera
#KODIPROP:inputstream=inputstream.adaptive
#KODIPROP:inputstream.adaptive.license_type=org.w3.clearkey
#KODIPROP:inputstream.adaptive.license_key=938cded498cc523d8efb30ba1a566ed0:fe27674fbc0c08dd1e2b5da479285f38
https://jiotvmblive.cdn.jio.com/bpk-tv/AL_Jazeera_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="495" tvg-name="News X" tvg-logo="" group-title="JT",News X
#KODIPROP:inputstream=inputstream.adaptive
#KODIPROP:inputstream.adaptive.license_type=org.w3.clearkey
#KODIPROP:inputstream.adaptive.license_key=db2dcb71048859e388f037b84f9cfb3a:3b9b23fde31856343b1653ef18a62286
https://jiotvmblive.cdn.jio.com/bpk-tv/News_X_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="496" tvg-name="DW" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/dw.png" group-title="JT",DW
#KODIPROP:inputstream=inputstream.adaptive
#KODIPROP:inputstream.adaptive.license_type=org.w3.clearkey
#KODIPROP:inputstream.adaptive.license_key=6dd0a87547ae52b8b411debc8aef04e1:6bb95829ec3155dcb09f55a21d492432
https://jiotvmblive.cdn.jio.com/bpk-tv/dw_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="498" tvg-name="India News" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/India_news.png" group-title="JT",India News
#KODIPROP:inputstream=inputstream.adaptive
#KODIPROP:inputstream.adaptive.license_type=org.w3.clearkey
#KODIPROP:inputstream.adaptive.license_key=f7280f4834c754969044f948fe57aaec:09d1a64f75ab09c07584f78e01da452e
https://jiotvmblive.cdn.jio.com/bpk-tv/India_news_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="499" tvg-name="India News" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/News_Nation.png" group-title="JT",News Nation
#KODIPROP:inputstream=inputstream.adaptive
#KODIPROP:inputstream.adaptive.license_type=org.w3.clearkey
#KODIPROP:inputstream.adaptive.license_key=6fe0bc5674cd5ea8ba02da6fdb5b4a91:b34f1a5fd857e4dfa842e95ddcd2a232
https://jiotvmblive.cdn.jio.com/bpk-tv/News_Nation_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="501" tvg-name="India News" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/News_24.png" group-title="JT",News 24
#KODIPROP:inputstream=inputstream.adaptive
#KODIPROP:inputstream.adaptive.license_type=org.w3.clearkey
#KODIPROP:inputstream.adaptive.license_key=65e01f43d9ce5b49a5803c2626d71a1f:3d5082e04a8d6d3eb2dc7b557a63b336
https://jiotvmblive.cdn.jio.com/bpk-tv/News_24_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="541" tvg-name="Discovery Turbo" group-title="JT" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/Discovery_Turbo.png",Discovery Turbo
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=f6975ebba1045165a9223a938b9e7974:2f63fb18980f4b851fc222a71ed85bbd
https://jiotvmblive.cdn.jio.com/bpk-tv/Discovery_Turbo_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="542" tvg-name="Pogo" group-title="JT" tvg-logo="",Pogo
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=4b967f351139503a88b1d1945203150b:c3e26279cc513e13154958f934141dc0
https://jiotvmblive.cdn.jio.com/bpk-tv/Pogo_Hindi_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="544" group-title="JT" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/Nick_Junior.png",Nick Jr.
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=650b7266910553cb8129d2277a865afc:c90f8125b0a30c61b7d8221ad6b90d12
https://jiotvmblive.cdn.jio.com/bpk-tv/Nick_Junior_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="545" tvg-name="Nick Hindi" group-title="JT" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/Nick_Hindi.png",Nick Hindi
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=2fc128a8dcc751829ec7ed9c678ecb6f:95f49d83ad11868e15e64baf5dec62ac
https://jiotvmblive.cdn.jio.com/bpk-tv/Nick_Hindi_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="551" tvg-name="Colors HD" group-title="JT" tvg-logo="",Colors HD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=b9d4acedc66c5660a1e06197a55bccd2:dd53bab1a42f41ae8f0a5c8fd286f456
https://jiotvmblive.cdn.jio.com/bpk-tv/Colors_HD_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="554" tvg-name="Discovery Kids" group-title="JT" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/Discovery_Kids_2.png",Discovery Kids 2
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=e921b8507a5e5cd1bb4433b3fd1f5e0a:037835bab43e7ef4a41a97c638cd9c1d
https://jiotvmblive.cdn.jio.com/bpk-tv/Discovery_Kids_2_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="559" tvg-name="Pogo Hindi" group-title="JT" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/Pogo_Hindi.png",Pogo Hindi
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=4b967f351139503a88b1d1945203150b:c3e26279cc513e13154958f934141dc0
https://jiotvmblive.cdn.jio.com/bpk-tv/Pogo_Hindi_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="561" tvg-name="Food Food" group-title="JT" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/Food_Food.png",Food Food
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=d5eea81fc4dc572a8746530d13faf792:63750102cfdcc507a54fbabb209c776b
https://jiotvmblive.cdn.jio.com/bpk-tv/Food_Food_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="566" tvg-name="Animal Planet Hindi" group-title="JT" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/Animal_Planet_Hindi.png",Animal Planet Hindi
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=ead5a173062a584c85fcdfcfdda3ddf5:4c799a57db355c7cdfbdbf2ad39ec7fe
https://jiotvmblive.cdn.jio.com/bpk-tv/Animal_Planet_HD_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="571" tvg-name="TLC" group-title="JT" tvg-logo="",TLC Hindi
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=cb10cf5381f958029431b19f62a81959:a6a51457e5aac769a422d8341a1c8dde
https://jiotvmblive.cdn.jio.com/bpk-tv/TLC_Hindi_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="" tvg-name="" group-title="JT" tvg-logo="",TLC English
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=e50aa8136d3f58bc97b00d2cc9e6517e:c5be8d5c21caee8ec290d4ac6a558b22
https://jiotvmblive.cdn.jio.com/bpk-tv/TLC_Hindi_MOB/WDVLive/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="578" tvg-name="History TV 18 HD" group-title="JT" tvg-logo="",History TV 18 HD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=b43ef2b054a755bba3fd492a183fdfcd:76cda2b69a89ff7643e3ab2b3b326350
https://jiotvmblive.cdn.jio.com/bpk-tv/History_HD_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="580" tvg-name="DD Bharti" group-title="JT" tvg-logo="",DD Bharti
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=b9dc813a100051c98b7f5a96ef02936c:c335eda4a2a5159eab4e8090b50a2c40
https://jiotvmblive.cdn.jio.com/bpk-tv/DD_bharati_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="591" tvg-name="E24" group-title="JT" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/E_24.png",E24
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=66aa5b3381dd5666a6515550bf680b4d:747e5f538c9ecd9c8f85b07e00d49450
https://jiotvmblive.cdn.jio.com/bpk-tv/E_24_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="712" tvg-name="DD Urdu" group-title="JT" tvg-logo="",DD Urdu
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=b9dc813a100051c98b7f5a96ef02936c:c335eda4a2a5159eab4e8090b50a2c40
https://jiotvmblive.cdn.jio.com/bpk-tv/DD_bharati_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="764" tvg-name="CNA" group-title="JT" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/Channel_News_Asia_International.png",CNA
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=6479c534d56e55f984778f2eb8d0777e:f45acd7a3d823bf85a5da2f1ebc3932a
https://stream.kliv.fun/allplus11de/jtv/manifest.mpd?id=764
#EXTINF:-1 tvg-id="816" tvg-name="Cartoon Network Hindi" group-title="JT" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/Cartoon_Network_Hindi.png",Cartoon Network Hindi
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=ea48cf7b24dd54dd98c369626b9ad105:ee5778d627dfae2c2affc02d76e8db6c
https://jiotvmblive.cdn.jio.com/bpk-tv/Cartoon_Network_Hindi_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="831" tvg-name="Living India" group-title="JT" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/Living_India_News.png",Living India
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=ea48cf7b24dd54dd98c369626b9ad105:ee5778d627dfae2c2affc02d76e8db6c
https://stream.kliv.fun/allplus11de/jtv/manifest.mpd?id=831
#EXTINF:-1 tvg-id="837" tvg-name="Euro News" group-title="JT" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/Euro_News.png",Euro News
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=843e1658f5915fdda0a5ecc5bd3dd726:88f0fd96990a66b1307094eaf4998119
https://jiotvmblive.cdn.jio.com/bpk-tv/Euro_News_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="838" tvg-name="France 24" group-title="JT" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/France_24.png",France 24
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=dce6244581db5cf59cab26b031637582:498b30e8a6c729fb25e4bed9fc8074c5
https://jiotvmblive.cdn.jio.com/bpk-tv/France_24_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="850" tvg-name="News India 24x7" group-title="JT" tvg-logo="",News India 24x7
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=c404cd4517e9550b892740ae93535a00:08acd3f4ce4583a81ae397d8d2e755c4
https://jiotvmblive.cdn.jio.com/bpk-tv/News_India_24_X_7_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="931" group-title="JT" tvg-logo="https://xstreamcp-assets-msp.streamready.in/assets/LIVETV/LIVECHANNEL/LIVETV_LIVETVCHANNEL_STAR_BHARAT_HD/images/LOGO_HD/image.png",Star Bharat HD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=701524f373c55b2785ac49aab0bdc4a6:9de42eedb40f6c243848eb8aa8103e32
#EXTVLCOPT:http-user-agent=plaYtv/7.1.5 (Linux;Android 15) ExoPlayerLib/2.11.6 YGX/69.69.69.69
https://jiotvmblive.cdn.jio.com/bpk-tv/Star_Bharat_HD_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="939" group-title="JT" tvg-logo="",Bhakti Sagar
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=be1aca97c54e562cb5e7f1a49771bfdb:9ff05f5a2b8a587e4fb0ac95bd5c6580
#EXTVLCOPT:http-user-agent=plaYtv/7.1.5 (Linux;Android 15) ExoPlayerLib/2.11.6 YGX/69.69.69.69
https://jiotvmblive.cdn.jio.com/bpk-tv/Bhaktisagar_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1104" group-title="JT" tvg-logo="https://xstreamcp-assets-msp.streamready.in/assets/LIVETV/LIVECHANNEL/LIVETV_LIVETVCHANNEL_STAR_MOVIES_HD/images/LOGO_HD/image.png",Star Movies HD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=6ac6943751e558b181da32727f03dff7:f36e5cd48252bcd0fcda2bfe21f5b365
#EXTVLCOPT:http-user-agent=plaYtv/7.1.5 (Linux;Android 15) ExoPlayerLib/2.11.6 YGX/69.69.69.69
https://jiotvmblive.cdn.jio.com/bpk-tv/Star_Movies_HD_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1110" group-title="JT" tvg-logo="https://xstreamcp-assets-msp.streamready.in/assets/LIVETV/LIVECHANNEL/LIVETV_LIVETVCHANNEL_STAR_MOVIES_SELECT_HD/images/LOGO_HD/image.png",Star Movies Select HD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=b55393cd147a54debaf2b0f2d82b5d9f:6b168db49241a78c1b423ab9a29409ef
#EXTVLCOPT:http-user-agent=plaYtv/7.1.5 (Linux;Android 15) ExoPlayerLib/2.11.6 YGX/69.69.69.69
https://jiotvmblive.cdn.jio.com/bpk-tv/Star_Movies_Select_HD_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1113" group-title="JT" tvg-logo="https://xstreamcp-assets-msp.streamready.in/assets/LIVETV/LIVECHANNEL/LIVETV_LIVETVCHANNEL_STAR_GOLD_SELECT_HD/images/LOGO_HD/image.png",Star Gold Select HD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=2cb38dd5e6235bd9936ad7a29bc7ffd8:281d7b329be4e22d4e0e3e1d508ba2a4
#EXTVLCOPT:http-user-agent=plaYtv/7.1.5 (Linux;Android 15) ExoPlayerLib/2.11.6 YGX/69.69.69.69
https://jiotvmblive.cdn.jio.com/bpk-tv/Star_Gold_Select_HD_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1114" group-title="JT" tvg-logo="https://xstreamcp-assets-msp.streamready.in/assets/LIVETV/LIVECHANNEL/LIVETV_LIVETVCHANNEL_STAR_SPORTS_SELECT_2/images/LOGO_HD/image.png",Star Sports Select 2
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=ec7d009d07aa5cbc81a441880530dfa5:8147983ad7402ebfc222d28b667a196f
#EXTVLCOPT:http-user-agent=plaYtv/7.1.5 (Linux;Android 15) ExoPlayerLib/2.11.6 YGX/69.69.69.69
https://jiotvmblive.cdn.jio.com/bpk-tv/Star_Sports_Select_2_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1115" group-title="JT" tvg-logo="https://img.media.jio.com/tvpimages/30/15/301990_1748034621355_p_medium.jpg",Star Movies
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=e705c9330a935a119021d97c7677ce62:dd306a57de1715b0e1256d5c1737f485
#EXTVLCOPT:http-user-agent=plaYtv/7.1.5 (Linux;Android 15) ExoPlayerLib/2.11.6 YGX/69.69.69.69
https://jiotvmblive.cdn.jio.com/bpk-tv/Star_Movies_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1116" group-title="JT" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/Star_Plus.png",Star Plus
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=3bba2ffaf08b501796c5d9eb431460a4:7a62074c4c46f3b153259526481c02bf
#EXTVLCOPT:http-user-agent=plaYtv/7.1.5 (Linux;Android 15) ExoPlayerLib/2.11.6 YGX/69.69.69.69
https://jiotvmblive.cdn.jio.com/bpk-tv/Star_Plus_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1119" group-title="JT" tvg-logo="https://xstreamcp-assets-msp.streamready.in/assets/LIVETV/LIVECHANNEL/LIVETV_LIVETVCHANNEL_STAR_GOLD_SELECT/images/LOGO_HD/image.png",Star Gold Select
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=09706397be655eb6a26c6ba99b65e6d5:acb1ebe04e2a29fe098d532d7a506846
#EXTVLCOPT:http-user-agent=plaYtv/7.1.5 (Linux;Android 15) ExoPlayerLib/2.11.6 YGX/69.69.69.69
https://jiotvmblive.cdn.jio.com/bpk-tv/Star_Gold_Select_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1123" group-title="JT" tvg-logo="https://xstreamcp-assets-msp.streamready.in/assets/LIVETV/LIVECHANNEL/LIVETV_LIVETVCHANNEL_STAR_SPORTS_SELECT_1/images/LOGO_HD/image.png",Star Sports Select 1
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=ea7985dacbb95f1c9d62e5a1675142e5:39d5910ca04841b5f32bf24623cdae58
#EXTVLCOPT:http-user-agent=plaYtv/7.1.5 (Linux;Android 15) ExoPlayerLib/2.11.6 YGX/69.69.69.69
https://jiotvmblive.cdn.jio.com/bpk-tv/Star_Sports_Select_1_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1125" group-title="JT" tvg-logo="https://xstreamcp-assets-msp.streamready.in/assets/LIVETV/LIVECHANNEL/LIVETV_LIVETVCHANNEL_STAR_GOLD/images/LOGO_HD/image.png",Star Gold
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=940a0a4080f553cab03ec23a2e80cf7c:b162354170b54cb588182eb75681cac0
#EXTVLCOPT:http-user-agent=plaYtv/7.1.5 (Linux;Android 15) ExoPlayerLib/2.11.6 YGX/69.69.69.69
https://jiotvmblive.cdn.jio.com/bpk-tv/Star_Gold_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1127" group-title="JT" tvg-logo="https://xstreamcp-assets-msp.streamready.in/assets/LIVETV/LIVECHANNEL/LIVETV_LIVETVCHANNEL_STAR_BHARAT/images/LOGO_HD/image.png",Star Bharat
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=687cfa6d31645a91ba3c38a9acdfac7c:c035ca584ac0a2170b96e2fa4523f3be
#EXTVLCOPT:http-user-agent=plaYtv/7.1.5 (Linux;Android 15) ExoPlayerLib/2.11.6 YGX/69.69.69.69
https://jiotvmblive.cdn.jio.com/bpk-tv/Star_Bharat_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1132" group-title="JT" tvg-logo="https://xstreamcp-assets-msp.streamready.in/assets/LIVETV/LIVECHANNEL/657978a2c5625a16ee72e905/images/144.webp",Star Plus HD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=6f7b7241b2935a909d389fe318e5baaa:65783311644973348f359dc154bb41db
#EXTVLCOPT:http-user-agent=plaYtv/7.1.5 (Linux;Android 15) ExoPlayerLib/2.11.6 YGX/69.69.69.69
https://jiotvmblive.cdn.jio.com/bpk-tv/Star_Plus_HD_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1136" group-title="JT" tvg-logo="https://xstreamcp-assets-msp.streamready.in/assets/LIVETV/LIVECHANNEL/LIVETV_LIVETVCHANNEL_STAR_UTSAV_MOVIES/images/LOGO_HD/image.png",Star Utsav Movies
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=1faf9c42dfe45669a70c470359886145:5a229a5f6f270c880b24014bf3cd6ee7
#EXTVLCOPT:http-user-agent=plaYtv/7.1.5 (Linux;Android 15) ExoPlayerLib/2.11.6 YGX/69.69.69.69
https://jiotvmblive.cdn.jio.com/bpk-tv/Star_Utsav_Movies_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1141" group-title="JT" tvg-logo="https://xstreamcp-assets-msp.streamready.in/assets/LIVETV/LIVECHANNEL/65797920c5625a16ee72f2d5/images/529.webp",Star Sports 2
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=fc3aafe80845584199a637249fad2ffa:ca4474972fdb4bf8ecb164482853c692
#EXTVLCOPT:http-user-agent=plaYtv/7.1.5 (Linux;Android 15) ExoPlayerLib/2.11.6 YGX/69.69.69.69
https://jiotvmblive.cdn.jio.com/bpk-tv/Star_Sports_2_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1143" group-title="JT" tvg-logo="https://xstreamcp-assets-msp.streamready.in/assets/LIVETV/LIVECHANNEL/LIVETV_LIVETVCHANNEL_STAR_UTSAV/images/LOGO_HD/image.png",Star Utsav
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=63456f11b1bf599a93a6a4b9a76db2bf:b47756e4d8fb938dcbcb72d6d877fbc3
#EXTVLCOPT:http-user-agent=plaYtv/7.1.5 (Linux;Android 15) ExoPlayerLib/2.11.6 YGX/69.69.69.69
https://jiotvmblive.cdn.jio.com/bpk-tv/Star_Utsav_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1142" group-title="JT" tvg-logo="https://xstreamcp-assets-msp.streamready.in/assets/LIVETV/LIVECHANNEL/LIVETV_LIVETVCHANNEL_STAR_SPORTS_1/images/LOGO_HD/image.png",Star Sports 1
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=df20894ec30954d3b28097c138f4cfda:ff9b6292b1cddbd11a046029cb314634
#EXTVLCOPT:http-user-agent=plaYtv/7.1.5 (Linux;Android 15) ExoPlayerLib/2.11.6 YGX/69.69.69.69
https://stream.kliv.fun/allplus11de/jtv/manifest.mpd?id=1142
#EXTINF:-1 tvg-id="" group-title="JT" tvg-logo="",Star Plus HD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=6f7b7241b2935a909d389fe318e5baaa:65783311644973348f359dc154bb41db
#EXTVLCOPT:http-user-agent=plaYtv/7.1.5 (Linux;Android 15) ExoPlayerLib/2.11.6 YGX/69.69.69.69
https://jiotvmblive.cdn.jio.com/bpk-tv/Star_Plus_HD_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="" group-title="JT" tvg-logo="",Star Plus
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=3bba2ffaf08b501796c5d9eb431460a4:7a62074c4c46f3b153259526481c02bf
#EXTVLCOPT:http-user-agent=plaYtv/7.1.5 (Linux;Android 15) ExoPlayerLib/2.11.6 YGX/69.69.69.69
https://jiotvmblive.cdn.jio.com/bpk-tv/Star_Plus_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="" group-title="JT" tvg-logo="",Star Gold HD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=ec7ad3786d9e5efa9e0c4aeb3e58c7b7:907509ccae7e68b30ae75b5d09fe60ef
#EXTVLCOPT:http-user-agent=plaYtv/7.1.5 (Linux;Android 15) ExoPlayerLib/2.11.6 YGX/69.69.69.69
https://jiotvmblive.cdn.jio.com/bpk-tv/Star_Gold_HD_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1151" group-title="JT" tvg-logo="https://xstreamcp-assets-msp.streamready.in/assets/LIVETV/LIVECHANNEL/LIVETV_LIVETVCHANNEL_STAR_GOLD_ROMANCE/images/LOGO_HD/image.png",Star Gold Romance
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=ee6e9f18a6c155e3855700b34fa8436f:b670c81b0e4f7f19f1fbeac0eaa7fba8
#EXTVLCOPT:http-user-agent=plaYtv/7.1.5 (Linux;Android 15) ExoPlayerLib/2.11.6 YGX/69.69.69.69
https://jiotvmblive.cdn.jio.com/bpk-tv/Star_Gold_Romance_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1153" group-title="JT" tvg-logo="https://xstreamcp-assets-msp.streamready.in/assets/LIVETV/LIVECHANNEL/LIVETV_LIVETVCHANNEL_STAR_GOLD_THRILLS/images/LOGO_HD/image.png",Star Gold Thrills
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=189ccd629ff25ec1adc2e34d49b186eb:fd102ddbd3844b55b70c6aa23dbd212b
#EXTVLCOPT:http-user-agent=plaYtv/7.1.5 (Linux;Android 15) ExoPlayerLib/2.11.6 YGX/69.69.69.69
https://jiotvmblive.cdn.jio.com/bpk-tv/Star_Gold_Thrills_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1154" group-title="JT" tvg-logo="https://img.media.jio.com/tvpimages/87/52/302077_1748601853695_p_medium.jpg",Star Gold 2
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=2db0cd9cb0685309b48e322c83192bda:e13bf7a33eb2e19a8f19568dd383ba6d
#EXTVLCOPT:http-user-agent=plaYtv/7.1.5 (Linux;Android 15) ExoPlayerLib/2.11.6 YGX/69.69.69.69
https://jiotvmblive.cdn.jio.com/bpk-tv/Star_Gold_2_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1155" group-title="JT" tvg-logo="https://xstreamcp-assets-msp.streamready.in/assets/LIVETV/LIVECHANNEL/6572f15edc5dfc4403f7be3e/images/914.webp",Star Gold 2 HD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=e6afa4754bc15dd28ab6806f417d319d:6a74ef2884813547109ee96098610387
#EXTVLCOPT:http-user-agent=plaYtv/7.1.5 (Linux;Android 15) ExoPlayerLib/2.11.6 YGX/69.69.69.69
https://jiotvmblive.cdn.jio.com/bpk-tv/Star_Gold_2_HD_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="" group-title="JT" tvg-logo="",MTV HD Plus
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=90d8713ba5e85d779d005b1f14a5bc8d:33650314fe1e945017640ba9878c5de9
#EXTVLCOPT:http-user-agent=plaYtv/7.1.5 (Linux;Android 15) ExoPlayerLib/2.11.6 YGX/69.69.69.69
https://jiotvmblive.cdn.jio.com/bpk-tv/MTV_HD_Plus_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="" group-title="JT" tvg-logo="",Comedy Central HD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=504e18f0dd67537b9aeeb648fd43c5d9:239f71d04f8ba5a8645e155b297fa727
#EXTVLCOPT:http-user-agent=plaYtv/7.1.5 (Linux;Android 15) ExoPlayerLib/2.11.6 YGX/69.69.69.69
https://jiotvmblive.cdn.jio.com/bpk-tv/Comedy_Central_HD_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="" group-title="JT" tvg-logo="",Colors Infinity HD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=509216860f8e594aaf7e921296f53851:536df1e35e2bb055be0117b51db8139c
#EXTVLCOPT:http-user-agent=plaYtv/7.1.5 (Linux;Android 15) ExoPlayerLib/2.11.6 YGX/69.69.69.69
https://jiotvmblive.cdn.jio.com/bpk-tv/Colors_Infinity_HD_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1170" group-title="JT" tvg-logo="",PTC News
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=fee1327252d25521a7bc4b6b28bf66d5:d1527f37e52d4c7382c4b0a6563bbd93
#EXTVLCOPT:http-user-agent=plaYtv/7.1.5 (Linux;Android 15) ExoPlayerLib/2.11.6 YGX/69.69.69.69
https://jiotvmblive.cdn.jio.com/bpk-tv/PTC_News_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1171" group-title="JT" tvg-logo="",PTC Punjabi
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=f6e3179024d4569d97c5ed006ca35d24:1bc377df43561d40f67c36d2d99b18a9
#EXTVLCOPT:http-user-agent=plaYtv/7.1.5 (Linux;Android 15) ExoPlayerLib/2.11.6 YGX/69.69.69.69
https://jiotvmblive.cdn.jio.com/bpk-tv/PTC_Punjabi_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1172" group-title="JT" tvg-logo="",PTC Chake De
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=f80df4e9c1d353759b927b29fddf2f9d:61c2f7fbbd311f782fd547353a02a8d6
#EXTVLCOPT:http-user-agent=plaYtv/7.1.5 (Linux;Android 15) ExoPlayerLib/2.11.6 YGX/69.69.69.69
https://jiotvmblive.cdn.jio.com/bpk-tv/PTC_Chak_De_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1332" group-title="JT" tvg-logo="https://static.wikia.nocookie.net/logaekranowe/images/3/3e/Nat_Geo_Wild_HD_logo.png/revision/latest?cb=20230606211346&path-prefix=pl" group-title="JT", Nat Geo Wild HD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=45fc661aa1af51c98950c43329391d18:c2677c874886e78d24b3fb656c5734e0
#EXTVLCOPT:http-user-agent=plaYtv/7.1.5 (Linux;Android 15) ExoPlayerLib/2.11.6 YGX/69.69.69.69
https://jiotvmblive.cdn.jio.com/bpk-tv/Nat_Geo_Wild_HD_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1335" group-title="JT" tvg-logo="https://preview.redd.it/national-geographic-hd-logo-2016-v0-zyv7w7hi9wye1.png?width=640&crop=smart&auto=webp&s=5ea1a442fc8958e26d222485a068569956d83901" group-title="JT", National Geographic HD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=4b006dd7965e5777a7fa33dd636c2e5d:179f796bdf11b750bebd469a3aeae1d0
#EXTVLCOPT:http-user-agent=plaYtv/7.1.5 (Linux;Android 15) ExoPlayerLib/2.11.6 YGX/69.69.69.69
https://jiotvmblive.cdn.jio.com/bpk-tv/National_Geographic_HD_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1373" group-title="JT" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/Disney_Channel.png",Disney Channel
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=5181d3e6698055578cedc5bfc86b3e56:3dca7917d8cf9bb7095dc72b48bdcd3c
#EXTVLCOPT:http-user-agent=plaYtv/7.1.5 (Linux;Android 15) ExoPlayerLib/2.11.6 YGX/69.69.69.69
https://jiotvmblive.cdn.jio.com/bpk-tv/Disney_Channel_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1374" group-title="JT" tvg-logo="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR_dIWBN9UHRSlehZO7R2Vh2gSVKAS78iRf3Q&s",Disney Junior
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=1b1f9702f7d853c1b198495f64924311:40e11e60a12dd6c154dfea0ffbd5bda8
#EXTVLCOPT:http-user-agent=plaYtv/7.1.5 (Linux;Android 15) ExoPlayerLib/2.11.6 YGX/69.69.69.69
https://jiotvmblive.cdn.jio.com/bpk-tv/Disney_Junior_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1375" group-title="JT" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/Disney_International_HD.png",Disney International HD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=d0e021aa91c65e68a7028c2a6a762eca:d50822403365e360d12840251cecee84
#EXTVLCOPT:http-user-agent=plaYtv/7.1.5 (Linux;Android 15) ExoPlayerLib/2.11.6 YGX/69.69.69.69
https://jiotvmblive.cdn.jio.com/bpk-tv/Disney_International_HD_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="676" group-title="JT" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/Disney_International_HD.png",Nick HD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=50c0ac86d9445b3a855fcabae7538aaf:cf79083218d809d379c2f64acbde561f
#EXTVLCOPT:http-user-agent=plaYtv/7.1.5 (Linux;Android 15) ExoPlayerLib/2.11.6 YGX/69.69.69.69
https://jiotvmblive.cdn.jio.com/bpk-tv/Nick_HD_Plus_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1391" group-title="JT" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/Hungama.png",Hungama
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=454f8353caac500d95d641e0c7cfe048:0aaca46ea0f5096335598781fbe590e4
#EXTVLCOPT:http-user-agent=plaYtv/7.1.5 (Linux;Android 15) ExoPlayerLib/2.11.6 YGX/69.69.69.69
https://jiotvmblive.cdn.jio.com/bpk-tv/Hungama_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1392" group-title="JT" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/Super_Hungama.png",Super Hungama
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=7a450f0820c4589690eb336c29f18da6:820e84119563b56d6e6f0bf514cbdc3c
#EXTVLCOPT:http-user-agent=plaYtv/7.1.5 (Linux;Android 15) ExoPlayerLib/2.11.6 YGX/69.69.69.69
https://jiotvmblive.cdn.jio.com/bpk-tv/Super_Hungama_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1406" group-title="JT" tvg-logo="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTAtheDIFiQ_ik7SNgp9bq9-2oIzLp7ROQVjeVCTnokvw&s=10" group-title="JT", National Geographic
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=053d3a1f8d5e5d759a7cbaa5b9ca7a0d:020e466407e9be52f1884697ef9d9ec9
#EXTVLCOPT:http-user-agent=plaYtv/7.1.5 (Linux;Android 15) ExoPlayerLib/2.11.6 YGX/69.69.69.69
https://jiotvmblive.cdn.jio.com/bpk-tv/National_Geographic_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1450" tvg-name="Colors Cineplex Superhit" group-title="JT" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/Rishtey_Cineplex.png",Colors Cineplex Superhit
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=234f3bf300e75c93a3825d54b1c0520b:53a4b6981fb1872c0ad4d197066e8c1f
https://jiotvmblive.cdn.jio.com/bpk-tv/Rishtey_Cineplex_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1477" tvg-name="Colors Cineplex HD" group-title="JT" tvg-logo="https://jiotvimages.cdn.jio.com/dare_images/images/Color_Cineplex_HD.png",Colors Cineplex HD
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=b9d4acedc66c5660a1e06197a55bccd2:dd53bab1a42f41ae8f0a5c8fd286f456
https://jiotvmblive.cdn.jio.com/bpk-tv/Colors_Cineplex_HD_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="" tvg-name="" group-title="JT" tvg-logo="",Naaptol
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=e0883cabb6c65e4fbe692b7f9aa29217:bbe2e7b7cd0c37bde3c902816276cf82
https://jiotvmblive.cdn.jio.com/bpk-tv/Naaptol_BTS/output/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1780" tvg-name="Hoopla Kidz TV" group-title="JT" tvg-logo="",Hoopla Kidz TV
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=cbd95fc6a9e453f0a47c5765a6a50124:533ca1d6c99de08b40e3110329ed077a
https://jiotvmblive.cdn.jio.com/bpk-tv/Hoopla_Kids_TV_MOB/WDVLive/index.mpd?__hdnea__=st=1772899229~exp=1772985629~acl=/*~hmac=b4a8c1fe89c761e8aa6cc4b9c484c7d54750d47fe99c9af358708c45bb1f41ca
#EXTINF:-1 tvg-id="1795" tvg-name="Jio Live" group-title="JT" tvg-logo="",Jio Live
#KODIPROP:inputstream.adaptive.license_type=clearkey
#KODIPROP:inputstream.adaptive.license_key=a88f5047ab3458b4a662dc31e54f9339:21065f6f0045d1e60fe6e403338a61cc
https://stream.kliv.fun/allplus11de/jtv/manifest.mpd?id=1795