Page 1 of 1

The filename, directory name, or volume label syntax is incorrect

Posted: 30 Oct 2020, 19:50
by Idontknow
Im not sure what im doing wrong but i have tried using others scripts and i cant get it to do what i want

I have a ton of movies that i wanna rename that i would like for it to be in this format

Movie Folder (Year of movie) -----> Movie.ext

I have a folder setup to rename my movies as such

main folder - _MoviesUnfinished
inside main folder i have 2 folders - NeedsRenamed and DoneRenamed

basically what i would like to do is put all the movies i wanna rename in the NeedsRenamed folder and after they have been renamed to move them to the DoneRenamed folder.

Like i said i have tried to use other scripts and it will search for movie but come back with something like no changes made or something to that effect.

I have looked through several forums trying to figure this out on my own and watched several youtube videos to learn this new process that i came across. Any help would be much appreciated.

Thanks in advance for the help.

Re: I need help with naming movies with AMC

Posted: 31 Oct 2020, 02:58
by rednoah
Please post the command and the console output, so that we can see what you're trying to do, and what filebot is doing or not doing.


:idea: Please read How to Request Help.

Re: I need help with naming movies with AMC

Posted: 31 Oct 2020, 13:46
by Idontknow
the script i was using was at least finding the movie but now its not. Basically i just wanna put a handful of movies in the Needsrenamed folder and it rename and put in the DoneRenamed folder. In this format Folder 2020/Movie.ext

here is my info

Code: Select all

filebot -script fn:amc --output B:/_MoviesUnfinished/NeedsRenamed/" --action test -non-strict "B:/_MoviesUnfinished/DoneRenamed" --log-file amc.log --def excludeList=amc.txt
Image

Thanks for the help

Re: I need help with naming movies with AMC

Posted: 31 Oct 2020, 17:32
by rednoah
You forgot some " there.


:idea: Please read Cmdline and Argument Passing for details.

Re: The filename, directory name, or volume label syntax is incorrect

Posted: 31 Oct 2020, 18:38
by Idontknow
That’s all I have I took a screenshot of the page and that’s all I have for script sorry

Re: The filename, directory name, or volume label syntax is incorrect

Posted: 01 Nov 2020, 02:51
by rednoah
NO:

Code: Select all

--output B:/_MoviesUnfinished/NeedsRenamed/"
YES:

Code: Select all

--output "B:/_MoviesUnfinished/NeedsRenamed"

:arrow: You may prefer to use the GUI if this doesn't make immediate sense. If you're new to the command-line, then there will be a steep learning curve, and you will have to spend a lot of time learning new things with trial and error. Personally, I'd just stick to the GUI for ease of use and getting things done. ;)

Re: The filename, directory name, or volume label syntax is incorrect

Posted: 01 Nov 2020, 13:40
by Idontknow
ok lets try this again i see what i messed up.

Code: Select all

filebot -script fn:amc --output "B:/_MoviesUnfinished/DoneRenamed/" --action test -non-strict "B:/_MoviesUnfinished/NeedsRenamed" --log-file amc.log --def excludeList=amc.txt
Image

Re: The filename, directory name, or volume label syntax is incorrect

Posted: 02 Nov 2020, 06:34
by rednoah
Looks good to me. Since you're using --action TEST to do a dry run to see if it would work, no files are actually be renamed. The console output does tell us that it would work just fine, so let's do --action MOVE (default unless specified otherwise) to actually move / rename files.

Re: The filename, directory name, or volume label syntax is incorrect

Posted: 02 Nov 2020, 11:39
by Idontknow
ok yeah thanks looks like that worked it renamed the movie Folder (year)/Movie (year) how would i change it to take the year off movie and make it just be Folder (year)/Movie?

also when i just tried to rename a movie it renamed it as a TV show episode, is there a way to force it to either name only movies or tv shows?

Thanks

Re: The filename, directory name, or volume label syntax is incorrect

Posted: 02 Nov 2020, 16:09
by rednoah
Please read the amc script manual for details on how to use custom formats and forcing TV or Movie mode.

Re: The filename, directory name, or volume label syntax is incorrect

Posted: 02 Nov 2020, 19:42
by Idontknow
thanks for the help i believe i figured it out and it seems to be working.