Go to file
Leon van Kammen 0a462ec3d0 update documentation 2024-01-03 15:14:24 +01:00
2023-12-11 first commit 2023-12-11 17:00:05 +01:00
assets added background 2024-01-03 14:52:24 +01:00
.gitignore first commit 2023-12-11 17:00:05 +01:00
README.md update documentation 2024-01-03 15:14:24 +01:00

README.md

place for media/recording related files (to embed/transcribe etc)

generate audio from mp4 files

To save space in the repo, just run this after cloning:

$ find $(pwd) -type f -iname '*.mp4' | while read mp4; do ffmpeg -i "$mp4" "$mp4.mp3"; done