Skip to content

Commit

Permalink
Improve readability of lyrics.
Browse files Browse the repository at this point in the history
Lyrics are now all in capitals and have a music icon next to them.
  • Loading branch information
ZingyTomato committed May 27, 2022
1 parent 466fea5 commit b94b7db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion harmony/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ def lyricsToVtt(query):
file.write("\n")
file.write(f"{parseTime(v['seconds'])} --> {parseTime(data[i + 1]['seconds'])}")
file.write("\n")
file.write(f"{v['lyrics']}")
file.write(f"{v['lyrics']} ♪".upper())
file.write("\n")
except IndexError:
return
Expand Down

0 comments on commit b94b7db

Please sign in to comment.