2017 © Pedro Peláez
 

library bitmovin-php

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

image

bitmovin/bitmovin-php

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  • Tuesday, July 24, 2018
  • by bitmovin
  • Repository
  • 23 Watchers
  • 17 Stars
  • 5,081 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 8 Forks
  • 7 Open issues
  • 74 Versions
  • 11 % Grown

The README.md

bitmovin

New API Client (Recommended)

bitmovin-php is the legacy Bitmovin API client for PHP., (*1)

We recommend using the new client, which you can find at bitmovin-api-sdk-php. Using the new client guarantees 100% specification conformity at any given time and access to all features of the API as soon as they are released., (*2)


bitmovin-php

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your projects. Using this API client requires an active account. Sign up for a Bitmovin API key., (*3)

The full Bitmovin API reference can be found on our website., (*4)

Installation

Requirements: PHP 5.6.0 or higher is required, (*5)

Composer

To install the api-client with composer, add the following to your composer.json file:, (*6)

{
"require": 
  {
    "bitmovin/bitmovin-php": "1.5.*"
  }
}

Then run php composer.phar install, (*7)

OR, (*8)

run the following command: php composer.phar require bitmovin/bitmovin-php:1.5.*, (*9)

Example

The following example creates a simple transcoding job and transfers it to a GCS output location (CreateSimpleEncoding.php):, (*10)

<?php

use Bitmovin\api\enum\CloudRegion;
use Bitmovin\BitmovinClient;
use Bitmovin\configs\audio\AudioStreamConfig;
use Bitmovin\configs\EncodingProfileConfig;
use Bitmovin\configs\JobConfig;
use Bitmovin\configs\manifest\DashOutputFormat;
use Bitmovin\configs\manifest\HlsOutputFormat;
use Bitmovin\configs\video\H264VideoStreamConfig;
use Bitmovin\input\HttpInput;
use Bitmovin\output\GcsOutput;

require_once __DIR__ . '/vendor/autoload.php';

$client = new BitmovinClient('INSERT YOUR API KEY HERE');

// CONFIGURATION
$videoInputPath = 'http://eu-storage.bitcodin.com/inputs/Sintel.2010.720p.mkv';
$gcs_accessKey = 'INSERT YOUR GCS OUTPUT ACCESS KEY HERE';
$gcs_secretKey = 'INSERT YOUR GCS OUTPUT SECRET KEY HERE';
$gcs_bucketName = 'INSERT YOUR GCS OUTPUT BUCKET NAME HERE';
$gcs_prefix = 'path/to/your/output/destination/';

// CREATE ENCODING PROFILE
$encodingProfile = new EncodingProfileConfig();
$encodingProfile->name = 'Test Encoding';
$encodingProfile->cloudRegion = CloudRegion::GOOGLE_EUROPE_WEST_1;

// CREATE VIDEO STREAM CONFIG FOR 1080p
$videoStreamConfig_1080 = new H264VideoStreamConfig();
$videoStreamConfig_1080->input = new HttpInput($videoInputPath);
$videoStreamConfig_1080->width = 1920;
$videoStreamConfig_1080->height = 1080;
$videoStreamConfig_1080->bitrate = 4800000;
$videoStreamConfig_1080->rate = 25.0;
$encodingProfile->videoStreamConfigs[] = $videoStreamConfig_1080;

// CREATE VIDEO STREAM CONFIG FOR 720p
$videoStreamConfig_720 = new H264VideoStreamConfig();
$videoStreamConfig_720->input = new HttpInput($videoInputPath);
$videoStreamConfig_720->width = 1280;
$videoStreamConfig_720->height = 720;
$videoStreamConfig_720->bitrate = 2400000;
$videoStreamConfig_720->rate = 25.0;
$encodingProfile->videoStreamConfigs[] = $videoStreamConfig_720;

// CREATE AUDIO STREAM CONFIG
$audioConfig = new AudioStreamConfig();
$audioConfig->input = new HttpInput($videoInputPath);
$audioConfig->bitrate = 128000;
$audioConfig->rate = 48000;
$audioConfig->name = 'English';
$audioConfig->lang = 'en';
$audioConfig->position = 1;
$encodingProfile->audioStreamConfigs[] = $audioConfig;

// CREATE JOB CONFIG
$jobConfig = new JobConfig();
// ASSIGN OUTPUT
$jobConfig->output = new GcsOutput($gcs_accessKey, $gcs_secretKey, $gcs_bucketName, $gcs_prefix);
// ASSIGN ENCODING PROFILES TO JOB
$jobConfig->encodingProfile = $encodingProfile;
// ENABLE DASH OUTPUT
$jobConfig->outputFormat[] = new DashOutputFormat();
// ENABLE HLS OUTPUT
$jobConfig->outputFormat[] = new HlsOutputFormat();

// RUN JOB AND WAIT UNTIL IT HAS FINISHED
$client->runJobAndWaitForCompletion($jobConfig);

For more examples go to our example page., (*11)

The Versions

24/07 2018

dev-feature/addPsshToPlayreadyCENC

dev-feature/addPsshToPlayreadyCENC https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360 clearkey

24/07 2018

dev-feature/cencPlayreadyPSSH

dev-feature/cencPlayreadyPSSH https://bitmovin.com/support

PHP API Client for seamless integration of the whole Bitmovin API in your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm

30/05 2018

dev-feature/multiOutputExample

dev-feature/multiOutputExample https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360 clearkey

04/05 2018

dev-feature/start-encoding-request

dev-feature/start-encoding-request https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360 clearkey

04/05 2018

dev-TS-and-FMP4-HLS-code-example

