Ok, I'm getting sick of waiting for a "Conversion Tool". Here is what I've come up with so far...
First, I went in the DB and exported the vb_vbimghost table as a CSV. I then edited the CSV to have the following columns (userid, imageName, imageURL)
With the new CSV in hand, I wrote the following script to download all of the users' images in to a separate directory matching their userid.
Code:
#!/bin/bash
INPUT=./inputfile2.csv
OLDIFS=$IFS
IFS=,
testCol=222
[ ! -f $INPUT ] && { echo "$INPUT file not found"; exit 99; }
while read col1 col2 col3
do
curl --create-dirs $col3 -o ./$col1/$col2
done < $INPUT
IFS=$OLDIFS
Now I have a directory structure of $userid/$imagename
This is as far as I've gotten. If someone knows how to force an upload in to the Albums portion of VB4 as a specific userid, please feel free to update.
*EDIT*
At this point, I'm not at all worried about breaking existing links on other websites. I'd rather take the heat for that than not being able to upgrade my board because of a heavily used mod.