Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
Zenamp-Portable.zip | 2025-09-14 | 26.6 MB | |
Zenamp.msi | 2025-09-14 | 16.7 MB | |
Zenamp.msix | 2025-09-14 | 27.2 MB | |
README.md | 2025-09-14 | 2.8 kB | |
Release v88 source code.tar.gz | 2025-09-14 | 6.1 MB | |
Release v88 source code.zip | 2025-09-14 | 6.2 MB | |
Totals: 6 Items | 82.8 MB | 0 |
Stable Release
Version: 1.0.88
Commit: [be52b0]
Build: [#88]
Downloads
- Zenamp.msi - Windows installer with uninstall support and file associations
- Zenamp.msix - Modern Windows package for Microsoft Store deployment
- Zenamp-Portable.zip - Portable version (no installation required)
What's Inside
- Multi-format playback: WAV, MP3, OGG, FLAC, MIDI, AIFF, OPUS
- OPL3 MIDI synthesis for authentic retro sound
- Complete playback controls with queue management
- Volume control (10% to 300%)
- Progress tracking with timestamps
- GTK3 interface for modern desktop integration
Silent Installation Support
For MS Store and automated deployments:
:::cmd
# Silent install with all features (MSI)
msiexec /i Zenamp.msi /quiet /norestart ASSOCIATE_FILES=1 DESKTOP_SHORTCUT=1
# Silent install without file associations (MSI)
msiexec /i Zenamp.msi /quiet /norestart ASSOCIATE_FILES=0 DESKTOP_SHORTCUT=0
# Silent uninstall (MSI)
msiexec /x Zenamp.msi /quiet /norestart
# Install MSIX (PowerShell as Admin)
Add-AppxPackage -Path "Zenamp.msix"
# Uninstall MSIX (PowerShell as Admin)
Remove-AppxPackage -Package "JasonHall.Zenamp"
Command-line Properties (MSI only):
- ASSOCIATE_FILES=1
- Enable file associations (default: 1)
- DESKTOP_SHORTCUT=1
- Create desktop shortcut (default: 1)
- INSTALLFOLDER="C:\Program Files\Zenamp"
- Custom install path
Package Comparison
Feature | MSI | MSIX | Portable |
---|---|---|---|
Installation Required | Yes | Yes | No |
File Associations | ✅ | ✅ | ❌ |
Start Menu Integration | ✅ | ✅ | ❌ |
Auto-Update Support | ❌ | ✅ | ❌ |
Microsoft Store Ready | ❌ | ✅ | ❌ |
Enterprise Deployment | ✅ | ✅ | ✅ |
Sandboxed | ❌ | ✅ | ❌ |
Traditional Uninstall | ✅ | ✅ | ❌ |
Technical Details
- Built on: Linux (Fedora 41 container)
- MSI compiled on: Windows Latest
- MSIX compiled on: Windows Latest
- Embedded Icon: Icon properly embedded in executable
- Version Information: Full version details embedded
- GTK3 runtime included
- All dependencies bundled
- Cross-compiled with MinGW
File Association Support
When file associations are enabled during installation: - WAV - Windows Audio files - MP3 - MPEG Audio Layer 3 - OGG - Ogg Vorbis files - FLAC - Free Lossless Audio Codec - MIDI - Musical Instrument Digital Interface (.mid/.midi) - AIFF - Audio Interchange File Format (.aiff/.aif) - OPUS - Royalty-free lossy audio codec - M3U - Audio playlist files
Right-click any supported audio file or playlist and select "Open with Zenamp" or "Play with Zenamp"!
Built with GitHub Actions