You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a question. Saying I have a folder of .mp3 files, folder of .jpg covers and folder of .cue files with the same filenames. Is there any way to upload all of them recursively? Thank you!
The text was updated successfully, but these errors were encountered:
It doesn't support tracklisting from cue files (YET) and doesn't support a recursive feature.
outside of that, I just script this, each folder would have in it:
an mp3
a tracklist file
a jpg file
BASH (OSX/Linux)
#!/usr/bin/env bash
for d in *; do
if [ -d ${d} ]; then
cover=`ls $d/*.jpg| head -n 1`
cue=`ls $d/*.txt| head -n 1`
mp3=`ls $s/*.mp3| head -n 1`
if [ ! -f ${cover} ]; then
echo "Cover does not exist in ${d}"
return 1
fi
if [ ! -f ${cue} ]; then
echo "Cue file does not exist in ${d}"
return 2
fi
if [ ! -f ${mp3} ]; then
echo "MP3 file does not exist in ${d}"
return 3
fi
mixcloud --cover="${cover}" --file="${mp3}" --tracklist="${cue}" --tracklist-type="traktor"
fi
done
Hello! Thank you for great app!
I have a question. Saying I have a folder of .mp3 files, folder of .jpg covers and folder of .cue files with the same filenames. Is there any way to upload all of them recursively? Thank you!
The text was updated successfully, but these errors were encountered: