- Git Bash from https://gitforwindows.org/
- (initialized) miniforge3 from https://conda-forge.org/download/
- Gstreamer MSVC "runtime" and "development" packages from https://gstreamer.freedesktop.org/download/#windows
- Set
C:\gstreamer\1.0\msvc_x86_64
to$GSTREAMER_DIR
- Add
C:\gstreamer\1.0\msvc_x86_64\bin
to$PATH
- Add
C:\gstreamer\1.0\msvc_x86_64\lib
to$PATH
- Set
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function loadResource(type, sources) { | |
let index = 0; | |
function tryLoad() { | |
if (index >= sources.length) { | |
console.error(`${type.toUpperCase()} load failed.`); | |
return; | |
} | |
let el = type === 'js' ? document.createElement('script') : document.createElement('link'); |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Apply custom scrollbar styles */ | |
#content-list::-webkit-scrollbar { | |
width: 6px; /* Width of the scrollbar */ | |
} | |
#content-list::-webkit-scrollbar-thumb { | |
background-color: rgba(255, 255, 255, 0.3); /* Color of the scrollbar thumb */ | |
border-radius: 3px; /* Round edges for the scrollbar */ | |
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Stream Viewer</title> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/shaka-player/4.12.5/shaka-player.compiled.js"></script> | |
<script src="https://cdn.tailwindcss.com"></script> | |
</head> | |
<body class="bg-gray-950 text-gray-200 min-h-screen flex flex-col items-center justify-center p-4"> |
NewerOlder