Basic-Video-Player / index.html
thejagstudio's picture
Update index.html
b79a7e2 verified
raw
history blame contribute delete
No virus
1.98 kB
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<script src="https://cdn.tutorialjinni.com/hls.js/1.2.1/hls.min.js"></script>
</head>
<body>
<video id="video"
width='100%' controls autoplay
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">
</video>
<script>
if (Hls.isSupported()) {
var video = document.getElementById('video');
var hls = new Hls();
hls.loadSource(video.src);
hls.attachMedia(video);
}else{
alert("Cannot stream HLS, use another video source");
}
</script>
</body>
</html>