Search found 19 matches

by Yannik
22 Dec 2015, 22:06
Forum: Feature Requests and Bug Reports
Topic: Getting subtitles for filebot.web.Movie (or by IMDB ID)
Replies: 2
Views: 3038

Re: Getting subtitles for filebot.web.Movie (or by IMDB ID)

net.filebot.WebServices.OpenSubtitles.xmlrpc.searchSubtitles(2024544, "eng"), which should query by imdbid

results in this:

NullPointerException: java.lang.NullPointerException
java.lang.NullPointerException
at redstone.xmlrpc.XmlRpcSerializer.serialize(Unknown Source)
at redstone.xmlrpc ...
by Yannik
22 Dec 2015, 21:08
Forum: Feature Requests and Bug Reports
Topic: Relocate source from sourceforge to github
Replies: 4
Views: 4286

Re: Relocate source from sourceforge to github

2 years have passed, any update on this? :) git is quite superior to svn too...
by Yannik
22 Dec 2015, 21:07
Forum: Feature Requests and Bug Reports
Topic: Getting subtitles for filebot.web.Movie (or by IMDB ID)
Replies: 2
Views: 3038

Getting subtitles for filebot.web.Movie (or by IMDB ID)

Hi,

after matching a movie in my custom script, I would like to download subtitles from opensubtitles by filebot.web.Movie or by specifying the IMDB id if no subtitles are found for the files hash.
Is there any function for this? Could this be added?
Thanks alot!
by Yannik
08 Sep 2013, 17:17
Forum: Feature Requests and Bug Reports
Topic: MovieProperty "year"?
Replies: 21
Views: 15227

Re: MovieProperty "year"?

Can you check that? Thanks :-)
by Yannik
03 Sep 2013, 15:13
Forum: Feature Requests and Bug Reports
Topic: MovieProperty "year"?
Replies: 21
Views: 15227

Re: MovieProperty "year"?

Another small thing I have noticed is, that you should check if released actually is a parsable date or atleast compress warnings as else this error is going to appear:

Sep 03, 2013 5:10:11 PM net.sourceforge.filebot.web.Date parse
WARNING: Unparseable date: "N/A"
Sep 03, 2013 5:10:11 PM net ...
by Yannik
03 Sep 2013, 15:02
Forum: Feature Requests and Bug Reports
Topic: MovieProperty "year"?
Replies: 21
Views: 15227

Re: MovieProperty "year"?

thanks :-)
by Yannik
03 Sep 2013, 13:20
Forum: Feature Requests and Bug Reports
Topic: MovieProperty "year"?
Replies: 21
Views: 15227

Re: MovieProperty "year"?

Actually, FileBot.jar in current HEAD does only seem to contain revision 1708?

Code: Select all

$java -jar FileBot.jar -version
FileBot 3.62 (r1708) / Java(TM) SE Runtime Environment 1.7.0_10
by Yannik
03 Sep 2013, 12:34
Forum: Feature Requests and Bug Reports
Topic: MovieProperty "year"?
Replies: 21
Views: 15227

Re: MovieProperty "year"?

thanks
by Yannik
03 Sep 2013, 11:23
Forum: Feature Requests and Bug Reports
Topic: MovieProperty "year"?
Replies: 21
Views: 15227

Re: MovieProperty "year"?

I don't have a movie object, only a IMDB-ID as an Integer.

The following patches should do it:

TMDbClient.java.new:

*** TMDbClient.java 2013-08-27 15:30:00.912850459 +0200
--- TMDbClient.java.new 2013-09-03 13:27:44.539592534 +0200
***************
*** 296,302 ****
public static class MovieInfo ...
by Yannik
01 Sep 2013, 11:32
Forum: Feature Requests and Bug Reports
Topic: MovieProperty "year"?
Replies: 21
Views: 15227

Re: MovieProperty "year"?

Yeah, but if no "released" date is set it doesn't work. See this for example: http://www.omdbapi.com/?i=tt1287357 - "Released: N/A" and "Year: 2008".

This is why I want the "year" property to be available in MovieInfo. Like this: {imdb.year}

Maybe this is a corner case, but it would still be great ...
by Yannik
01 Sep 2013, 08:50
Forum: Feature Requests and Bug Reports
Topic: MovieProperty "year"?
Replies: 21
Views: 15227

