selective/video-type

1.1.0 2020-07-23 05:39 UTC

This package is auto-updated.

Last update: 2024-04-11 18:17:46 UTC


README

Video type detection library for PHP.

Latest Version on Packagist Software License build Coverage Status Quality Score Total Downloads

Features

  • Detection of the video type based on its header
  • No dependencies
  • Very fast

Supported formats

  • AVI (Audio Video Interleave)
  • MKV
  • MP4
  • MPEG-1 Part 2
  • MPEG-2 Part 2
  • OGG OGV
  • 3G2 3GPP2
  • 3GP 3GPP
  • WEBM
  • QuickTime
  • RealMedia
  • WMV (Windows Media Video)
  • FLV (Adobe Flash Video)
  • MXF (Material Exchange Format)

Requirements

  • PHP 7.2+

Installation

composer require selective/video-type

Usage

Detect the video type of file

use Selective\VideoType\VideoTypeDetector;
use Selective\VideoType\Provider\DefaultVideoProvider;
use SplFileObject;

$file = new SplFileObject('example.mp4');

$detector = new VideoTypeDetector();

// Add video detectors
$detector->addProvider(new DefaultVideoProvider());
$videoType = $detector->getVideoTypeFromFile($file);

// Get the video format
echo $videoType->getFormat(); // mp4

// Get the mime type
echo $videoType->getMimeType(); // video/mp4

Detect the video type of in-memory object

$video = new SplTempFileObject();

$video->fwrite('my file content');

$detector = new VideoTypeDetector();

// Add video detectors
$detector->addProvider(new DefaultVideoProvider());

echo $detector->getVideoTypeFromFile($file)->getFormat();

License

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