Changes between Version 5 and Version 6 of MovieIdentification


Ignore:
Timestamp:
Dec 11, 2008, 8:20:32 AM (15 years ago)
Author:
os
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • MovieIdentification

    v5 v6  
    44
    55== Introduction ==
    6 No doubt there is requests for movie identification service - with submitting moviehash you can get IMDBID with some details. OpenSubtitles database was designed to support this, but only with uploaded subtitles (that means, somebody upload subtitles with moviehash and according that we can get IMDBID). Now we support "full" movie identification, that means you can insert to database moviehashes without subtitles. It can be used in media players, scripts, etc...you can read more about this in [http://forum.opensubtitles.org/viewtopic.php?p=5324 forum]
     6No doubt there is requests for movie identification service - with submitting moviehash you can get IMDBID with some details. Opensubtitles database was designed to support this, but only with uploaded subtitles (that means, somebody upload subtitles with moviehash and according that we can get IMDBID). Now we support "full" movie identification, that means you can insert to database moviehashes without subtitles. It can be used in media players, scripts, etc...you can read more about this in [http://forum.opensubtitles.org/viewtopic.php?p=5324 forum]
    77
    88== Work flow ==
     
    1111 * For [wiki:DevReadFirst#Videofilesextensions movies] with detected imdbid call [wiki:XMLRPC#InsertMovieHash InsertMovieHash()]
    1212 * For movies with no imdbid call [wiki:XMLRPC#CheckMovieHash2 CheckMovieHash2()] or [wiki:XMLRPC#CheckMovieHash CheckMovieHash()]
    13    * CheckMovieHash2 can return more imdbid matches per movie, when user selects one, call [wiki:XMLRPC#InsertMovieHash InsertMovieHash()]
    14    * If you get no results, you can call [wiki:XMLRPC#SearchMoviesOnIMDB SearchMoviesOnIMDB()], after user selects right movie call [wiki:XMLRPC#InsertMovieHash InsertMovieHash()]
     13   * !CheckMovieHash2 can return more imdbid matches per movie, when user selects one, call [wiki:XMLRPC#InsertMovieHash InsertMovieHash()]
     14   * If you get no results, you can call [wiki:XMLRPC#SearchMoviesOnIMDB SearchMoviesOnIMDB()] (or your own imdb search), after user selects right movie call [wiki:XMLRPC#InsertMovieHash InsertMovieHash()]
    1515
    1616pretty simple, isn't it ? :)