assemble / php-trint
Simplified PHP library to interact with Trint API
Installs: 1 167
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 1
Open Issues: 0
Requires
- guzzlehttp/guzzle: ^6.3
This package is auto-updated.
Last update: 2024-12-26 00:33:10 UTC
README
PHPTrint is a PHP library that interacts with the Trint API to push audio/video files for transcription and list transcribed file contents.
Their API docs can be found at: https://dev.trint.com
This package was developed to both serve as a plain PHP Client as well as integrate with Laravel Framework, as such it will register a TrintServiceProvider
and alias the singleton instance to Trint
Installation
To get started with PHPTrint, simply run:
composer require assemble/php-trint
Laravel
To publish the config file, run:
php artisan vendor:publish --provider="Assemble\PHPTrint\TrintServiceProvider"
Basic Usage
PHP Instantiation
Firstly create an instance of the Client
use Assemble\PHPTrint\Client as TrintClient; // create an instance of trint client $client = new TrintClient(["api-key" => "<your-key>"]);
Laravel Facade
This package registers a laravel singleton instance and a facade accessor for this instance
use Trint; $res = Trint::put("/path/to/file.mp4"); // upload $res = Trint::list(); // list $res = Trint::get("TrintId"); // content
General Usage
Pushing a file to trint, available params can be found here
// push a file to trint $client->put("/path/to/file.mp4", [...params]);
Listing transcriptions on your account
//listing transcriptions $limit = 10; // number of results returned $skip = 2 // offset from start of list $client->list($limit, $skip); // OR just $client->list();
Reading a single Trint file contents, available formats are: srt, webvtt, edl, docx, xml, json
// get trint data as string $data = $client->get("TrintId", "json", [...params]);
License
PHPTrint is open-sourced software licensed under the MIT license.