A friend wrote this for me. It took a mass of files and imported them into RD. Haven't used it in awhile.

cat massimport.sh

------------------------------------------------------------------------------------

#!/bin/bash

echo "Create a Rivendell group name and enter it below"
read GROUP

IFS=$(echo -en "\n\b")

for i in `find /media/ |grep -i \.mp3$`; do
    rdimport --verbose --fix-broken-formats --segue-level=-10 $GROUP ''$i''
done

for i in `find /media/ |grep -i \.wav$`; do
    rdimport --verbose --fix-broken-formats --segue-level=-10 $GROUP ''$i''
done

echo
echo "Finished. Press enter to quit."
read junk

----------------------------------------------------------------------------------------------------------

Rick



On 12/16/2020 6:07 PM, wa7skg wrote:
In my feeble memory, I seem to recall there was a way to bulk add audio files. I have a couple hundred songs to import into Rivendell and adding one at a time will take forever. Any way to speed it up?

Thanks,
Michael

_______________________________________________
Rivendell-dev mailing list
[email protected]
http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev
.
_______________________________________________
Rivendell-dev mailing list
[email protected]
http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev

Reply via email to