PHP Classes

File: documentation/examples.export-a-series-of-frames.php

Recommend this page to a friend!
  Classes of Oliver Lillie   PHP Video Toolkit   documentation/examples.export-a-series-of-frames.php   Download  
File: documentation/examples.export-a-series-of-frames.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: PHP Video Toolkit
Manipulate and convert videos with ffmpeg program
Author: By
Last change: Update of documentation/examples.export-a-series-of-frames.php
Date: 1 year ago
Size: 646 bytes
 

Contents

Class file image Download
<?php
   
   
require_once './includes/header.php';
   
?>

        <div class="span9">
          <h1>Examples</h1>
          <h2>Export a Series of Frames</h2>
          <p>Exporting a series of frames from a video file is very simple. The example below shows you how.</p>
        </div><!--/span-->
       
<?php
   
    $examples
= array(
        array(
           
'path' => BASE.'examples/extract-frames.php',
           
'name' => '',
           
'description' => '',
        ),
    );
   
    require_once
'./includes/examples.php';
   
    require_once
'./includes/comments.php';
   
    require_once
'./includes/footer.php';