Zipped Album Player (ZAP) - A simple Python-based cross-platform player for the Zipped Album format
Project description
Zipped Album Player (ZAP)
A simple Python-based cross-platform player for the Zipped Album format
Features
- MacOS, Windows and Linux support
- Digital booklet slideshow
- Keyboard navigation (with Vi-like alternatives)
- View presets
- Fullscreen mode
- Zipped Album creation
Installation
ZAP can be installed with pipx:
pipx install Zipped-Album-Player
Note:
ZAP relies on FFmpeg to decode audio. If FFmpeg cannot be found on the system, ZAP will attempt to download a local copy the first time it is started.
Windows
-
Make sure you have Python 3 with Tkinter support installed
If not, install it. For instance with this installer: https://www.python.org/ftp/python/3.10.4/python-3.10.4-amd64.exe
-
Install pipx
python3 -m pip install --user pipx python3 -m pipx ensurepath
-
Install ZAP
pipx install Zipped-Album-Player
MacOS
-
Make sure you have Python 3 with Tkinter support installed
If not, install it. For instance with this installer: https://www.python.org/ftp/python/3.10.4/python-3.10.4-macos11.pkg
-
Install pipx
python3 -m pip install --user pipx python3 -m pipx ensurepath
-
Install ZAP
pipx install Zipped-Album-Player
Note:
On ARM-based Macs you will, for now, still need to have FFmpeg (shared libraries) installed on the system. You can install them, for instance, using Homebrew:
brew install ffmpeg
Linux
-
Make sure you have Python 3 with Tkinter support installed
If not, install it. For instance, on Debian-based distros:
sudo apt install python3 python3-venv python3-pip python3-tk
-
Make sure OpenAL is installed
If not, install it. For instance, on Debian-based distros:
sudo apt install libopenal1
-
Make sure PyMuPDF and ImageTk are installed
If not, install them. For instance, on Debian-based distros:
sudo apt install python3-fitz python3-pil.imagetk
-
Install pipx
python3 -m pip install --user pipx python3 -m pipx ensurepath
-
Install ZAP
pipx install --system-site-packages Zipped-Album-Player
Usage
After successful installation, ZAP can be started with either
zap [--exact] [--create] [PATH]
or
zipped-album-player [--exact] [--create] [PATH]
where the optional PATH
is a Zipped Album file or a directory, and --exact
and --create
are options.
If PATH
is a Zipped Album file and no option is given, ZAP will attempt to
open it.
If PATH is a Zipped Album file and --exact
is given, ZAP will attempt to open
the file in "exact mode", which means ZAP will show all booklets and images in
alphabetic order, will not attempt to try alternative encodings of wrongly
encoded filenames in the ZIP file to match filenames in a playlist, and will
not apply any fixes to track numbering or date tags.
The option --create
has no effect when PATH
is a Zipped Album File.
If PATH
is a directory and --create
is given, ZAP will attempt to create a
Zipped Album file from the content in that directory (see
specification for what
is valid content) and then open the resulting file (in "exact mode" if
--exact
is also given).
If PATH
is a directory and no option is given, ZAP will set the initial
directory of the "Open..." dialogue to that directory.
Keyboard navigation
Play/Pause: ............................. Space ......... or ... Return
Select next track: ...................... Down .......... or ........ j
Select previous track: .................. Up ............ or ........ k
Select first track: ..................... Home .......... or ....... gg
Select last track: ...................... End ........... or ........ G
Seek forward: ........................... Right ......... or ........ l
Seek backward: .......................... Left .......... or ........ h
Seek to beginning: ...................... w ............. or ........ 0
Show next slide: ........................ Shift+Right ... or ........ L
Show previous slide: .................... Shift+Left .... or ........ H
Show first slide: ....................... W ............. or ........ )
Decrease volume: ........................ Shift+Down .... or ........ J
Increase volume: ........................ Shift+Up....... or ........ K
FAQ
-
Where can I find music in a format ZAP plays?
ZAP plays Zipped Albums, a simple one-file format for digital audio. Basically, these are ZIP archives of FLAC or Opus files with an optional digital booklet and playlist. Albums downloaded from Bandcamp in FLAC format, for instance, are compatible, but you can also easily create them yourself from your existing music (using ZAP!).
-
Couldn't you provide simple one-click installers/executables for ZAP?
Yes, I could use something like PyInstaller, and I might do that at some point. For now, however, I think pipx is a good enough solution.
-
Why do I not hear any sound when playing an album in ZAP?
ZAP might have selected the "Silent" audio driver. ZAP relies on either DirectSound (Windows) or OpenAL (MacOS, Linux, Windows) to play back audio. On Windows, DirectSound should be installed by default. On MacOS, OpenAL should be installed by default. On Linux, OpenAL might not be installed by default. Install it with your package manager (for instance on Debian-based distros with
apt install libopenal1
). -
Why is the bit depth of my tracks reported as "24→16 bit"?
When ZAP uses OpenAL, it will resample to 16 bit during playback for tracks with bit depths higher than that, since OpenAL does not support those yet. This process will involve dithering (with moderate noise shaping) to prevent quantization noise. However, since distribution/listening formats do not benefit from bit depths higher than 16, I suggest to obtain properly mastered 16 bit sources when available.
-
Why is the channel count on my 5.1 surround track reported as "6ch→stereo"?
There is currently no mutli-channel support and everything with more than 2 channels is down-mixed to stereo.
-
Why is fullscreen mode only working on the first display in a multi-display setup?
Because Tkinter is not really aware of multiple displays, unfortunately.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file Zipped_Album_Player-0.5.0.tar.gz
.
File metadata
- Download URL: Zipped_Album_Player-0.5.0.tar.gz
- Upload date:
- Size: 179.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4a4e894dfc364de17a4f5a5e9612513a6961c27244e00930fe25bbba90f1355f |
|
MD5 | 88fca4738e45ff4705d802064b0e2439 |
|
BLAKE2b-256 | 4ea11192299cc47dc19a1e7b2bd92b1d0279bcab2f185c41064835e0392e743a |
File details
Details for the file Zipped_Album_Player-0.5.0-py3-none-any.whl
.
File metadata
- Download URL: Zipped_Album_Player-0.5.0-py3-none-any.whl
- Upload date:
- Size: 178.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7929181e0bd5df9b60df5dd478e87ca3d49396943160d534d623481a230a4b0d |
|
MD5 | aa9577a285c83825b124062b5fb52b7e |
|
BLAKE2b-256 | 5dbdea8e51f1265799e0d3b7a9b4081fe1ece249e41f604e64b04547a7d294c1 |