pecee / opensubtitles-php-sdk
Simple, lightweight PHP-SDK for accessing subtitles from OpenSubtitles.org
Installs: 159
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 1
Open Issues: 0
pkg:composer/pecee/opensubtitles-php-sdk
Requires (Dev)
- phpunit/phpunit: ^6.0
This package is auto-updated.
Last update: 2025-09-25 14:19:16 UTC
README
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());