2017 © Pedro Peláez
 

library handbrake-php

A PHP integration with the Handbrake CLI...

image

burakboz/handbrake-php

A PHP integration with the Handbrake CLI...

  • Sunday, February 25, 2018
  • by BurakBoz
  • Repository
  • 1 Watchers
  • 0 Stars
  • 0 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 7 Versions
  • 0 % Grown

The README.md

handbrake-php

Latest Version on Packagist ![Software License][ico-license] Build Status Style CI ![Code Coverage][ico-code-quality] Total Downloads, (*1)

A PHP integration with the Handbrake CLI., (*2)

Structure

src/
tests/
vendor/

Install

Via Composer, (*3)

``` bash $ composer require burakboz/handbrake-php, (*4)


## Usage ```php <?php include 'vendor/autoload.php'; use BurakBoz\Handbrake as HB; $config = new HB\Config; // Set Type40 Defaults $config->handBrakeBinary = '/custom/path/HandBrakeCLI'; $config->input = '/home/user/test.avi'; $config->output = '/var/www/'; $config->audioLanguage = 'English'; $config->bitRate = '384k'; $config->mixdown = '6ch'; $config->videoRate = '23.976'; $config->audioRate = '48'; $config->encodingSceme = 'x264'; $config->quality = '25'; $config->frameRateType = 'cfr'; $config->additionalData = 'level=4.1:cabac=1:ref=5:analyse=0x133:me=umh:subme=9:chroma-me=1:deadzone-inter=21:deadzone-intra=11:b-adapt=2:rc-lookahead=60:vbv-maxrate=10000:vbv-bufsize=10000:qpmax=69:bframes=4:b-adapt=2:direct=auto:crf-max=51:weightp=2:merange=24:chroma-qp-offset=-1:sync-lookahead=2:psy-rd=1.00,0.15:trellis=2:min-keyint=23:partitions=all'; $configuration = $config->getConfig(); $hb = new HB\Handbrake($configuration); echo $hb->run();

Change log

Please see CHANGELOG for more information on what has changed recently., (*5)

Testing

bash $ composer test, (*6)

Contributing

Please see CONTRIBUTING and CODE_OF_CONDUCT for details., (*7)

Security

If you discover any security related issues, please email owzie123@gmail.com instead of using the issue tracker., (*8)

Credits

License

The MIT License (MIT). Please see License File for more information., (*9)

The Versions

25/02 2018

dev-master

9999999-dev

A PHP integration with the Handbrake CLI...

  Sources   Download

MIT

The Requires

  • php ^7.0

 

The Development Requires

25/02 2018

v1.0.4

1.0.4.0

A PHP integration with the Handbrake CLI...

  Sources   Download

MIT

The Requires

  • php ^7.0

 

The Development Requires

06/12 2017

dev-develop

dev-develop

A PHP integration with the Handbrake CLI.

  Sources   Download

MIT

The Requires

  • php ^7.1

 

The Development Requires

06/12 2017

v1.0.3

1.0.3.0

A PHP integration with the Handbrake CLI.

  Sources   Download

MIT

The Requires

  • php ^7.1

 

The Development Requires

20/11 2017

v1.0.2

1.0.2.0

A PHP integration with the Handbrake CLI.

  Sources   Download

MIT

The Requires

  • php ^7.1

 

The Development Requires

17/11 2017

v1.0.1

1.0.1.0

A PHP integration with the Handbrake CLI.

  Sources   Download

MIT

The Requires

  • php ^7.1

 

The Development Requires

05/03 2017

1.0.0

1.0.0.0

A PHP integration with the Handbrake CLI.

  Sources   Download

MIT

by Avatar PXgamer