PHP Classes

File: documentation/examples.export-a-single-frame.php

Recommend this page to a friend!
  Classes of Oliver Lillie   PHP Video Toolkit   documentation/examples.export-a-single-frame.php   Download  
File: documentation/examples.export-a-single-frame.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-single-frame.php
Date: 1 year ago
Size: 833 bytes
 

Contents

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

        <div class="span9">
          <h1>Examples</h1>
          <h2>Export a Single Frame</h2>
          <p>PHPVideoToolkit makes it incredible simple to extract a single frame from a video. Below several examples exist to show you how.</p>
        </div><!--/span-->
       
<?php
   
    $examples
= array(
        array(
           
'path' => BASE.'examples/extract-frame.example1.php',
           
'name' => '',
           
'description' => '',
        ),
        array(
           
'path' => BASE.'examples/extract-frame.example2.php',
           
'name' => '',
           
'description' => '',
        ),
    );
   
    require_once
'./includes/examples.php';
   
    require_once
'./includes/comments.php';
   
    require_once
'./includes/footer.php';