Files
thomasasfk_drs2dd/tracks
..
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-17 22:56:02 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-18 00:13:28 +01:00
2023-09-17 13:39:39 +01:00

Tracks! Come back later.

ls -l . | grep -c '^d'
# remove 10 seconds from all mp3 files
find . -type f -name "*.mp3" -exec sh -c 'DURATION=$(ffprobe -i "$0" -show_entries format=duration -v quiet -of csv="p=0"); TRIM_TIME=$(awk "BEGIN {print $DURATION - 10}"); ffmpeg -ss 0 -t $TRIM_TIME -i "$0" "${0%.mp3}-fixed.mp3"' {} \;
# move the fixed mp3 files to the original file name
find . -type f -name '*-fixed.mp3' -exec sh -c 'mv "$0" "${0%-fixed.mp3}.mp3"' {} \;