Skip to main content

Music plugin for Pelican

Project description

Music Pelican plugin

Use music to add a musical track or an album to an article with pelican. Music tracks are copied from an organized bucket of albums (as directories) you want to relate to in your pages.

Demo

You can see a demo pelican generated article here: http://noise.rocks/~ben/parler.html

How to install and configure

The plug-in requires taglib: a Python library for manipulating audio tags, which installation is outside the scope of this document.

The plug-in scans the referred tracks, and generates html presentation for albums and tracks with audio, based on the following configuration:

MUSIC_LIBRARY = "~/your_music_directory" : Absolute path to the folder where the original music tracks are kept, optionally organized in sub-folders (mandatory if you publish album).

MUSIC_COVER = cover.jpg : For music in albums or playlist folders, album cover image filename for the album or the playlist. The cover file would typically be a generic filename such as cover.jpg.

The plug-in automatically creates two objects types that you can use in your template for each album (or playlist) folder, taking information from each audio track inside it and publishes the audio tracks folders to the following output folder:

    ./output/music

The plug-in creates tag cache files in the MUSIC_LIBARY directory, therefore, album and tracks information are only done once. If you want to regenerate tags, just remove the .tags files from your music library.

How to use

If you publish albums or playlists (and you certainy may want to), you must maintain an organized library of audio tracks sorted by their filename somewhere on disk, using folders to group tracks of the same album or same playlist (or topic).

  • To get a single object music_album usable in your template, add the metadata field album: {music}/folder{Optional Name} to an article. This will scan for the designated folder. An article must not refer to multiple albums.
  • To get a single object music_track usable in your template, add the metadata field track: {music}/folder/track.ogg to an article. This will scan for the designated audio file. You must not refer to multiple tracks. Use an album: header instead to refer to multiple tracks sorted by filename in the designed folder.

Here is an example Markdown article that shows all use cases:

title: My Best Compositions
album: {music}/favorites{Favorites}   <= an album (music_album available)
track: {music}/favorites/featured.ogg <= a track (music_track available)

Here are my *best* compositions, played with my favorite synth:
[Aria]({music}/firstalbum/aria.ogg).
[Sonata]({music}/secondone/sonata.ogg).

your Jinja template can display the full album and cover, and the specific track, all with HTML5 <audio> markups (see Demo).

How to change the Jinja templates

The plugin provides the following variables to your templates:

article.music_track : For articles with an associated track, a dict with the following information:

  • The artist of the track. (from tag)
  • The album of the track. (from tag)
  • The title of the track. (from tag)
  • The track number of the track (from tag)
  • The year of the track (from tag)
  • The path of the default cover image.
  • The filename of the original track.

For example, modify the template article.html as shown below to display the associated track cover before the article content:

<div class="entry-content">
	{% if article.music_track %}<img src="{{ SITEURL }}/{{ article.music_track.cover }}" />{% endif %}
	{% include 'article_infos.html' %}
	{{ article.content }}
</div><!-- /.entry-content -->

article.music_album : For articles with an album or a playlist, a dict of the album information is available with a title field and a tracks field having a list of tracks as shown above.

For example, add the following to the template article.html to add the album as the end of the article:

{% if article.music_album %}
<div class="album">
		<h1>{{ album.title }}</h1>
		<ol>
		{% for track in album.tracks %}
			<li>
				<a href="{{ SITEURL }}/{{ track.path }}" title="{{ track.title }}">{{ track.title }}</a><audio src="{{ SITEURL }}/{{ track.path }}">
			</li>
		{% endfor %}
		</ol>
</div>
{% endif %}

For example, add the following to the template index.html, inside the entry-content, to display the cover with a link to the article:

{% if article.music_track %}<a href="{{ SITEURL }}/{{ article.url }}"><img src="{{ SITEURL }}/{{ article.music_track.cover }}"
	style="display: inline; float: right; margin: 2px 0 2ex 4ex;" /></a>
{% endif %}

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pelican_plugin_music-0.1.tar.gz (9.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pelican_plugin_music-0.1-py3-none-any.whl (8.4 kB view details)

Uploaded Python 3

File details

Details for the file pelican_plugin_music-0.1.tar.gz.

File metadata

  • Download URL: pelican_plugin_music-0.1.tar.gz
  • Upload date:
  • Size: 9.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pelican_plugin_music-0.1.tar.gz
Algorithm Hash digest
SHA256 9c0372dea692b1bceec1da5256d6a788ee95cdebe8e89d7f4a0c3f2b961239f4
MD5 8f2159afbeb1b00e8693c3f45c94edca
BLAKE2b-256 ed6da8bdf56d601cc682d000afef80cbc3a1c21386b0331cd89b8474d65b72ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for pelican_plugin_music-0.1.tar.gz:

Publisher: python-publish.yml on be1/pelican_plugin_music

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pelican_plugin_music-0.1-py3-none-any.whl.

File metadata

File hashes

Hashes for pelican_plugin_music-0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 27c275c8d18feec02eb80072a37bd892daadbc0c332632922e3904c06d0331ee
MD5 f8315a4362235c147341af8bf2977d44
BLAKE2b-256 d96fddd9d3088ad1a2ccc7c1f92f39fa3082752bddc7f1c650f36958d6d939ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for pelican_plugin_music-0.1-py3-none-any.whl:

Publisher: python-publish.yml on be1/pelican_plugin_music

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page