thejagstudio commited on
Commit
e3b545a
1 Parent(s): ab39600

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +23 -21
index.html CHANGED
@@ -1,24 +1,26 @@
1
  <!DOCTYPE html>
2
  <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>
13
- You can modify this app directly by editing <i>index.html</i> in the
14
- Files and versions tab.
15
- </p>
16
- <p>
17
- Also don't forget to check the
18
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank"
19
- >Spaces documentation</a
20
- >.
21
- </p>
22
- </div>
23
- </body>
 
24
  </html>
 
 
1
  <!DOCTYPE html>
2
  <html>
3
+ <head>
4
+ <title>Page Title</title>
5
+ <script src="https://cdn.tutorialjinni.com/hls.js/1.2.1/hls.min.js"></script>
6
+ </head>
7
+ <body>
8
+
9
+ <video id="video"
10
+ width='100%' height='360px' controls autoplay
11
+ src="https://prod-sports-hin.jiocinema.com/hls/live/2100323/hd_akamai_iosmob_avc_hin_ipl_s1_m1020424/master.m3u8?hdnts=st=1712076373~exp=1712083573~acl=/*~id=6973cf176fda4c1c84a968e86b4691a4~data=rqId=12a59714-b944-446b-8051-4cd70f9ec466~hmac=0e4245f4cb45a3f88bba5a75bb2e94264b30174ee1530c4a739659119be3ad63&ads.deviceid=7bbb32bb-4803-4c8b-9edb-7ac10e08877a&ads.dvb=&ads.device_model=&ads.platform=dweb&ads.os=windows&ads.avr=24.03.31.0-a3be549&ads.app_lang=Hindi&ads.country=IN&ads.state=Gujarat&ads.city=Ahmedabad&ads.user_id=6973cf17-6fda-4c1c-84a9-68e86b4691a4&ads.user_subscription_state=false&ads.ctid=3931754&ads.content_title=Royal%20Challengers%20Bengaluru%20vs%20Lucknow%20Super%20Giants&ads.shnm=TATA%20IPL&ads.tnid=3931754&ads.tnm=TATA%20IPL%202024&ads.mtnm=Royal%20Challengers%20Bengaluru%20vs%20Lucknow%20Super%20Giants&ads.mtnumber=15&ads.episode_no=0&ads.gnr=Sports&ads.lang=Hindi&ads.feed_type=LIVECHANNEL&ads.video_type=LINEAR&ads.ip4=0.0.0.0&ads.ip6=0.0.0.0&ads.device_type=Desktop&ads.device_width=946&ads.device_height=742&ads.network_type=mobile&ads.network_carrier=NA&ads.subs_plan=free&ads.pin_code=382007&ads.latitude=23.2&ads.longitude=72.65&ads.orientation=landscape&ads.is4k=false&ads.content_restriction_level=18&ads.screen_name=player&ads.lat=23.2&ads.asnname=&ads.external_creative_id=&ads.advertiser_id=&ads.mol_impression_id=&ads.chip_name=For%20You&ads.bnm=&ads.cohort_c1=GHOP&ads.maturity_rating=U&ads.sbu=S18">
12
+ </video>
13
+ <script>
14
+ if (Hls.isSupported()) {
15
+ var video = document.getElementById('video');
16
+ var hls = new Hls();
17
+ hls.loadSource(video.src);
18
+ hls.attachMedia(video);
19
+ }else{
20
+ alert("Cannot stream HLS, use another video source");
21
+ }
22
+ </script>
23
+
24
+ </body>
25
  </html>
26
+