Choir Parts
Songlist
Table of Contents
- /assets/audio/January-26-2025
- -322-Thanks-Be-for-These---Tenor.mp3
- -322-Thanks-Be-for-These---Soprano.mp3
- -322-Thanks-Be-for-These---Bass.mp3
- Ave-Maria---Stanza-1-to-m.24.mp3
- -27-I-Am-That-Great...---Alto.mp3
- -322-Thanks-Be-for-These---Alto.mp3
- -27-I-Am-That-Great....---Bass.mp3
- -27-I-Am-That-Great...---Soprano.mp3
- -27-I-Am-That-Great...---Tenor.mp3
- /assets/audio/February-23-2025
- /assets/audio/November-17
- /assets/audio/November-3
- /assets/audio/February-9
/assets/audio/January-26-2025
-322-Thanks-Be-for-These---Tenor.mp3
-322-Thanks-Be-for-These---Soprano.mp3
-322-Thanks-Be-for-These---Bass.mp3
Ave-Maria---Stanza-1-to-m.24.mp3
-27-I-Am-That-Great...---Alto.mp3
-322-Thanks-Be-for-These---Alto.mp3
-27-I-Am-That-Great....---Bass.mp3
-27-I-Am-That-Great...---Soprano.mp3
-27-I-Am-That-Great...---Tenor.mp3
/assets/audio/February-23-2025
CR-27-The-Wisdom-of-the-Ancients---Alto.mp3
CR-27-The-Wisdom-of-the-Ancients---Soprano-1.mp3
Life-Calls-Us-On---Bass.mp3
Life-Calls-Us-On---Tenor.mp3
Woyaya---Pt.1-Bass-&-Alto.mp3
Life-Calls-Us-On---Soprano.mp3
Life-Calls-Us-On---Solos.mp3
CR-27-The-Wisdom-of-the-Ancients---Bass.mp3
/assets/audio/November-17
Creation-of-Peace---Tenor.mp3
Creation-of-Peace---Bass.mp3
/assets/audio/November-3
Vote-Your-Dream---All-parts.mp3
Stand-Upon-the-Rock!---Soprano-2.mp3
Stand-Upon-the-Rock!---Tenor.mp3
/assets/audio/February-9
I-Have-a-Dream---Baritone.mp3
CR-31-Whatsoever-Things-Are-Pure-&-Just---Baritone.mp3
-1074-Turn-the-World-Around---Alto.mp3
-1074-Turn-the-World-Around---Soprano-&-Tenor.mp3
I-Have-a-Dream---Soprano-1.mp3
-1074-Turn-the-World-Around---Bass.mp3
To help me easily find parts as recorded,
<!-- Example audio embedding -->
<audio controls>
<source src="path/to/audio.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
To find all audio files in a directory,
find ./assets/audio -mindepth 1
# $ find ./assets/audio -mindepth 1
# ./assets/audio/Life Calls Us On - Bass.wav
# ./assets/audio/CR#27 The Wisdom of the Ancients - Bass.wav
# ./assets/audio/Woyaya - Pt.1 Bass & Alto.wav
shell / python script (bash python -c “…”) to generate the html, from the output of the find command,
find ./assets/audio -mindepth 1 | python3 -c "
import sys
files = [line.strip() for line in sys.stdin]
for file in files:
# Remove the leading . from the path
_period, file = file.split('.', maxsplit=1)
song_name = file.split('/')[-1]
if song_name in ['.DS_Store']:
continue
# Folder name, not a song
if '.mp3' not in song_name:
print(f'<h3>{song_name}</h3>')
continue
print(f'''
<p>
{song_name}
</p>
<audio controls>
<source src=\"{file}\" type=\"audio/mpeg\">
Your browser does not support the audio element.
</audio>
<br>
''')
"
# # Copy the output to the clipboard
# | pbcopy
New
find ./assets/audio -mindepth 1 | ./scripts/generate_song_list.py # | pbcopy
Example output,
<p>
Life Calls Us On - Bass.wav
</p>
<audio controls>
<source src="/assets/audio/Life Calls Us On - Bass.wav" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<br>
<p>
CR#27 The Wisdom of the Ancients - Bass.wav
</p>
<audio controls>
<source src="/assets/audio/CR_27 The Wisdom of the Ancients - Bass.wav" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<br>
<p>
Woyaya - Pt.1 Bass & Alto.wav
</p>
<audio controls>
<source src="/assets/audio/Woyaya - Pt.1 Bass & Alto.wav" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<br>
The result:
Next Steps
- Add a search bar
- Add more music
- Add the other parts
- Compress MP3s for faster loading / better storage
Compression
required basically right away, as these files are pretty big,
find ~"/Documents/choir songs" -type f -name '*.wav' | bash -c "
while IFS= read -r file; do
output=\"\$(dirname \"\$file\")/\$(basename \"\$file\" .wav).mp3\" # Properly format the output path
echo "$$file"
echo \"\$(dirname \"\$file\")/\$(basename \"\$file\" .wav).mp3\" # Properly format the output path
# ffmpeg \
# -i \"\$file\" \ # Correctly quote input filename
# -c:a libmp3lame \ # Use LAME MP3 encoder
# -q:a 2 \ # Set variable bitrate quality (lower is better, 2 ≈ ~190kbps)
# \"\$outupt\" # Output file with correct path and extension
ffmpeg -i \"\$file\" -c:a libmp3lame -q:a 2 \"\$output\"
done
"