Search found 54 matches

by cafevincent
24 Mar 2019, 10:22
Forum: Windows
Topic: please is there any way to use TheMovieDb for series?
Replies: 96
Views: 42834

Re: please is there any way to use TheMovieDb for series?

I'm trying this in the GUI with the default Firefly example selected. {episodeInfo.air_date.match(/(?:19|20)d{2}/)} Expression yields empty value: Patter not found: 2018-04-13 It looks like this code is trying to fetch a 4-digit value starting with 19 or 20 but somehow fails to match the 2018. {epis...
by cafevincent
03 Mar 2019, 19:20
Forum: Windows
Topic: please is there any way to use TheMovieDb for series?
Replies: 96
Views: 42834

Re: please is there any way to use TheMovieDb for series?

I figured out the '/N/A/' to '/N\/A/' thing. now the only problem seems to be that currently epYear produces an empty value {def season = (any{special ? 0 : s} {s}); def episode = (any{special ? special : e} {e}); def eAddOns = ['append_to_response':'external_ids']; def sAddOns = ['append_to_respons...
by cafevincent
02 Jan 2019, 06:00
Forum: Windows
Topic: please is there any way to use TheMovieDb for series?
Replies: 96
Views: 42834

Re: please is there any way to use TheMovieDb for series?

I am getting an error "Unexpected token: A" even though there definitely is no runaway A characters. -rename --db TheMovieDB::TV --format "{def season = (any{special ? 0 : s} {s}); def episode = (any{special ? special : e} {e}); def eAddOns = ['append_to_response':'external_ids']; def...
by cafevincent
03 Dec 2018, 16:57
Forum: Windows
Topic: please is there any way to use TheMovieDb for series?
Replies: 96
Views: 42834

Re: please is there any way to use TheMovieDb for series?

in the middle of rewriting all south park episodes I got 3 episodes in a row (s18e07-s018e09) that were renamed differently: -there was no genres, only the brackets -they all had different rating than imdb -they all had the series imdb id I was guessing there was a momentary lapse of connection to o...
by cafevincent
02 Dec 2018, 14:52
Forum: Windows
Topic: please is there any way to use TheMovieDb for series?
Replies: 96
Views: 42834

Re: please is there any way to use TheMovieDb for series?

I just discovered that some shows still get a blank filename, for example the show called "gary and his demons (2018)". this show only has the single alphabetical "tv-ma" for certification, I suspect this is the reason for the failure. instead of nullifying in a situation like th...
by cafevincent
02 Dec 2018, 12:48
Forum: Windows
Topic: please is there any way to use TheMovieDb for series?
Replies: 96
Views: 42834

Re: please is there any way to use TheMovieDb for series?

seems perfect. I even got the year wrapped in brackets. thank you so much for the both of you! -rename --db TheMovieDB::TV --format "{def season = (any{special ? 0 : s} {s}); def episode = (any{special ? special : e} {e}); def eAddOns = ['append_to_response':'external_ids']; def sAddOns = ['app...
by cafevincent
01 Dec 2018, 11:30
Forum: Windows
Topic: please is there any way to use TheMovieDb for series?
Replies: 96
Views: 42834

Re: please is there any way to use TheMovieDb for series?

I'm sorry but adding the missing { did not help much, it now produces an empty filename with extension only. Rename episodes using [TheMovieDB] Fetching episode data for [StartUp] Stripping invalid characters from new path: "" [MOVE] from [E:\TEMP\vr1507079\StartUp 2016 S03E01 Rebranding 1...
by cafevincent
18 Nov 2018, 16:55
Forum: Windows
Topic: please is there any way to use TheMovieDb for series?
Replies: 96
Views: 42834

Re: please is there any way to use TheMovieDb for series?

still "unexpected token: key". it looks like the "{key, value -> " bit divides each cert entry into alphabetical markings (key, unused) and numerals (value), yet is somehow is not recognized as valid word to use here? god I wish I knew some java right now.
by cafevincent
12 Nov 2018, 20:26
Forum: Windows
Topic: please is there any way to use TheMovieDb for series?
Replies: 96
Views: 42834

Re: please is there any way to use TheMovieDb for series?

1. in short = no 2. can you have more then 1 variable named "eavg" on same "level" ? 3. do you see "content ratings (certifications)" on episode level ? https://developers.themoviedb.org/3/tv-episodes/get-tv-episode-details just got to realizing both those things just ...
by cafevincent
11 Nov 2018, 12:56
Forum: Windows
Topic: please is there any way to use TheMovieDb for series?
Replies: 96
Views: 42834

Re: please is there any way to use TheMovieDb for series?

is this close? it says "The current scope already contains a variable of the name eavg" -rename --db TheMovieDB::TV --format "{def season = (any{special ? 0 : s} {s}); def episode = (any{special ? special : e} {e}); def eAddOns = ['append_to_response':'external_ids']; def sAddOns = ['...
by cafevincent
08 Nov 2018, 13:05
Forum: Windows
Topic: please is there any way to use TheMovieDb for series?
Replies: 96
Views: 42834

Re: please is there any way to use TheMovieDb for series?

the series version did a weird thing today. it renamed the whole season 2 of "F is for Family" so that there were no brackets around the genres. weird right? this is the one I'm currently using -rename --db TheMovieDB::TV --format "{def season = (any{special ? 0 : s} {s}); def episode...
by cafevincent
07 Nov 2018, 18:59
Forum: Windows
Topic: please is there any way to use TheMovieDb for series?
Replies: 96
Views: 42834

Re: please is there any way to use TheMovieDb for series?

testing on a massive scale now. at least one interesting popped up: https://www.themoviedb.org/movie/11324-shutter-island/edit?active_nav_item=release_information&language=en-US this movie gets a certification of 99, meaning it probably counts the 16/14 from Switzerland as 1614, not a separate n...
by cafevincent
06 Nov 2018, 18:48
Forum: Windows
Topic: please is there any way to use TheMovieDb for series?
Replies: 96
Views: 42834

Re: please is there any way to use TheMovieDb for series?

well now I get this error WARNING: An illegal reflective access operation has occurred WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedConstructor$1 (file:/C:/Program%20Files/FileBot/jar/groovy.jar) to constructor java.math.BigDecimal(java.math.BigInteger,long,int,int) WAR...
by cafevincent
06 Nov 2018, 18:00
Forum: Windows
Topic: please is there any way to use TheMovieDb for series?
Replies: 96
Views: 42834

Re: please is there any way to use TheMovieDb for series?

I get error: Illegal Argument: java.nio.file.InvalidPathException: Illegal char <>> at index 54: def cleanNum = certifications.findResults{key, value -> value.replaceAll(\D\)}.findAll{it}*.toInteger(); (def cleanNum = certifications.findResults{key, value -> value.replaceAll(\D\)}.findAll{it}*.toInt...
by cafevincent
06 Nov 2018, 14:33
Forum: Windows
Topic: please is there any way to use TheMovieDb for series?
Replies: 96
Views: 42834

Re: please is there any way to use TheMovieDb for series?

this is what I gathered you meant with your certification for movies -rename --db TheMovieDb --format "{def certifications = net.filebot.WebServices.TheMovieDB.getMovieInfo(movie, Locale.US, true).certifications; (allOf{ny}{director}{omdb.genres}{any{OMDb.certifications.FI.replaceAll(/N\\/A/)}{...
by cafevincent
06 Nov 2018, 11:02
Forum: Windows
Topic: please is there any way to use TheMovieDb for series?
Replies: 96
Views: 42834

Re: please is there any way to use TheMovieDb for series?

rednoah wrote: 05 Nov 2018, 15:47 OMDb ≠ IMDb

It's not the same. Presumably, OMDb regularly scrapes IMDb web pages to collect data, but probably not too regularly as to avoid getting sued by whoever owns IMDb.
that would be Amazon.
by cafevincent
05 Nov 2018, 18:26
Forum: Windows
Topic: please is there any way to use TheMovieDb for series?
Replies: 96
Views: 42834

Re: please is there any way to use TheMovieDb for series?

well this particular show is a (2009) show
by cafevincent
05 Nov 2018, 13:47
Forum: Windows
Topic: please is there any way to use TheMovieDb for series?
Replies: 96
Views: 42834

Re: please is there any way to use TheMovieDb for series?

psychoville now works, but I only now started to wonder... why is OMDb giving no cert or rating for this show (not even for one episode) when IMDb does have all the info, including episode level id, ratings?

I'm still trying to figure out what you mean by the `def certification` customization...
by cafevincent
04 Nov 2018, 19:30
Forum: Windows
Topic: please is there any way to use TheMovieDb for series?
Replies: 96
Views: 42834

Re: please is there any way to use TheMovieDb for series?

try fetching `Psychoville (2009) - S01E01 - Black Mail.mkv` to get the `N/A` to appear. for movies I am hoping for the possibility to get the certification from omdb, they have wider range of countries for the country list. I am currently using the simple omdb.certification but it has the same `N/A`...
by cafevincent
04 Nov 2018, 12:26
Forum: Windows
Topic: please is there any way to use TheMovieDb for series?
Replies: 96
Views: 42834

Re: please is there any way to use TheMovieDb for series?

for some series this produces a `N/A` certification, which divides the first half of the resulting filename into a directory name and and the second half to the filename.

plus could you please build one that renames movies via omdb?
by cafevincent
21 Oct 2018, 10:15
Forum: Windows
Topic: please is there any way to use TheMovieDb for series?
Replies: 96
Views: 42834

Re: please is there any way to use TheMovieDb for series?

so.. OMDb has the same exact ratings as IMDb because they have been copied over when IMDb used to have an API? then how come they have the same rating for modern shows? and if the ratings are simply copied (no site votes) then how can you set it to 5 votes minimum? would that mean we are requiring t...
by cafevincent
19 Oct 2018, 21:11
Forum: Windows
Topic: please is there any way to use TheMovieDb for series?
Replies: 96
Views: 42834

Re: please is there any way to use TheMovieDb for series?

wait, you can access vote count?? that makes this much better! no need to avoid 0.0 or 10.0, simply only require 5 votes or else use series rating. actually, require 5 votes for series rating too. finally no more wild ratings because of too few voters! perfect! would you please send me your bitcoin...
by cafevincent
18 Oct 2018, 10:26
Forum: Windows
Topic: please is there any way to use TheMovieDb for series?
Replies: 96
Views: 42834

Re: please is there any way to use TheMovieDb for series?

I edited it to replace both 0.0 and 10.0 rating with the series rating, not only 0.0 {def season = (any{special ? 0 : s} {s}); def episode = (any{special ? special : e} {e}); def eAddOns = ['append_to_response':'external_ids']; def sAddOns = ['append_to_response':'external_ids,content_ratings']; def...
by cafevincent
15 Oct 2018, 21:16
Forum: Windows
Topic: please is there any way to use TheMovieDb for series?
Replies: 96
Views: 42834

Re: please is there any way to use TheMovieDb for series?

I am trying to add `(year)` in but the way I'm using the parenthesis with the year is wrong, I get error warning: illegal. I'm not sure how to escape them... -rename --db TheMovieDB::TV --format "{def season = (any{special ? 0 : s} {s}); def episode = (any{special ? special : e} {e}); def eAddO...