songs2slides

A tool that automatically finds song lyrics and creates lyric slideshows
git clone https://git.ashermorgan.net/songs2slides/
Log | Files | Refs | README

commit b81f8e9e2dcd0ace6b66ba7b074b42195198ba87
parent cd4a53ff221a5c3214f8346ff35e1bcd07703581
Author: AsherMorgan <59518073+AsherMorgan@users.noreply.github.com>
Date:   Thu, 16 Apr 2020 09:54:22 -0700

Implement title slides.

Diffstat:
MSongs2Slides.py | 2++
Msettings.json | 1+
2 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/Songs2Slides.py b/Songs2Slides.py @@ -127,6 +127,8 @@ if (__name__ == "__main__"): # Get song lyrics try: + if (settings["title-slides"]): + lyrics += ["{0}\n{1}".format(title, artist)] lyrics += ParseLyrics(GetLyrics(artist, title), settings) if (lyrics[-1] != ""): lyrics += [""] diff --git a/settings.json b/settings.json @@ -1,4 +1,5 @@ { + "title-slides": true, "lines-per-slide": 4, "slide-width": 13.333,