dev-TS-and-FMP4-HLS-code-example https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360 clearkey

29/03 2018

dev-feature/multicodecWithTimeOffsetExample

dev-feature/multicodecWithTimeOffsetExample https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360 clearkey

27/03 2018

dev-develop

dev-develop https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360 clearkey

27/03 2018

dev-master

9999999-dev https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360 clearkey

27/03 2018

v1.5.17

1.5.17.0 https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360 clearkey

27/03 2018

dev-feature/fix_hls_example

dev-feature/fix_hls_example https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360 clearkey

16/03 2018

dev-feature/timeOffsetSimplified

dev-feature/timeOffsetSimplified https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360 clearkey

19/02 2018

v1.5.16

1.5.16.0 https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360 clearkey

20/12 2017

dev-feature/example-structure-update

dev-feature/example-structure-update https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360 clearkey

21/11 2017

v1.5.15

1.5.15.0 https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360 clearkey

21/11 2017

dev-feature/conditionMode

dev-feature/conditionMode https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360 clearkey

16/11 2017

v1.5.14

1.5.14.0 https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360 clearkey

19/10 2017

v1.5.13

1.5.13.0 https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360 clearkey

12/09 2017

v1.5.12

1.5.12.0 https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360 clearkey

07/09 2017

v1.5.11

1.5.11.0 https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360 clearkey

04/09 2017

v1.5.10

1.5.10.0 https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360 clearkey

24/08 2017

v1.5.9

1.5.9.0 https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360 clearkey

23/08 2017

v1.5.8

1.5.8.0 https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360 clearkey

16/08 2017

v1.5.7

1.5.7.0 https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360 clearkey

09/08 2017

v1.5.6

1.5.6.0 https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360

26/07 2017

v1.5.5

1.5.5.0 https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360

24/07 2017

v1.5.4

1.5.4.0 https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360

24/07 2017

dev-feature/hls_live_edge

dev-feature/hls_live_edge https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360

13/07 2017

v1.5.3

1.5.3.0 https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360

11/07 2017

dev-s3-and-ftp

dev-s3-and-ftp https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360

10/07 2017

v1.5.1

1.5.1.0 https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360

10/07 2017

dev-add-filters

dev-add-filters https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360

10/07 2017

dev-feature/thumbnail-update

dev-feature/thumbnail-update https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360

28/06 2017

v1.5.0

1.5.0.0 https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360

06/06 2017

v1.4.24

1.4.24.0 https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360

26/05 2017

v1.4.23

1.4.23.0 https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360

26/05 2017

v1.4.22

1.4.22.0 https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360

23/05 2017

v1.4.21

1.4.21.0 https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360

05/05 2017

v1.4.20

1.4.20.0 https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360

04/04 2017

v1.4.19

1.4.19.0 https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360

28/03 2017

v1.4.18

1.4.18.0 https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360

27/03 2017

v1.4.17

1.4.17.0 https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360

22/03 2017

v1.4.16

1.4.16.0 https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360

09/03 2017

v1.4.15

1.4.15.0 https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360

28/02 2017

v1.4.14

1.4.14.0 https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360

23/02 2017

v1.4.13

1.4.13.0 https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360

17/02 2017

v1.4.12

1.4.12.0 https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360

08/02 2017

v1.4.11

1.4.11.0 https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360

07/02 2017

v1.4.10

1.4.10.0 https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360

03/02 2017

v1.4.9

1.4.9.0 https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360

01/02 2017

v1.4.8

1.4.8.0 https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360

31/01 2017

v1.4.7

1.4.7.0 https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360

27/01 2017

v1.4.6

1.4.6.0 https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360

26/01 2017

v1.4.5

1.4.5.0 https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360

23/12 2016

v1.4.4

1.4.4.0 https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360

23/12 2016

v1.4.3

1.4.3.0 https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360

16/12 2016

v1.4.2

1.4.2.0 https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360

15/12 2016

v1.4.1

1.4.1.0 https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360

13/12 2016

v1.4.0

1.4.0.0 https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm fmp4 playready widevine fairplay cenc vr 360

12/12 2016

v1.3.5

1.3.5.0 https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm

07/12 2016

v1.3.4

1.3.4.0 https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm

06/12 2016

v1.3.2

1.3.2.0 https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm

02/12 2016

v1.3.0

1.3.0.0 https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm

30/11 2016

v1.2.0

1.2.0.0 https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm

29/11 2016

v1.1.2

1.1.2.0 https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm

24/11 2016

v1.1.1

1.1.1.0 https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm

22/11 2016

v1.1.0

1.1.0.0 https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm

21/11 2016

v1.0.7

1.0.7.0 https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm

08/11 2016

v1.0.6

1.0.6.0 https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm

04/11 2016

v1.0.5

1.0.5.0 https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm

03/11 2016

v1.0.4

1.0.4.0 https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm

31/10 2016

v1.0.3

1.0.3.0 https://bitmovin.com/support

PHP-Client which enables you to seamlessly integrate the Bitmovin API into your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm

31/10 2016

v1.0.2

1.0.2.0 https://bitmovin.com/support

PHP API Client for seamless integration of the whole Bitmovin API in your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm

31/10 2016

v1.0.1

1.0.1.0 https://bitmovin.com/support

PHP API Client for seamless integration of the whole Bitmovin API in your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm

31/10 2016

v1.0.0

1.0.0.0 https://bitmovin.com/support

PHP API Client for seamless integration of the whole Bitmovin API in your existing projects

  Sources   Download

Unlicense

The Requires

 

The Development Requires

api mp4 encoding dash mpd hls m3u8 bitmovin mpeg-dash drm