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
Can Sabnzbd post process music?
Forum rules
Help us help you:
Help us help you:
- Are you using the latest stable version of SABnzbd? Downloads page.
- Tell us what system you run SABnzbd on.
- Adhere to the forum rules.
- Do you experience problems during downloading?
Check your connection in Status and Interface settings window.
Use Test Server in Config > Servers.
We will probably ask you to do a test using only basic settings. - Do you experience problems during repair or unpacking?
Enable +Debug logging in the Status and Interface settings window and share the relevant parts of the log here using [ code ] sections.
Re: Can Sabnzbd post process music?
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.
nfo files can be removed by using the extension-based clean up in Config->General.
Re: Can Sabnzbd post process music?
Thanks for the swift reply.
What do you mean flag a NZB as music?
What do you mean flag a NZB as music?
Re: Can Sabnzbd post process music?
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.
Alternatively, you can use subfolders (like 'music') in the watched folder.
Re: Can Sabnzbd post process music?
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.
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?
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):
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?
Ok thanks againshypike 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