-
Notifications
You must be signed in to change notification settings - Fork 0
/
player.html
89 lines (82 loc) · 2.97 KB
/
player.html
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
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<title>@PiperPiedBot</title>
<style type="text/css">
html, body {
height: 100%;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
}
.player-list {
margin-top: 20px;
}
.player-list button {
margin: 5px;
padding: 10px 20px;
font-size: 16px;
}
#player-container {
width: 100%;
height: 100%;
display: none; /* Изначально скрыт */
}
</style>
</head>
<body>
<div class="player-list" id="player-list">
<!-- Здесь появятся кнопки для выбора плеера -->
</div>
<div id="player-container">
<!-- Здесь будет iframe на весь экран -->
</div>
<script>
const id = new URLSearchParams(window.location.search).get('id');
const baseURL = 'https://kinobox.tv/api/players/';
const sources = ['Collaps', 'Alloha', 'Hdvb', 'Videocdn', 'Voidboost', 'Kodik'];
const url = id.startsWith('tt')
? `${baseURL}?imdb=${id}&sources=${sources.join(',')}`
: `${baseURL}?kinopoisk=${id}&sources=${sources.join(',')}`;
fetch(url)
.then(response => response.json())
.then(data => {
const availablePlayers = data.filter(item => item.iframeUrl);
if (availablePlayers.length > 0) {
// Отображаем список доступных плееров
const playerList = document.getElementById('player-list');
availablePlayers.forEach((player, index) => {
const button = document.createElement('button');
// Используем источник из данных для названия кнопки
button.textContent = `Плеер ${index + 1} (${player.source})`;
button.onclick = () => loadPlayer(player.iframeUrl);
playerList.appendChild(button);
});
} else {
console.error('Ошибка: фильм или сериал не найден.');
}
})
.catch(error => console.error('Произошла ошибка при выполнении запроса:', error));
function loadPlayer(url) {
// Скрываем список кнопок после выбора
document.getElementById('player-list').style.display = 'none';
// Показываем контейнер с плеером и загружаем iframe
const playerContainer = document.getElementById('player-container');
playerContainer.style.display = 'block';
playerContainer.innerHTML = `<iframe class="iframe" src="${url}" frameborder="0" allowfullscreen="" webkitallowfullscreen="" mozallowfullscreen="" oallowfullscreen="" msallowfullscreen="" seamless></iframe>`;
}
</script>
</body>
</html>