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.5.tar.gz (9.7 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.5-py3-none-any.whl (8.4 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: pelican_plugin_music-0.1.5.tar.gz
  • Upload date:
  • Size: 9.7 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.5.tar.gz
Algorithm Hash digest
SHA256 8c3350cf5a34b4b65369130d160566798715ecd56484c6a190ece5d2c1000010
MD5 266384d3f7b4d5c600824052389207ef
BLAKE2b-256 56d23a4552d09038d869d9fe45ba60c42af5b3b1510d3ef0821611ea321342ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for pelican_plugin_music-0.1.5.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.5-py3-none-any.whl.

File metadata

File hashes

Hashes for pelican_plugin_music-0.1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 7867c28118faee7dd2cc49ef382618e3d2836f51d717b42b499fff0256cc1e36
MD5 3d7b630f8ed206f2e7bad0910700d86a
BLAKE2b-256 7a9f3e773f39efe8c09b1f34f99ec0a7f814755433a7b063a34247b6a67ca005

See more details on using hashes here.

Provenance

The following attestation bundles were made for pelican_plugin_music-0.1.5-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