PHPackages                             antonforwork/ivideon-php - 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. antonforwork/ivideon-php

ActiveLibrary

antonforwork/ivideon-php
========================

IVideon

v1.0.7(3y ago)132.5k—0%1GPL-3.0-onlyPHPPHP &gt;=7.2CI failing

Since Dec 6Pushed 3y ago1 watchersCompare

[ Source](https://github.com/antonforwork/ivideon-php)[ Packagist](https://packagist.org/packages/antonforwork/ivideon-php)[ RSS](/packages/antonforwork-ivideon-php/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (6)Dependencies (3)Versions (8)Used By (0)

ivideon-php
===========

[](#ivideon-php)

[![compatible](https://camo.githubusercontent.com/f52f20e005d9ab59bd1c916268d94d01fbbf37e90a2a43f3327e6bd2e60e2c49/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f504850253230372d436f6d70617469626c652d627269676874677265656e2e737667)](https://camo.githubusercontent.com/f52f20e005d9ab59bd1c916268d94d01fbbf37e90a2a43f3327e6bd2e60e2c49/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f504850253230372d436f6d70617469626c652d627269676874677265656e2e737667)

This is PHP Library which allow work with IVideon API

Instalation
-----------

[](#instalation)

```
composer require antonforwork/ivideon-php
```

```
$account = new Account('login_email', 'password', '.cache');
$api = new Api($account, new WebFlow());
```

Please use `.cache` file.

In first run library will try to login with your email and password and store your `access_token`, `userid` and `userApiUrl` in cache file all next runs will use these data.

If `cacheFile` not set api will try login in every run (slowly)

### Print all server and cameras

[](#print-all-server-and-cameras)

```
$servers = $api->servers->getServers();

foreach ($servers as $server) {
    echo $server->getTimezone(); // Important! see below
    foreach ($server->getCameras() as $camera) {
        echo $camera->getId() . PHP_EOL;
    }
}
```

### Create export request

[](#create-export-request)

```
/* Create export request
 * Please note that $start, $end is unix timestamp values
 * Please verify that $start, $end in your server timezone
 *
 * Important!
 * IVideon not allow to export "empty" videos, when nobody in all period
 * ExportRequestFailedException will be thrown
 */
$exportResult = $api->camera->exportMp4($cameraId, $start, $end);
$exportId = $exportResult->getId();
```

### Get all exports

[](#get-all-exports)

```
$exports = $api->camera->getExports();
foreach ($exports as $export) {
    echo $export->getId() . ' = ' . $export->getStatus();

    if ($export->getStatus() == \IVideon\Responses\ExportResult::EXPORT_STATUS_READY) {
        echo ' = ' . $export->getVideoUrl();
    }
    echo PHP_EOL;
};
```

### Delete export file

[](#delete-export-file)

```
$api->camera->deleteExport($exportId); // bool
```

###  Health Score

32

—

LowBetter than 72% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity27

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity57

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 73.5% 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 ~190 days

Recently: every ~157 days

Total

7

Last Release

1215d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/8843588?v=4)[Anton](/maintainers/antonforwork)[@antonforwork](https://github.com/antonforwork)

---

Top Contributors

[![awdev](https://avatars.githubusercontent.com/u/819029?v=4)](https://github.com/awdev "awdev (25 commits)")[![Two-Faces](https://avatars.githubusercontent.com/u/32146703?v=4)](https://github.com/Two-Faces "Two-Faces (6 commits)")[![antonforwork](https://avatars.githubusercontent.com/u/8843588?v=4)](https://github.com/antonforwork "antonforwork (3 commits)")

---

Tags

ivideon

###  Code Quality

Code StylePHP CS Fixer

### Embed Badge

![Health badge](/badges/antonforwork-ivideon-php/health.svg)

```
[![Health](https://phpackages.com/badges/antonforwork-ivideon-php/health.svg)](https://phpackages.com/packages/antonforwork-ivideon-php)
```

###  Alternatives

[neuron-core/neuron-ai

The PHP Agentic Framework.

1.8k245.3k21](/packages/neuron-core-neuron-ai)[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3731.2M42](/packages/tencentcloud-tencentcloud-sdk-php)[aedart/athenaeum

Athenaeum is a mono repository; a collection of various PHP packages

245.2k](/packages/aedart-athenaeum)

PHPackages © 2026

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