GithubHelp home page GithubHelp logo

php-ffprobe's Introduction

php-ffprobe

PHP wrapper class for ffprobe media prober.

This simple class was born as a response on StackOverflow.

I had plans to further improve it a lot and release as a Composer package, but in the mean time I began to be very busy at work and had no time to continue.

Luckily, at the daily rush I found the project PHP-FFMpeg which is far beyond anything that I had planned to do. Since I'm using this great package in my projects, I have plans to be contributing on it to make it even better to the community. I strongly recommend it!

And if you want to make your own wrapper for ffprobe, this base class should help you get a start. :)

php-ffprobe's People

Contributors

paulofreitas avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

php-ffprobe's Issues

json_decode() only works with UTF-8 encoded strings.

First of all, THANKS FOR YOUR COOOOOOL CODE~

There need utf8_encode() between json_decode() and shell_exec().

From

$json = json_decode(shell_exec(sprintf('ffprobe %s %s', $options, escapeshellarg($filename))));

To

$json = json_decode(utf8_encode(shell_exec(sprintf('ffprobe %s %s', $options, escapeshellarg($filename)))));

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.