Topic: Uploading lots of files to Karaoke Anywhere
Great software. From the instructions it appears you should be able to upload multiple files on a Mac by finding "KaraokeAnywhere" via Bonjour. I was unable to find this in Finder. The alternative is to use your web browser to upload. I had a hundred CDGs to upload and this was time consuming, so I wrote a script to upload all files in a directory.
I'm sharing this script here. You need to be familiar with the Terminal application to use it.
1. Go to the directory with your CDG files in it.
2. Create a file called "upload.sh" and give it execute permissions.
3. Copy the following into the file. Change the 10.0.1.7:10190 IP address with the one KaraokeAnywhere tells you to use.
4. Execute with ./upload.sh
--everything past this line goes into upload.sh--
#!/bin/bash
files="*.zip"
for f in $files
do
curl -s -F "mp3_file=@$f" http://10.0.1.7:10190/upload-file
done