{"id":33970705,"url":"https://github.com/cloudinary/video-live-streaming-php","last_synced_at":"2026-06-09T07:32:25.411Z","repository":{"id":257812998,"uuid":"868471830","full_name":"cloudinary/video-live-streaming-php","owner":"cloudinary","description":"Cloudinary Video Live Streaming PHP SDK","archived":false,"fork":false,"pushed_at":"2025-01-14T10:40:45.000Z","size":51,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":11,"default_branch":"main","last_synced_at":"2025-12-14T13:20:07.883Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cloudinary.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-10-06T13:23:48.000Z","updated_at":"2025-06-19T15:10:39.000Z","dependencies_parsed_at":null,"dependency_job_id":"c56f2e3f-10e6-4dd7-b8a1-ad6a17a0e6ed","html_url":"https://github.com/cloudinary/video-live-streaming-php","commit_stats":null,"previous_names":["cloudinary/video-live-streaming-php"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/cloudinary/video-live-streaming-php","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudinary%2Fvideo-live-streaming-php","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudinary%2Fvideo-live-streaming-php/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudinary%2Fvideo-live-streaming-php/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudinary%2Fvideo-live-streaming-php/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cloudinary","download_url":"https://codeload.github.com/cloudinary/video-live-streaming-php/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudinary%2Fvideo-live-streaming-php/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34096950,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-09T02:00:06.510Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-12-13T00:36:46.692Z","updated_at":"2026-06-09T07:32:25.406Z","avatar_url":"https://github.com/cloudinary.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"Video Live Streaming (Beta) PHP SDK\n==================\n\nUse the Video Live Streaming API to create and manage your RTMP live streams. This includes managing outputs as well as manually starting and stopping streams. See the [live streaming guide](https://cloudinary.com/documentation/video_live_streaming) for information on how to use the Live Streaming API to stream video to your users.\n\n  **Note**: The Live Streaming API is currently in development and is available as a Public Beta, which means we value your feedback, so please feel free to [share any thoughts with us](https://support.cloudinary.com/hc/en-us/requests/new).\n\n  The API supports Basic Authentication using your Cloudinary API Key and API Secret (which can be found on the Dashboard page of your [Cloudinary Console](https://console.cloudinary.com/pm)).\n\n\nFor more information, please visit [https://support.cloudinary.com](https://support.cloudinary.com).\n\n## Installation \u0026 Usage\n\n### Requirements\n\nPHP 8.1 and later.\n\n### Composer\n\nTo install the bindings via [Composer](https://getcomposer.org/), add the following to `composer.json`:\n\n```json\n{\n  \"require\": {\n    \"cloudinary/video-live-streaming\": \"*\"\n  }\n}\n```\n\nThen run `composer install`\n\n### Manual Installation\n\nDownload the files and include `autoload.php`:\n\n```php\n\u003c?php\nrequire_once('/path/to/video-live-streaming/vendor/autoload.php');\n```\n\n\n## Configuration\n\nThe API uses **Basic Authentication** over HTTPS.\n\nYou can find your product environment configuration credentials in the API Keys page of the Cloudinary Console [Dashboard](https://console.cloudinary.com/pm/developer-dashboard).\n\nYou can either pass configuration with each `$apiInstance` initialization:\n\n```php\n\u003c?php\nrequire_once(__DIR__ . '/vendor/autoload.php');\n\n// Configure Cloudinary URL: basicAuth\n$config = Cloudinary\\Video\\LiveStreaming\\Configuration::getDefaultConfiguration()\n              -\u003esetCloudinaryUrl('cloudinary://key:secret@cloud_name');\n\n$apiInstance = new Cloudinary\\Video\\LiveStreaming\\Api\\LiveStreamApi(null, $config);\n```\n\nOr set the environment variable globally.\n\nFor example, to set a temporary environment variable:\n\n* On Mac or Linux:\n\n    ```\n    export CLOUDINARY_URL=cloudinary://key:secret@cloud_name\n    ```\n\n* On Windows:\n\n    ```\n    set CLOUDINARY_URL=cloudinary://key:secret@cloud_name\n    ```\n\nAnd then you can simply initialize `$apiInstance` as follows:\n\n```php\n\u003c?php\nrequire_once(__DIR__ . '/vendor/autoload.php');\n\n$apiInstance = new Cloudinary\\Video\\LiveStreaming\\Api\\LiveStreamApi();\n```\n\n## Getting Started\n\nPlease follow the [installation procedure](#installation--usage) and then run the following:\n\n```php\n\u003c?php\nrequire_once(__DIR__ . '/vendor/autoload.php');\n\n$apiInstance = new Cloudinary\\Video\\LiveStreaming\\Api\\LiveStreamApi();\n\n\ntry {\n    $result = $apiInstance-\u003egetLiveStreams();\n    print_r($result);\n} catch (Exception $e) {\n    echo 'Exception when calling LiveStreamApi-\u003egetLiveStreams: ', $e-\u003egetMessage(), PHP_EOL;\n}\n```\n\n## API Endpoints\n\nAll URIs are relative to https://api.cloudinary.com/v2/video/CLOUD_NAME, except if the operation defines another base path.\n\n| Class | Method | HTTP request | Description |\n| ------------ | ------------- | ------------- | ------------- |\n| *LiveStreamApi* | [**activateLiveStream**](docs/Api/LiveStreamApi.md#activatelivestream) | **POST** /live_streams/{liveStreamId}/activate | Manually activate a live stream |\n| *LiveStreamApi* | [**createLiveStream**](docs/Api/LiveStreamApi.md#createlivestream) | **POST** /live_streams | Create a new live stream |\n| *LiveStreamApi* | [**createLiveStreamOutput**](docs/Api/LiveStreamApi.md#createlivestreamoutput) | **POST** /live_streams/{liveStreamId}/outputs | Create a new live stream output |\n| *LiveStreamApi* | [**deleteLiveStream**](docs/Api/LiveStreamApi.md#deletelivestream) | **DELETE** /live_streams/{liveStreamId} | Delete a live stream |\n| *LiveStreamApi* | [**deleteLiveStreamOutput**](docs/Api/LiveStreamApi.md#deletelivestreamoutput) | **DELETE** /live_streams/{liveStreamId}/outputs/{liveStreamOutputId} | Delete a live stream output |\n| *LiveStreamApi* | [**getLiveStream**](docs/Api/LiveStreamApi.md#getlivestream) | **GET** /live_streams/{liveStreamId} | Get a single live stream |\n| *LiveStreamApi* | [**getLiveStreamOutput**](docs/Api/LiveStreamApi.md#getlivestreamoutput) | **GET** /live_streams/{liveStreamId}/outputs/{liveStreamOutputId} | Get a single live stream output |\n| *LiveStreamApi* | [**getLiveStreamOutputs**](docs/Api/LiveStreamApi.md#getlivestreamoutputs) | **GET** /live_streams/{liveStreamId}/outputs | Get a list of live stream outputs |\n| *LiveStreamApi* | [**getLiveStreams**](docs/Api/LiveStreamApi.md#getlivestreams) | **GET** /live_streams | Get a list of live streams |\n| *LiveStreamApi* | [**idleLiveStream**](docs/Api/LiveStreamApi.md#idlelivestream) | **POST** /live_streams/{liveStreamId}/idle | Manually idle a live stream |\n| *LiveStreamApi* | [**updateLiveStream**](docs/Api/LiveStreamApi.md#updatelivestream) | **PATCH** /live_streams/{liveStreamId} | Update a live stream |\n| *LiveStreamApi* | [**updateLiveStreamOutput**](docs/Api/LiveStreamApi.md#updatelivestreamoutput) | **PATCH** /live_streams/{liveStreamId}/outputs/{liveStreamOutputId} | Update a live stream output |\n\n## Models\n\n- [ErrorWrappedResponse](docs/Model/ErrorWrappedResponse.md)\n- [LiveStreamCreatePayload](docs/Model/LiveStreamCreatePayload.md)\n- [LiveStreamInputCreatePayload](docs/Model/LiveStreamInputCreatePayload.md)\n- [LiveStreamInputResponse](docs/Model/LiveStreamInputResponse.md)\n- [LiveStreamOutputCreatePayload](docs/Model/LiveStreamOutputCreatePayload.md)\n- [LiveStreamOutputResponse](docs/Model/LiveStreamOutputResponse.md)\n- [LiveStreamOutputUpdatePayload](docs/Model/LiveStreamOutputUpdatePayload.md)\n- [LiveStreamOutputWrappedResponse](docs/Model/LiveStreamOutputWrappedResponse.md)\n- [LiveStreamOutputsWrappedResponse](docs/Model/LiveStreamOutputsWrappedResponse.md)\n- [LiveStreamResponse](docs/Model/LiveStreamResponse.md)\n- [LiveStreamUpdatePayload](docs/Model/LiveStreamUpdatePayload.md)\n- [LiveStreamWrappedResponse](docs/Model/LiveStreamWrappedResponse.md)\n- [LiveStreamsWrappedResponse](docs/Model/LiveStreamsWrappedResponse.md)\n- [MessageWrappedResponse](docs/Model/MessageWrappedResponse.md)\n- [MessageWrappedResponseData](docs/Model/MessageWrappedResponseData.md)\n\n## Authorization\n\n### basicAuth\n\n- **Type**: HTTP basic authentication\n\n## Tests\n\nTo run the tests, use:\n\n```bash\ncomposer install\nvendor/bin/phpunit\n```\n\n## Author\n\nsupport@cloudinary.com\n\n## About this package\n\nThis Video Live Streaming (Beta) PHP package is automatically generated.\n\n- Package version: `0.1.1`\n- API version: `0.1.10`\n- Build package: `org.openapitools.codegen.languages.PhpNextgenClientCodegen`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcloudinary%2Fvideo-live-streaming-php","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcloudinary%2Fvideo-live-streaming-php","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcloudinary%2Fvideo-live-streaming-php/lists"}