-
Notifications
You must be signed in to change notification settings - Fork 17
/
Clappr_Player_Plus.php
62 lines (53 loc) · 2.7 KB
/
Clappr_Player_Plus.php
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
<?php
/*
┌─────────────────────────────────────────────────────────────┐
| For More Modules Or Updates Stay Connected to Kodi dot AL |
└─────────────────────────────────────────────────────────────┘
┌───────────┬─────────────────────────────────────────────────┐
│ Product │ zee5.com Stream Extractor By HLS Url │
│ Version │ v1.4-DEV │
│ Provider │ https://www.zee5.com │
│ Support │ M3U8/VLC/KODI/SMART TV/XTream Codes/Web Players │
│ Licence │ MIT │
│ Author │ Olsion Bakiaj │
│ Email │ [email protected] │
│ Author │ Endrit Pano │
│ Email │ [email protected] │
│ Website │ https://kodi.al │
│ Facebook │ /albdroid.official/ │
│ Github │ github.com/SxtBox/ │
│ Created │ 11 August 2020 │
│ Modified │ 18 August 2020 │
└─────────────────────────────────────────────────────────────┘
*/
// HOSTED VERSION APIS https://paidcodes.albdroid.al/ZEE5_Dot_Com_Apis/
error_reporting(0);
set_time_limit(0);
date_default_timezone_set("Europe/Tirane");
/*
Generator @ Kodi dot AL Dev Tools
Code For PHP 5/7
*/
$API_HOST = "https://paidcodes.albdroid.al/ZEE5_Dot_Com_Apis/";
$API_PATH = "";
$PHP_FILE = "Clappr_Player_Plus.php";
// CHANGE ONLY M3U URL FROM HERE
$HLS_URL = "https://z5ams.akamaized.net/andflix/index.m3u8";
$API_CALL = $API_HOST. $API_PATH . $PHP_FILE . "?url=" . $HLS_URL;
?>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Live TV Albdroid Streaming V1.4-DEV</title>
<link rel="shortcut icon" href="favicon.ico"/>
<link rel="icon" href="favicon.ico"/>
</head>
<style type="text/css">
body,td,th {
color: #0F0;
}
body {
background-color: #000;
}
</style>
<iframe style='width:100%; height:100%' frameborder=0 src='<?php echo $API_CALL; ?>' title='Albdroid Streaming' allowfullscreen></iframe>