Search found 7 matches
- 29 Dec 2016, 17:44
- Forum: Scripting and Automation
- Topic: AMC unsorted folder as Movies or TV Series?
- Replies: 2
- Views: 2571
Re: AMC unsorted folder as Movies or TV Series?
Thanks, will try those..
- 29 Dec 2016, 17:16
- Forum: Scripting and Automation
- Topic: AMC unsorted folder as Movies or TV Series?
- Replies: 2
- Views: 2571
AMC unsorted folder as Movies or TV Series?
In --def unsortedFormat: 1. Is it possible to add Movies or TV Series to the filename/folder based on the amc recognition? 2. Or use the original folder structure to define the above? Original structure is: /home/aj/qBittorrent/Finished/Movie /home/aj/qBittorrent/Finished/Series /home/aj/qBittorrent ...
- 31 Mar 2016, 10:59
- Forum: Feature Requests and Bug Reports
- Topic: --conflict override when using the windows GUI?
- Replies: 1
- Views: 2101
--conflict override when using the windows GUI?
Is it possible to use --conflict override when using the windows GUI?
- 13 Jul 2015, 17:29
- Forum: Episode / Movie Naming Scheme
- Topic: Lookup parts of the filename in CSV
- Replies: 6
- Views: 6099
Re: Lookup parts of the filename in CSV
Only one I seen a few of is "dir cut" which you dont have on your list. The rest is one off for each movie which would be impossible to maintain.
- 13 Jul 2015, 16:55
- Forum: Episode / Movie Naming Scheme
- Topic: Lookup parts of the filename in CSV
- Replies: 6
- Views: 6099
Re: Lookup parts of the filename in CSV
Thanks for you help, got it working by using: {csv('editions.csv').findResults{ k, v -> if (fn.lower().replaceAll(/[._]/," ") =~ k) v}.unique().join(' ')} {tags} gave me a undefined error when the filename didnt have tags in them. A also wanted to pick up strange versions like for example X-Men ...
- 13 Jul 2015, 13:33
- Forum: Episode / Movie Naming Scheme
- Topic: Lookup parts of the filename in CSV
- Replies: 6
- Views: 6099
Re: Lookup parts of the filename in CSV
I've seen a few of the examples, but the problem is that it looks for a complete match, I just wanna do a partial one. My script: {y =~ "2014|2015" ? "\\\\DS3612\\Volume 1\\Video\\Filmer\\" : "\\\\DS3612\\Volume 2\\Filmer\\"}\{n.replaceAll(/[\\/?<>:|]/, "").replaceAll(/[*\s]+/, " ").replaceAll ...
- 13 Jul 2015, 10:29
- Forum: Episode / Movie Naming Scheme
- Topic: Lookup parts of the filename in CSV
- Replies: 6
- Views: 6099
Lookup parts of the filename in CSV
Is it possible to lookup a CSV for parts of the filename. At the moment my code is pretty long to include all the possible movie editions, versions and cuts. What I would like to do is move all this out to a CSV file. example.csv Director cut;Directors cut Directors cut;Directors cut Director's cut ...