boxuk/describr-bundle

A Symfony2 bundle that integrates the Describr library

1.0.0 2013-02-15 17:10 UTC

This package is auto-updated.

Last update: 2024-03-26 15:39:15 UTC


README

This bundle integrates the Describr library into your Symfony2 project, allowing it to examine files and extract metadata from them.

Installation

Download the bundle

You can download an archive of the bundle and unpack it in the vendor/bundles/BoxUK/Bundles/DescribrBundle directory of your application.

Installing via Composer (recommended)

The bundle can be installed using Composer by adding the following to your composer.json:

require: {
    "boxuk/describr-bundle": "dev-master"
}

Register the bundle

You must register the bundle in your kernel:

<?php

// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(

        // ...

        new \BoxUK\Bundle\DescribrBundle\BoxUKDescribrBundle()
    );

    // ...
}

Usage

The bundle provides a boxuk_describr.analyzer service which can be used to determine metadata for any instance of Symfony\Component\HttpFoundation\File\File:

<?php

public function analyzeMetadata(File $file)
{
    $service = $this->getContainer()->get('boxuk_describr.analyzer');
    
    $metadata = $service->analyze($file);
    
    // Instance of BoxUK\Describr\MediaFileAttributes
    return $metadata;
}

See the Describr documentation for more details.