Hi,
I've uploaded some music directories via the vlc webpage on ios. runs perfectly, but for bulk upload, I'm using the following linux script with curl.
My music lies on a debian linux machine and I'm uploading my highres music (.flac) with the following script. maybe it's useful for other people too:
'iosp' is the ip addr of my ios device in my local wifi network
'hres' is my root directoy of my nigh res music (genre pop rock)
you have to modify this info according to your needs.
#!/bin/sh
iosip="10.8.88.123"
hres="/data/Multimedia/Music/HighRes"
flac="*.flac"
#
upl()
{
echo "$1"
find "$1" -name "$2" -o -name "*.jpg" -exec curl -# -F file=@"{}" http://$iosip/upload.json > /dev/null \;
}
#
#
upl "$hres/Pop Rock/Level 42/Level Best" $flac
upl "$hres/Pop Rock/Michael Jackson/The Essential (2005) [24-96 HD FLAC]" $flac
...