I read a few posts about this but still not sure so i will ask here.
[crew] => Array ( [0] => Array ( [credit_id] => 52fe420dc3a36847f8000437 [department] => Directing [id] => 1 [job] => Director [name] => George Lucas [profile_path] => /rJ1zvSeZfge0mHtLnzJn4Mkw18S.jpg ) [1] => Array ( [credit_id] => 52fe420dc3a36847f800043d [department] => Writing [id] => 1 [job] => Author [name] => George Lucas [profile_path] => /rJ1zvSeZfge0mHtLnzJn4Mkw18S.jpg ) [2] => Array ( [credit_id] => 52fe420dc3a36847f800045b [department] => Production [id] => 1 [job] => Executive Producer [name] => George Lucas [profile_path] => /rJ1zvSeZfge0mHtLnzJn4Mkw18S.jpg )
For movies/11/credits under credits/crew I see George Lucas show up multiple times. Each has the same object id but different credit_id for each of his different contributions. Is is safe to say that the Credit->Crew->id is unique to the person and the Credit->Crew->credit_id unique to the role that person had for that specific movie?
If the answer is yes, I would assume that all movies George Lucas directed, wrote or produced would have the same Crew->id but different Crew->crew_id. Can anyone confirm this?
فیلم و نمایش تلویزیونی را نمیتوانید پیدا کنید؟ به سیستم وارد شوید تا آن را ایجاد کنید.
آیا میخواهید به این مورد امتیاز دهید یا به فهرست اضافه کنید؟
عضو نیستید؟
پاسخ توسط Travis Bell
در تاریخ اوت 24, 2014 ساعت 10:11 ق.ض
In movies, every credit will be unique and thus have a unique
credit_id
. For TV however, you will see thesecredit_id
s be reused for multiple seasons, since that’s how we calculate TV series credits.Yes, exactly.
Cheers.
پاسخ توسط angelxmoreno
در تاریخ اوت 26, 2014 ساعت 1:19 ق.ض
Excelent. Thanks Travis. Now to to cast_ids, hope i can figure that one out as well.
پاسخ توسط Travis Bell
در تاریخ اوت 26, 2014 ساعت 9:28 ق.ض
cast_id
is only present on movies and is our old legacy ID. You don't need to worry about it in any way if you decide to track credits with thecredit_id
.Cheers.
پاسخ توسط angelxmoreno
در تاریخ اوت 28, 2014 ساعت 1:28 ق.ض
nice, thanks a ton