Issues with movie titles (original vs. international) #947
Labels
No labels
backend
critical
defect
duplicate
enhancement
fixed
frontend
general
invalid
major
minor
normal
oxjs
pandora_client
python-ox
task
trivial
wontfix
worksforme
No milestone
No project
No assignees
2 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: 0x2620/pandora#947
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Once we start organizing archives automatically, bad international titles for french/german/etc movies seem to be worse than original titles for japanese/chinese/etc movies. Poster titles are often in english, this may help on 0xDB. Also, original titles are probably constant, while international titles may get added quite some time after the release. So the proposal would be to make title the original title, not the international title, and on the info page display "Original (International)" instead of "International (Original)".
In addition, the parser will have to be updated to find certain international titles. For example, http://akas.imdb.com/title/tt0239925/releaseinfo#akas has an "English Title", but that part is currently commented out in the imdb module. Can we produce a list of all title strings to get a clearer idea?
Ok, so it looks like determining the international title could work like this:
"International (imdb display title) (English title)"
"Foo (imdb display title) (English title)"
"International (English title)"
"Foo (English title)"
"International (foo) (English title)"
"Foo (foo) (English title)"
"USA (foo)"
"UK (foo)"
"International (Foo title)"
If there are multiple matches in 2 or 4-9, sorting by title and taking the first one seems ok (arbitrary, doesn't favor specific countries, languages or version types, favors latin alphabet).
what about taking the first in the order from imdb if the same keys shows up multiple times?
Replying to [j]comment:2:
Fine too.
1 and 2, above, are just a guess, for now.
In []changeset:pandora,2260: