2012-04-13 10:20:54 +02:00
|
|
|
{
|
|
|
|
|
"name": "php-ffmpeg/php-ffmpeg",
|
|
|
|
|
"type": "library",
|
2012-05-11 00:36:57 +02:00
|
|
|
"description": "FFMpeg PHP, an Object Oriented library to communicate with AVconv / ffmpeg",
|
2022-02-09 14:32:43 +01:00
|
|
|
"keywords": [
|
|
|
|
|
"video processing",
|
|
|
|
|
"video",
|
|
|
|
|
"audio processing",
|
|
|
|
|
"audio",
|
|
|
|
|
"avconv",
|
|
|
|
|
"ffmpeg",
|
|
|
|
|
"avprobe",
|
|
|
|
|
"ffprobe"
|
|
|
|
|
],
|
2012-04-13 10:20:54 +02:00
|
|
|
"license": "MIT",
|
|
|
|
|
"authors": [
|
2016-03-06 23:19:40 +01:00
|
|
|
{
|
|
|
|
|
"name": "Romain Neutron",
|
|
|
|
|
"email": "imprec@gmail.com",
|
|
|
|
|
"homepage": "http://www.lickmychip.com/"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "Phraseanet Team",
|
|
|
|
|
"email": "info@alchemy.fr",
|
|
|
|
|
"homepage": "http://www.phraseanet.com/"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "Patrik Karisch",
|
|
|
|
|
"email": "patrik@karisch.guru",
|
|
|
|
|
"homepage": "http://www.karisch.guru"
|
2016-12-21 10:26:51 -03:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "Romain Biard",
|
|
|
|
|
"email": "romain.biard@gmail.com",
|
|
|
|
|
"homepage": "https://www.strime.io/"
|
2017-11-05 16:50:24 +01:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "Jens Hausdorf",
|
|
|
|
|
"email": "hello@jens-hausdorf.de",
|
|
|
|
|
"homepage": "https://jens-hausdorf.de"
|
2022-02-09 14:32:43 +01:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "Pascal Baljet",
|
|
|
|
|
"email": "pascal@protone.media",
|
|
|
|
|
"homepage": "https://protone.media"
|
2016-03-06 23:19:40 +01:00
|
|
|
}
|
2012-04-13 10:20:54 +02:00
|
|
|
],
|
|
|
|
|
"require": {
|
2022-02-09 14:32:43 +01:00
|
|
|
"php": "^8.0 || ^8.1",
|
|
|
|
|
"evenement/evenement": "^3.0",
|
|
|
|
|
"psr/log": "^1.0 || ^2.0 || ^3.0",
|
|
|
|
|
"spatie/temporary-directory": "^2.0",
|
|
|
|
|
"symfony/process": "^5.4 || ^6.0",
|
|
|
|
|
"symfony/cache": "^5.4 || ^6.0"
|
2012-04-13 10:20:54 +02:00
|
|
|
},
|
2012-10-30 23:52:10 +01:00
|
|
|
"suggest": {
|
2016-03-06 23:19:40 +01:00
|
|
|
"php-ffmpeg/extras": "A compilation of common audio & video drivers for PHP-FFMpeg"
|
2012-10-30 23:52:10 +01:00
|
|
|
},
|
2012-05-25 15:44:59 +02:00
|
|
|
"require-dev": {
|
2022-02-09 14:32:43 +01:00
|
|
|
"phpunit/phpunit": "^9.5.10"
|
2012-05-25 15:44:59 +02:00
|
|
|
},
|
2012-04-13 10:20:54 +02:00
|
|
|
"autoload": {
|
2022-02-09 14:32:43 +01:00
|
|
|
"psr-4": {
|
|
|
|
|
"FFMpeg\\": "src/FFMpeg",
|
|
|
|
|
"Alchemy\\BinaryDriver\\": "src/Alchemy/BinaryDriver"
|
2012-04-13 10:20:54 +02:00
|
|
|
}
|
2013-06-25 21:52:37 +02:00
|
|
|
},
|
2016-03-06 23:38:04 +01:00
|
|
|
"autoload-dev": {
|
|
|
|
|
"psr-4": {
|
2022-02-09 14:32:43 +01:00
|
|
|
"Alchemy\\Tests\\BinaryDriver\\": "tests/Alchemy/BinaryDriver",
|
|
|
|
|
"Tests\\FFMpeg\\": "tests/FFMpeg"
|
2013-06-25 21:52:37 +02:00
|
|
|
}
|
2012-10-31 00:07:15 +01:00
|
|
|
}
|
2022-02-09 14:32:43 +01:00
|
|
|
}
|