Re: MovieProperty "year"?

Yeah, I wrote my own script which creates some extra files for each movies etc.

Can you add the year property to IMDb.getImdbApiMovieInfo so I can flawlessly integrate it with TMDb.getMovieInfo?


def getMovieInfo(movie,locale) {
movieInfo = null
if (!(movie.getTmdbId() > 0)) {
try {
movieInfo ...
by Yannik
30 Aug 2013, 04:33
Forum: Feature Requests and Bug Reports
Topic: Relocate source from sourceforge to github
Replies: 4
Views: 4286

Re: Relocate source from sourceforge to github

The webinterface on github gives us the possibility to submit small patches quickly without all the hassle that comes with submitting a patch on sourceforge. I think this would improve the possibility to contribute to filebot a lot.
by Yannik
30 Aug 2013, 04:29
Forum: Feature Requests and Bug Reports
Topic: MovieProperty "year"?
Replies: 21
Views: 15227

Re: MovieProperty "year"?

I also use TMDbClient.getMovieInfo as my primary data source, I only use IMDB if TMDB has no data for the specific movie. (See http://www.filebot.net/forums/viewtopic.php?p=5679#p5679)

So can you add it? I think many people use the process "Check TMDB"->"Use IMDB if TMDB has no data" and it's only ...
by Yannik
29 Aug 2013, 15:06
Forum: Feature Requests and Bug Reports
Topic: MovieProperty "year"?
Replies: 21
Views: 15227

Re: MovieProperty "year"?

Hi there,

sure I can just code a custom method. but wouldn't it be best to have it integrated in the getImdbApiMovieInfo() function of filebot?
by Yannik
29 Aug 2013, 15:00
Forum: Feature Requests and Bug Reports
Topic: Relocate source from sourceforge to github
Replies: 4
Views: 4286

Relocate source from sourceforge to github

As sourceforge has been massively going downhill for the last years (see http://www.gluster.org/2013/08/how-far- ... as-fallen/) and github really is superior to svn as a repository I would strongly recommend to relocate the source to github.

What do you think about that?
by Yannik
29 Aug 2013, 06:11
Forum: Help and Support
Topic: Access IMDB Data
Replies: 3
Views: 4598

Re: Access IMDB Data

I made a getMovieInfo wrapper-method like this:


def getMovieInfo(movie,locale) {
movieInfo = null
if (!(movie.getTmdbId() > 0)) {
try {
movieInfo = net.sourceforge.filebot.WebServices.TMDb.getMovieInfo(movie, locale)
} catch (FileNotFoundException e) {
movieInfo = net.sourceforge.filebot ...
by Yannik
29 Aug 2013, 06:03
Forum: Feature Requests and Bug Reports
Topic: MovieProperty "year"?
Replies: 21
Views: 15227

Re: MovieProperty "year"?

No no, I mean when having a script like this:


IMDBID = 1287357
movieObject = new net.sourceforge.filebot.web.Movie("", -1, IMDBID, -1)
movieInfo = net.sourceforge.filebot.WebServices.IMDb.getImdbApiMovieInfo(movieObject)
println movieInfo.getYear()


->


Aug 29, 2013 8:08:31 AM net ...
by Yannik
28 Aug 2013, 20:25
Forum: Feature Requests and Bug Reports
Topic: MovieProperty "year"?
Replies: 21
Views: 15227

MovieProperty "year"?

Why isn't there a MovieProperty "year"?

IMDB does return year (see http://www.omdbapi.com/?i=tt1287357) but it can't be used because its not in the MovieInfo. If release date is unknown (as in my example linked before), I can't even use the release date as year.

Apart from this, I cannot seem to ...
by Yannik
28 Aug 2013, 11:30
Forum: Help and Support
Topic: Access IMDB Data
Replies: 3
Views: 4598

Access IMDB Data

I do access IMDB MovieInfo using
net.sourceforge.filebot.WebServices.TMDb.getMovieInfo(String.format("tt%07d", IMDBID), locale, true)

However, for some movies this returns an error like that:
FileNotFoundException: Resource not found: http://api.themoviedb.org/3/movie/ttXXXXXXX?language=en&api ...