Skip to content

Simple, lightweight PHP-SDK for accessing subtitles from OpenSubtitles.org

Notifications You must be signed in to change notification settings

skipperbent/pecee-opensubtitles-php-sdk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pecee/opensubtitles-php-sdk

PHP SDK for retrieving subtitles from OpenSubtitles.org.

Credits

Credits to kminek for his original work on this wrapper.

Usage

$client = Kminek\OpenSubtitles\Client::create([
    'username'  => 'USERNAME',
    'password'  => 'PASSWORD',
    'useragent' => 'USERAGENT',
]);

$response = $client->searchSubtitles([
    [
        'sublanguageid' => 'pol',
        'moviehash' => '163ce22b6261f50a',
        'moviebytesize' => '2094235131',
    ]
]);

var_dump($response->toArray());