Add public/videos.js

This commit is contained in:
2026-06-22 16:25:11 +00:00
parent 5bffb542c2
commit 076badce68

30
public/videos.js Normal file
View File

@@ -0,0 +1,30 @@
window.PLAYER_CONFIG = {
defaultVolume: 0.3,
localStorageVolumeKey: "vpref",
localStorageMutedKey: "mpref",
videos: [
{
src: "https://s1ne.com/buttery-stealthx.webm",
chance: 50
},
{
src: "https://s1ne.com/saleh-stealthx.mp4",
chance: 50
}
/*
Local video example:
1. Create:
public/videos/my-video.mp4
2. Add:
{
src: "/videos/my-video.mp4",
chance: 100
}
*/
]
};