Zilla - is a minimalist web player that works completely without subscriptions or hidden fees with offline!
Go to zilla: https://reversedir.github.io/zila/index.html
How do I go offline?
- Open Zilla in your browser
- Go to Settings -> Go to local
- Approximate size (~1 GB, most of it MP3)
- Enjoy music anytime, even without internet access
Hmmm?
- For those who want to listen to music without monthly payments
- For travelers and those with unstable internet
- For minimalists who value simple and functional solutions
- Completely anonymous: no login, email, or phone number required. All data is stored and processed exclusively on the client side
How clone it project? (it's not easy)
- Download 100-15000 mp3 (with tag: artist, title, genre, cover image)
- Open local add.html or goto
/zila/add.html - Select all mp3 files, you get audio.zip
- Throw all .jpg and .mp3 files and audio.js in /audio folder
- Run index.html
Advance info .mp3 to .opus with use ffmpeg and .ps1 (powershell script)
$currentDirectory = $PWD.Path
$outputRoot = Join-Path $currentDirectory "render"
if (-not (Test-Path $outputRoot)) { New-Item -ItemType Directory -Path $outputRoot | Out-Null }
$oldvids = Get-ChildItem -Include *.mp3 -Recurse
foreach ($vid in $oldvids) {
$newvid1 = Join-Path $outputRoot ([io.path]::ChangeExtension($vid.Name, 'opus'))
ffmpeg -i $vid.FullName -c:a libopus -b:a 48k $newvid1
$oldvid = ($vid.FullName).SubString($currentDirectory.Length + 1)
}