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?
لم تجد الفلم أو المسلسل ؟ سجل دخولك و انشئها
هل تريد تقييم او اضافة هذا العنصر للقائمة؟
لست عضو؟
رد بواسطة Inmatrix
بتاريخ ديسمبر 20, 2015 في 5: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).
رد بواسطة Peter Dzomlija
بتاريخ ديسمبر 20, 2015 في 9: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...
رد بواسطة Travis Bell
بتاريخ ديسمبر 22, 2015 في 4: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.
رد بواسطة Peter Dzomlija
بتاريخ ديسمبر 22, 2015 في 10: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!
رد بواسطة Travis Bell
بتاريخ ديسمبر 23, 2015 في 11:12 صباحا
I would think that would be fine, yes.
Thanks and a happy holidays to you too!