Page 1 of 1

Can Sabnzbd post process music?

Posted: April 11th, 2012, 5:08 am
by Gkf9
Im putting Nzb in manually ( tried HP can't get it to work ). What I want to know is when Ive downloaded an album can it take all the NFO info out and rename and move to my music folder like CP and SB does?

Any help or pointers would be great!

TIA

Re: Can Sabnzbd post process music?

Posted: April 11th, 2012, 5:26 am
by shypike
If you flag an NZB as music category and you set a music folder in Config->Categories.
nfo files can be removed by using the extension-based clean up in Config->General.

Re: Can Sabnzbd post process music?

Posted: April 11th, 2012, 5:47 am
by Gkf9
Thanks for the swift reply.

What do you mean flag a NZB as music?

Re: Can Sabnzbd post process music?

Posted: April 11th, 2012, 7:50 am
by shypike
When you enter an NZB through SABnzbd's UI, you can indicate a category (if you defined those).
Alternatively, you can use subfolders (like 'music') in the watched folder.

Re: Can Sabnzbd post process music?

Posted: April 11th, 2012, 9:00 am
by Gkf9
Ok thanks, I know what you mean now, just tried it worked a treat. Can I ask 1 more question ( for now). If I have put NFO etc in the "clean up list " in the general tab, does this mean they will be missing from
My movies to? Or does it just apply to music because I've tagged it.

I still want NFO info in my movie folder but not in my music folder.

Thanks again.

Re: Can Sabnzbd post process music?

Posted: April 11th, 2012, 10:14 am
by shypike
The cleanup list is global.
If you want it different, you'll need to create a small user script (see Wiki: http://wiki.sabnzbd.org/user-scripts ).
The content would be (for Windows):

Code: Select all

@echo off
cd /d %1
del *.nfo

Re: Can Sabnzbd post process music?

Posted: April 11th, 2012, 10:32 am
by Gkf9
shypike wrote:The cleanup list is global.
If you want it different, you'll need to create a small user script (see Wiki: http://wiki.sabnzbd.org/user-scripts ).
The content would be (for Windows):

Code: Select all

@echo off
cd /d %1
del *.nfo
Ok thanks again