An open API service indexing awesome lists of open source software.

https://github.com/skipperbent/pecee-opensubtitles-php-sdk

Simple, lightweight PHP-SDK for accessing subtitles from OpenSubtitles.org
https://github.com/skipperbent/pecee-opensubtitles-php-sdk

api movie movies opensubtitles php-sdk sdk srt subtitle subtitles

Last synced: 16 days ago
JSON representation

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

Awesome Lists containing this project

README

          

# pecee/opensubtitles-php-sdk

PHP SDK for retrieving subtitles from OpenSubtitles.org.

## Credits

Credits to [kminek](https://github.com/kminek/open-subtitles) for his original work on this wrapper.

## Usage

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

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

var_dump($response->toArray());
```