-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPlaylist_Kodi_CLI.php
52 lines (46 loc) · 2.82 KB
/
Playlist_Kodi_CLI.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
<?php
/*
┌─────────────────────────────────────────────────────────────┐
| For More Modules Or Updates Stay Connected to Kodi dot AL |
└─────────────────────────────────────────────────────────────┘
┌───────────┬─────────────────────────────────────────────────┐
│ Product │ Video Provider Streaming HLS Stream Extractor │
│ Version │ v1.0 DEV Multi │
│ Provider │ https://www.streamingvideoprovider.com │
│ Support │ M3U8/VLC/KODI/SMART TV/XTream Codes/Web Players │
│ Licence │ MIT │
│ Author │ Olsion Bakiaj │
│ Email │ TRC4@USA.COM │
│ Author │ Endrit Pano │
│ Email │ INFO@ALBDROID.AL │
│ Website │ https://kodi.al │
│ Facebook │ /albdroid.official/ │
│ Github │ github.com/SxtBox/ │
│ Created │ 20 April 2021 │
│ Modified │ 00:0000:0000 │
└─────────────────────────────────────────────────────────────┘
*/
/*
Generator @ Kodi dot AL Dev Tools
Code For PHP 5/7/8
Tested on PHP/8.0.3
To play the structure Required LiveStreamsPro Addon
Addon Host: https://addons.kodi.al/
Zip Name: https://addons.kodi.al/LiveStreamsPro.zip
HOSTED APIS https://paidcodes.albdroid.al/Streaming_Video_Provider_APIS/
RULES AL: Ky API Eshte Vetem Per Demostrim, Nese Ju e Keqperdorni Do Te Humbisni Komunikimin Me Serverat Tane
RULES EN: This API is For Demonstration Only, If You Misuse It You Will Lose Communication With Our Servers
*/
// Playlist Kodi
error_reporting(0);
set_time_limit(0);
date_default_timezone_set("Europe/Tirane");
$API_HOST = "https://paidcodes.albdroid.al/Streaming_Video_Provider_APIS/";
$PHP_FILE = "Playlist_Kodi.php";
$GET_PARAMAMETER = "?id=";
$STREAM_ID = "585464"; // CHANGE JUST Playlist ID
$API_CALL = $API_HOST. $PHP_FILE . $GET_PARAMAMETER . $STREAM_ID;
$GET_URL = file_get_contents($API_CALL.$_SERVER['QUERY_STRING']);
header('Content-Type: application/xml');
echo $GET_URL;
?>