Spaces:
Sleeping
Sleeping
File size: 11,837 Bytes
102f39b e6c8ac6 102f39b e6c8ac6 102f39b e6c8ac6 102f39b e6c8ac6 102f39b e6c8ac6 102f39b e6c8ac6 102f39b e6c8ac6 102f39b e6c8ac6 102f39b e6c8ac6 102f39b e6c8ac6 102f39b e6c8ac6 102f39b e6c8ac6 102f39b e6c8ac6 102f39b e6c8ac6 102f39b e6c8ac6 102f39b e6c8ac6 102f39b e6c8ac6 102f39b e6c8ac6 102f39b e6c8ac6 102f39b e6c8ac6 102f39b e6c8ac6 102f39b e6c8ac6 102f39b e6c8ac6 102f39b e6c8ac6 102f39b e6c8ac6 102f39b e6c8ac6 102f39b e6c8ac6 102f39b e6c8ac6 102f39b e6c8ac6 102f39b e6c8ac6 102f39b e6c8ac6 |
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 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 |
<html>
<head>
<title>V-Pod</title>
<link rel="stylesheet" href="index.css">
<script src="/mpegts.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body>
<div
class="h-screen w-auto grid place-content-center place-items-center overflow-hidden bg-gradient-to-b from-slate-900 to-black"
>
<div x-data="app()" x-init="init()" class="container mx-auto">
<div class="flex w-full pt-16">
<video
id="videoElement"
class="aspect-video mx-auto w-auto border-4 border-slate-900/10 rounded-full"
preload="auto"
muted
autoplay
></video>
</div>
<div class="inset-x-0 bottom-0 pb-4 z-10">
<div class="container mx-auto px-2 opacity-85">
<div class="flex items-center justify-between">
<div
class="flex items-center space-x-4 text-xs focus:cursor-pointer"
>
<template x-for="(chan, index) in channels">
<div
class="text-sm capitalize truncate mr-2"
:class="chan.id === channel.id ? 'font-semibold cursor-pointer text-white' : 'text-slate-100 cursor-pointer hover:underline'"
@click="window.location = `${window.location.origin}/?channel=${chan.id}`"
x-text="chan.label"
>
<span
class="animate-ping absolute inline-flex h-3 w-3 rounded-full bg-blue-500 opacity-75"
></span>
</div>
</template>
</div>
<div class="flex-col justify-center space-y-4 items-center">
<div class="flex items-center justify-center space-x-1 text-lg">
<span>🔴</span>
<a class="text-white font-bold" x-text="'LIVE'"></a>
</div>
<div
class="flex items-center justify-center text-white opacity-80 hover:opacity-100 cursor-pointer"
x-on:click="toggleAudio()"
>
<span x-show="muted">🔇</span>
<span x-show="!muted">🔈</span>
</div>
<div
class="flex items-center justify-center text-white hover:text-white opacity-80 hover:opacity-100 cursor-pointer"
>
<a href="https://vgony.tech">
<svg
xmlns="http://www.w3.org/2000/svg"
class="h-6 w-6"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M17 16l4-4m0 0l-4-4m4 4H7m6 4v1a3 3 0 01-3 3H6a3 3 0 01-3-3V7a3 3 0 013-3h4a3 3 0 013 3v1"
/>
</svg>
</a>
</div>
</div>
</div>
</div>
</div>
<div
id="logo_container"
class="relative grid place-content-center place-items-center gap-2 before:bg-gradient-to-t before:from-teal-500/70 before:via-fuchsia-600 before:to-transparent before:blur-xl before:filter">
>
<h1 class="title text-6xl font-black text-teal-300">VGФЙЧ</h1>
<h2 class="cursive text-6xl font-thin text-fuchsia-500">ҒФЯԐVԐЯ</h2>
</div>
</div>
</div>
<script>
// disable analytics (we don't use VideoJS yet anyway)
window.HELP_IMPROVE_VIDEOJS = false;
</script>
<script
defer
src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js"
></script>
<script src="https://cdn.tailwindcss.com?plugins=forms,typography,aspect-ratio"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/iframe-resizer/4.3.2/iframeResizer.contentWindow.min.js"></script>
<!--<script src="https://vjs.zencdn.net/8.3.0/video.min.js"></script>-->
<script>
function app() {
return {
enabled: false,
channels: {
/*
legacy: {
id: 'legacy',
label: '#older',
audience: 0,
online: false,
visible: false,
url: 'https://jbilcke-hf-media-server.hf.space/live/legacy.flv',
resolution: '576x320',
model: 'zeroscope_v2_576w',
modelUrl: 'https://huggingface.co/cerspense/zeroscope_v2_576w',
},
*/
/*
hdtv: {
id: 'hdtv',
label: '#old',
audience: 0,
online: false,
visible: true,
url: 'https://jbilcke-hf-media-server.hf.space/live/hdtv.flv',
resolution: '1024x576_8FPS',
model: 'zeroscope_v2_XL',
modelUrl: 'https://huggingface.co/cerspense/zeroscope_v2_XL',
},
*/
random: {
id: "random",
label: "#random",
audience: 0,
online: false,
visible: true,
url: "https://jbilcke-hf-media-server.hf.space/live/random.flv",
resolution: "1024x576_24FPS",
model: "zeroscope_v2_XL",
modelUrl: "https://huggingface.co/cerspense/zeroscope_v2_XL",
},
comedy: {
id: "comedy",
label: "#comedy",
audience: 0,
online: false,
visible: true,
url: "https://jbilcke-hf-media-server.hf.space/live/comedy.flv",
resolution: "1024x576_24FPS",
model: "zeroscope_v2_XL",
modelUrl: "https://huggingface.co/cerspense/zeroscope_v2_XL",
},
documentary: {
id: "documentary",
label: "#documentary",
audience: 0,
online: false,
visible: true,
url: "https://jbilcke-hf-media-server.hf.space/live/documentary.flv",
resolution: "1024x576_24FPS",
model: "zeroscope_v2_XL",
modelUrl: "https://huggingface.co/cerspense/zeroscope_v2_XL",
},
},
muted: true,
initialized: false,
activityTimeout: null,
defaultChannelId: "random",
video: null,
channel: {},
wakeUp() {
this.showToolbar = true;
},
toggleAudio() {
if (this.video.muted) {
this.video.muted = false;
this.muted = false;
} else {
this.video.muted = true;
this.muted = true;
}
},
async checkAudience() {
let audience = {};
try {
const res = await fetch("/stats");
audience = await res.json();
} catch (err) {
console.log("failed to check the audience, something is wrong");
}
window.DEBUGME = Object.entries(this.channels);
this.channels = Object.entries(this.channels).reduce(
(acc, [channel, data]) => (
console.log("debug:", {
...data,
audience: audience[channel] || 0,
}),
{
...acc,
[channel]: {
...data,
audience: audience[channel] || 0,
},
}
),
{}
);
this.channel = this.channels[this.channel.id];
},
fullscreen() {
if (this.video.requestFullscreen) {
this.video.requestFullscreen();
} else if (this.video.mozRequestFullScreen) {
this.video.mozRequestFullScreen();
} else if (this.video.webkitRequestFullscreen) {
this.video.webkitRequestFullscreen();
} else if (this.video.msRequestFullscreen) {
this.video.msRequestFullscreen();
}
},
init() {
if (this.initialized) {
console.log("already initialized");
return;
}
this.initialized = true;
console.log("initializing..");
const urlParams = new URLSearchParams(window.location.search);
const requestedChannelId = `${
urlParams.get("channel") || "random"
}`;
this.enabled = true;
// this.enabled = `${urlParams.get('beta') || 'false'}` === 'true'
if (!this.enabled) {
return;
}
this.video = document.getElementById("videoElement");
const defaultChannel = this.channels[this.defaultChannelId];
this.channel = this.channels[requestedChannelId] || defaultChannel;
console.log(`Selected channel: ${this.channel.label}`);
console.log(`Stream URL: ${this.channel.url}`);
const handleActivity = () => {
this.wakeUp();
};
handleActivity();
this.checkAudience();
setInterval(() => {
this.checkAudience();
}, 1000);
// detect mute/unmute events
this.video.addEventListener("mute", () => {
this.muted = true;
});
this.video.addEventListener("unmute", () => {
this.muted = false;
});
// as a bonus, we also allow fullscreen on double click
this.video.addEventListener("dblclick", () => {
this.fullscreen();
});
// some devices such as the iPhone don't support MSE Live Playback
if (mpegts.getFeatureList().mseLivePlayback) {
var player = mpegts.createPlayer({
type: "flv", // could also be mpegts, m2ts, flv
isLive: true,
url: this.channel.url,
});
player.attachMediaElement(this.video);
player.on(mpegts.Events.ERROR, function (err) {
console.log("got an error:", err);
if (err.type === mpegts.ErrorTypes.NETWORK_ERROR) {
console.log("Network error");
}
});
player.load();
// due to an issue with our stream when the FFMPEG playlist ends,
// the stream gets interrupted for ~1sec, which causes the frontend to hangs up
// the following code tries to restart the page when that happens, but in the long term
// we should fix the issue on the server side (fix our FFMPEG bash script)
this.video.addEventListener(
"ended",
function () {
console.log("Stream ended, trying to reload...");
setTimeout(() => {
console.log("Reloading the page..");
// Unloading and loading the source again isn't enough it seems
// player.unload()
// player.load()
window.location.reload();
}, 1200);
},
false
);
// Handle autoplay restrictions.
let promise = this.video.play();
if (promise !== undefined) {
this.video.addEventListener("click", function () {
this.video.play();
});
}
player.play();
}
},
};
}
</script>
</body>
</html>
|