PHPackages                             yedincisenol/video-intelligence - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. yedincisenol/video-intelligence

ActiveLibrary[API Development](/categories/api)

yedincisenol/video-intelligence
===============================

Laravel wrapper for GCloud Video Intelligence PHP client

0.1.1(7y ago)118MITPHP

Since Aug 9Pushed 7y ago1 watchersCompare

[ Source](https://github.com/yedincisenol/video-intelligence)[ Packagist](https://packagist.org/packages/yedincisenol/video-intelligence)[ RSS](/packages/yedincisenol-video-intelligence/feed)WikiDiscussions master Synced today

READMEChangelog (2)Dependencies (1)Versions (4)Used By (0)

![Travis](https://camo.githubusercontent.com/99d236ae126c5ba022da6100f76bbbc6ba4a1081456b33a42c77461a457fc1c8/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f796564696e636973656e6f6c2f766964656f2d696e74656c6c6967656e63652e7376673f7374796c653d666f722d7468652d6261646765)![Packagist](https://camo.githubusercontent.com/8bc35f60b9329b6f120ab5772294c53c6be7f18560a98289c6aac6bce2fdec4c/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f796564696e636973656e6f6c2f766964656f2d696e74656c6c6967656e63652e7376673f7374796c653d666f722d7468652d6261646765)![Packagist](https://camo.githubusercontent.com/89a443a3791e86b207c789e00c5cb6979904fa9b5ec4c933926d0d9019e7b27c/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f796564696e636973656e6f6c2f766964656f2d696e74656c6c6967656e63652e7376673f7374796c653d666f722d7468652d6261646765)![Packagist](https://camo.githubusercontent.com/a314957748924217805227c553b0e99fccaecf2b865a564d2f901ea1641012ea/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f796564696e636973656e6f6c2f766964656f2d696e74656c6c6967656e63652e7376673f7374796c653d666f722d7468652d6261646765)

- [Configuration](#php-config)
- [ Laravel Installation](#laravel-install)
- [Usage examples](#usage)

###  Laravel Install

[](#-laravel-install)

- Add composer

```
composer require "yedincisenol/video-intelligence"
```

- Add service provider (For Laravel 5.6 before) `config/app.php`

```
'providers' => [
    ...
    yedincisenol\VideoIntelligence\LaravelServiceProvider::class
],
```

- Add Facede

`config/app.php`

```
'aliases' => [
        ...
        'VideoIntelligence'    =>  \yedincisenol\VideoIntelligence\LaravelFacede::class
],
```

- Fill Environments

> copy theese parameters to your project .env and fill

```
VIDEO_INTELLIGENCE_CREDENTIALS_PATH=

```

> How to get credentials file? [Visit here](http://googlecloudplatform.github.io/google-cloud-php/#/docs/google-cloud/v0.73.0/guides/authentication)

- Laravel Usage

```
use VideoIntelligence;

VideoIntelligence::annotateVideo(['inputUri' => 'gs://pandora-test/video-1.mp4', 'features' => [1]]);
$operationResponse = VideoIntelligence::annotateVideo(['inputUri' => 'gs://pandora-test/video-1.mp4', 'features' => [1]]);

$operationResponse->pollUntilComplete();
if ($operationResponse->operationSucceeded()) {
    $results = $operationResponse->getResult();
    foreach ($results->getAnnotationResults() as $result) {
        echo 'Segment labels' . PHP_EOL;
        foreach ($result->getSegmentLabelAnnotations() as $labelAnnotation) {
            echo "Label: " . $labelAnnotation->getEntity()->getDescription()
                . PHP_EOL;
        }
        echo 'Shot labels' . PHP_EOL;
        foreach ($result->getShotLabelAnnotations() as $labelAnnotation) {
            echo "Label: " . $labelAnnotation->getEntity()->getDescription()
                . PHP_EOL;
        }
        echo 'Frame labels' . PHP_EOL;
        foreach ($result->getFrameLabelAnnotations() as $labelAnnotation) {
            echo "Label: " . $labelAnnotation->getEntity()->getDescription()
                . PHP_EOL;
        }
    }
} else {
    $error = $operationResponse->getError();
    echo "error: " . $error->getMessage() . PHP_EOL;
}

```

For more detail visit [here](http://googlecloudplatform.github.io/google-cloud-php/#/docs/cloud-videointelligence/v1.0.4/videointelligence/readme)

> Label Codes: [here](https://github.com/GoogleCloudPlatform/google-cloud-php-videointelligence/blob/master/src/V1/Feature.php)

- Publish Config file (Optional)

```
php artisan vendor:publish --tag=videointelligence

```

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity54

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

2

Last Release

2832d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/9f2f1188835c94cb8d324ffd9484a9de06be55fcfc67d7785c0d1d782d272cd6?d=identicon)[yedincisenol](/maintainers/yedincisenol)

---

Top Contributors

[![yedincisenol](https://avatars.githubusercontent.com/u/5055288?v=4)](https://github.com/yedincisenol "yedincisenol (7 commits)")

---

Tags

laravelgcloudvideo intelligencegcloud video intelligencephp video intelligence

### Embed Badge

![Health badge](/badges/yedincisenol-video-intelligence/health.svg)

```
[![Health](https://phpackages.com/badges/yedincisenol-video-intelligence/health.svg)](https://phpackages.com/packages/yedincisenol-video-intelligence)
```

###  Alternatives

[rakibdevs/openweather-laravel-api

Laravel package to connect https://openweathermap.org/ to get customized weather data for any location on the globe immediately

7648.2k](/packages/rakibdevs-openweather-laravel-api)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
