NAS moved files to a new location. How to fix playlists?

Need help? Post your questions here.

Moderator: moderators

NAS moved files to a new location. How to fix playlists?

Postby MikeLegit » Mon Sep 11, 2017 5:48 pm

I updated to a modern volume on my NAS and unfortunately this breaks everything on subsonic playlists because of the volume path change. Anyone know how to edit the subsonic db and do a search for "/share/MD0_DATA/Music" and replace with /share/CACHEDEV1_DATA/Music? Or even better, just remove MD0_DATA as it is already linked by the NAS to /share/Music?

Thanks.
This forum is blocking my ISP with their aggressive filtering, so I can only login via my phone. After all my contributions (and more than 2X the recommend donation), the site admin is unwilling to help. You can find me at SmallNetBuilder Forums.
MikeLegit
 
Posts: 43
Joined: Mon Apr 01, 2013 2:18 pm

Re: NAS moved files to a new location. How to fix playlists?

Postby MikeLegit » Tue Sep 12, 2017 4:11 am

Anyone have a step-by-step guide on how to do this with a database editor such as RazorSQL?
This forum is blocking my ISP with their aggressive filtering, so I can only login via my phone. After all my contributions (and more than 2X the recommend donation), the site admin is unwilling to help. You can find me at SmallNetBuilder Forums.
MikeLegit
 
Posts: 43
Joined: Mon Apr 01, 2013 2:18 pm

Re: NAS moved files to a new location. How to fix playlists?

Postby Jägs » Wed Sep 13, 2017 12:51 am

There are two ways you could do it:

1. Export the playlists to M3U, edit them in your favorite text editor to replace the old paths with the new paths, and then re-import them into Subsonic.
2. Use the db.view page (http://(your server):(subsonic port)/(subsonic path)/db.view to do an update on the file paths.

The first is easiest and safest as it requires not DB work. The second isn't too bad, but you do risk borking your DB if you are not careful. The following is code I tested on my install, but *WARNING* I am no HyperSQL expert, so I make no guarantee that it will work on your end.

Code: Select all
update media_file set path = replace(path, 'oldpath', 'newpath') where id = X


So, this will replace that path of a specific file with an ID of X. You can omit "where id = X" to update all file paths, but BE CAREFUL!
Jägs
 
Posts: 109
Joined: Wed Apr 06, 2011 9:52 pm

Re: NAS moved files to a new location. How to fix playlists?

Postby MikeLegit » Wed Sep 13, 2017 1:07 am

Thanks Jags! I like the option 1, however I have about 70 playlists and it would take forever to export import 1 by 1.

For option #2, my playlists are across many directories. Example:

NAME - FOLDER
80s - /share/Music/80s
Alternative - /share/Music/Alternative
Audio Books - /share/Music/Audio.Books
Classical - /share/Music/Classical
Classic Rock - /share/Music/Classic.Rock

Based off the HyperSQL code you posted, would it be something like this to replace globally?:
Code: Select all
update media_file set path = replace(path, '/share/MD0_DATA/Music', '/share/Music')


Or would that kill my lists give I am in different directories?

Mike
This forum is blocking my ISP with their aggressive filtering, so I can only login via my phone. After all my contributions (and more than 2X the recommend donation), the site admin is unwilling to help. You can find me at SmallNetBuilder Forums.
MikeLegit
 
Posts: 43
Joined: Mon Apr 01, 2013 2:18 pm

Re: NAS moved files to a new location. How to fix playlists?

Postby Jägs » Wed Sep 13, 2017 9:53 pm

Actually, for method 1, it's pretty simple to export playlists out of Subsonic en masse. Somewhere on the forum, someone posted a Java program to do that. I happen to prefer Perl, so wrote one that heavily borrowed from the Java program:

http://forum.subsonic.org/forum/viewtopic.php?f=5&t=17436

Once you get them in M3U, a text editor will make short work of fixing the paths. Then, you put them in a folder and under Settings --> General, there is an "Import playlist from" option. Point that to where your newly fixed M3Us are at, and on the next sync, Subsonic will import them with the new paths. This won't affect your existing Playlists, so you'll have duplicates, but this way, you can confirm that they are working before deleting the old ones.

For method 2, I may have misunderstood your original post. If you've moved and already scanned the new media paths into Subsonic, I'm not sure there is going to be a clean method to fix this with the DB, short of changing the paths per the update code, but you'll end up with duplicates. That said, I think method 1 is your best bet.

The other benefit of method 1 is that it is a nice backup solution for your playlists. I've had to reinstall Subsonic from scratch a few times, and this saved me hours of manually rebuilding playlists.
Jägs
 
Posts: 109
Joined: Wed Apr 06, 2011 9:52 pm

Re: NAS moved files to a new location. How to fix playlists?

Postby MikeLegit » Wed Sep 13, 2017 10:32 pm

That is what I will do then. I really appreciate your help! I will also cron out a backup using this script. Very nice contribution Jags!

-ML
This forum is blocking my ISP with their aggressive filtering, so I can only login via my phone. After all my contributions (and more than 2X the recommend donation), the site admin is unwilling to help. You can find me at SmallNetBuilder Forums.
MikeLegit
 
Posts: 43
Joined: Mon Apr 01, 2013 2:18 pm


Return to Help

Who is online

Users browsing this forum: No registered users and 19 guests