Search found 13 matches
- 29 Dec 2017, 11:30
- Forum: Help and Support
- Topic: Filebot behind VyprVPN
- Replies: 2
- Views: 2387
Re: Filebot behind VyprVPN
thanks for the response Red Noah! yeh not sure, normally I would grab a screenshot for forum posts but I just figured this one might be as simple as a list of URL's to whitelist. I will check next time the issue occurs and I will grab screenshots. In the meantime I will submit a support ticket ...
- 29 Dec 2017, 03:55
- Forum: Help and Support
- Topic: Filebot behind VyprVPN
- Replies: 2
- Views: 2387
Filebot behind VyprVPN
Just wondering if anyone is using Filebot behind VyperVPN and seeing any issues? I am seeing with certain sessions Filebot wont be able to rename a file, I am guessing due to not reaching certain websites. When I notice this happening I check by testing a manual file rename from the commandline and ...
- 16 Nov 2013, 08:15
- Forum: Scripting and Automation
- Topic: Filebot Output to Text File
- Replies: 2
- Views: 2749
Re: Filebot Output to Text File
Thanks man, your responses are crazy quick sometimes! testing this now to see what the output of a log file looks likerednoah wrote:and of course standard redirection... http://en.wikipedia.org/wiki/Standard_streamsCode: Select all
--log-file path.log

Also just donated, great utility

- 16 Nov 2013, 07:40
- Forum: Scripting and Automation
- Topic: Filebot Output to Text File
- Replies: 2
- Views: 2749
Filebot Output to Text File
hey, have done a search and can't find the answer to my question but it is possible i wasn't using the correct search terms :| I am currently using Filebot with the following command.... filebot -script fn:amc "D:/Torrents/CompletedDownloads/Series" --output "D:/Test Archive/Series" --action move ...
- 05 Oct 2013, 00:33
- Forum: Scripting and Automation
- Topic: Music Renaming Format
- Replies: 10
- Views: 9769
Re: Music Renaming Format
Yep, for music it's looking at each file individually, and it's just trying to grab the best matching data from what it gets back from AcoustID returns. So if album is missing, then album data is missing from the AcoustID response, and also it can't fall back to ID3 tags, so you're out of luck in ...
- 04 Oct 2013, 05:56
- Forum: Scripting and Automation
- Topic: Music Renaming Format
- Replies: 10
- Views: 9769
Re: Music Renaming Format
Ok so this works but I noticed for some albums it will not placed all songs from that album in the correct file e.g. you end up with BandName\Album\TrackName2 BandName\Album\TrackName3 BandName\Album\TrackName4 BandName\Album\TrackName5 BandName\\TrackName1 :( :!: :?: :!: for some obscure reason no ...
- 04 Oct 2013, 05:43
- Forum: Scripting and Automation
- Topic: Music Renaming Format
- Replies: 10
- Views: 9769
Re: Music Renaming Format
ahhhh k cool! thanks for the help. Pretty much looking for an almost fully automated solution from DL > Rename > Music Library same as I do with Series etc 

- 04 Oct 2013, 05:25
- Forum: Scripting and Automation
- Topic: Music Renaming Format
- Replies: 10
- Views: 9769
Re: Music Renaming Format
ok yep that worked, i should have tried the obvious variable name first! yeh sounds like u came to the same conclusion as me I couldn't find much doco on the Music Syntax or how the variables interacted with the filenames/tags/data collected from the online database search. Yeh I been using Mp3Tag ...
- 04 Oct 2013, 05:15
- Forum: Scripting and Automation
- Topic: Music Renaming Format
- Replies: 10
- Views: 9769
Re: Music Renaming Format
if I do musicFormat={n}\{Artist}\{fn} I get BandName\BandName\TrackTitle so I am assuming the Artist variable comes from either the tags or the search of the online dbase for the music names. So I think I just need the variable for AlbumName if their is one ? I tried musicFormat={n}\{AlbumArtist ...
- 04 Oct 2013, 05:02
- Forum: Scripting and Automation
- Topic: Music Renaming Format
- Replies: 10
- Views: 9769
Re: Music Renaming Format
I am not sure if this is possible but with the Music Formatting from Filebot can I end up with a structure like this.... BandName\AlbumName\TrackTitle ? My current script looks like this and works but I end up with basically.... filebot -script fn:amc "SourceLocation" --output "DestinationLocation ...
- 04 Oct 2013, 04:21
- Forum: Scripting and Automation
- Topic: Music Renaming Format
- Replies: 10
- Views: 9769
Music Renaming Format
I am not sure if this is possible but with the Music Formatting from Filebot can I end up with a structure like this.... BandName\AlbumName\TrackTitle ? My current script looks like this and works but I end up with basically.... filebot -script fn:amc "SourceLocation" --output "DestinationLocation ...
- 12 Aug 2013, 07:15
- Forum: Scripting and Automation
- Topic: AMC Script -clean option
- Replies: 2
- Views: 5241
Re: AMC Script -clean option
Not really. The --def clean=y is made for post-download cleanup where new downloaded folder gets passed in. In your case you can use --def clean but you an first run amc and then the cleaner with more options. See Shared Scripts section. Excellent, removed the clean option from the AMC and used a ...
- 12 Aug 2013, 00:06
- Forum: Scripting and Automation
- Topic: AMC Script -clean option
- Replies: 2
- Views: 5241
AMC Script -clean option
using the Syntax below, filebot -script fn:amc "D:/Torrents/CompletedDownloads/Movies" --output "D:/Test Archive/Movies" --action move -non-strict --def "movieFormat={n}" clean=y Now all the renaming and moving side works ace, but when it does the clean up, it cleans the movies left over files fine ...