Hi. I was just curious as to what that maximum numerical value of a movie ID actually is.
When my application ("Movie Manager") edits metadata, it offers an opportunity for users to manually edit the various metadata fields first, including the appropriate MovieDB ID for a particular movie. The Editing window allows users the search for and download the appropriate metadata for movies from MovieDB. But a function also exists to completely bypass the "Search MovieDB" by downloading the metadata directly using a known MovieDB ID.
Currently, the text entry field for the ID accepts numbers only, and has a range of 0 - 999999. Does the MovieDB ID fit within this range?
Es fehlt ein Film oder eine Serie? Logge dich ein zum Ergänzen.
Diesen Eintrag bewerten oder zu einer Liste hinzufügen?
Kein Mitglied?
Antwort von Inmatrix
am 20. Dezember 2015 um 05:23
That number seems low to me, only 1 million IDs? surely there are more entries than that. My guess that it is at least a 31/32 bit number (2/4 billion).
Antwort von Peter Dzomlija
am 20. Dezember 2015 um 09:08
I know 999999 movie IDs does seem low, but it is a number that I have arbitrarily chosen for use in my "Movie Manager" when editing movie meta data. This is why I asked about what the maximum numerical value is for a MovieDB ID, so that I can set the editor control to be able to accept maximum values larger than 999999, or to whatever the accepted maximum might be.
Using a full 32-bit number as max (4,294,967,295) seemed like a bit much. There is no relation between MovieDB ID numbers and IMDB IDs (which use 7 digits, excluding "tt"), so I had to make my own choices, as the MovieDB API Documentation does not make any references to the maximum values allowed for a Movie ID...
Antwort von Travis Bell
am 22. Dezember 2015 um 16:16
The /movie/latest method holds the id of the latest movie which at the time of me writing this is currently sitting at 373816.
The field in our own DB is a 32-bit integer field.
Antwort von Peter Dzomlija
am 22. Dezember 2015 um 22:31
Thanks Travis, having some "insider information" does make things a little clearer.
So I think for practical purposes, I'll increase the maximum that my own application can use to 16777215 (24 bit), which I think should safely cover all the possibilities? I do not believe that there are even that many movies in existence, or that there would be within my lifetime.
Merry Christmas to you and all your colleagues!
Antwort von Travis Bell
am 23. Dezember 2015 um 11:12
I would think that would be fine, yes.
Thanks and a happy holidays to you too!