Home

Awesome

<div align="center">

Festival

<img src="assets/images/icon/512.png" width="10%"/>

CI

Festival is a music player for local album collections.

https://github.com/hinto-janai/festival/assets/101352116/586e37e7-762d-4dc6-a9c4-9bdc45396961

</div>

Documentation

See documentation at https://docs.festival.pm/gui.

Comparison

For a comparison between Festival and other music players, see comparison/.

Build

<details> <summary>General Info</summary>

You need cargo and at least rustc 1.70.

You also need to clone the submodules that include patched libraries found in external/:

git clone --recursive https://github.com/hinto-janai/festival

The built binary is found in target/release/festival[.exe] by default.


</details> <details> <summary>Linux</summary>

The pre-compiled Linux binaries are built on Ubuntu 20.04, you'll need these packages to build:

sudo apt install build-essential pkg-config libdbus-1-dev libpulse-dev libgtk-3-dev

To build the latest stable release:

git checkout gui-v1.4.0
cargo build --release

</details> <details> <summary>macOS</summary>

To build the latest stable release:

git checkout gui-v1.4.0
cargo build --release

</details> <details> <summary>Windows</summary>

To build the latest stable release:

git checkout gui-v1.4.0
cargo build --release

There is a build.rs file in gui/ solely for Windows-specific things:

  1. It sets the icon in File Explorer
  2. It sets some miscellaneous metadata
  3. It statically links VCRUNTIME140.dll (the binary will not be portable without this)

</details>

License

Festival is licensed under the MIT License.

However, its dependency tree includes many other licenses.

FAQ

<details> <summary>Compilations</summary>

Festival does not directly support compilations (a single album, but with various artists) at the moment.

It will still load the album, but it will be spread out for each different artist.


</details> <details> <summary>Missing music</summary>

Your audio files must have proper metadata for Festival to detect it.

The required tags are:

If the song title tag does not exist, the filename will be used instead.

For more details on metadata related errors, start Festival in a console:

./festival

and look for yellow W (Warn) log messages during a Collection reset.


</details> <details> <summary>Missing album art</summary>

If your audio file has embedded album art, Festival will use it.

If no embedded album art metadata is found, Festival will:

If an image file is not found, a default ? album art will be used.

The supported image file formats are:


</details> <details> <summary>Missing date</summary>

Festival will look for a date metadata tag generally resembling the YYYY-MM-DD format.

Some examples of dates that will work:

As long as the year exists, the date will be parsed correctly. This means MM-DD metadata will be not parsed, so:

will not work. These will show up as ????-??-?? in Festival.

To fix your music metadata, see below for metadata editors.


</details> <details> <summary>Metadata editing</summary>

Festival is only a music player, not a metadata editor.

Some metadata editors you could use:


</details> <details> <summary>Supported audio codecs</summary>

The supported audio codecs are:


</details> <details> <summary>Supported metadata formats</summary>
FormatStatus
ID3v1Great
ID3v2Great
ISO/MP4Great
RIFFGreat
Vorbis comment (FLAC)Perfect
Vorbis comment (OGG)Perfect

</details>