public
Description: ffmpeg - Frame Accurate Seeking Extension - A library to accomplish frame-accurate seeking, and frame-counting, for video processing applications
Homepage:
Clone URL: git://github.com/lbrandy/ffmpeg-fas.git
name age message
file .gitignore Fri Jan 02 15:56:33 -0800 2009 Transition from sourceforce/svn. [lbrandy]
file COPYING.GPL Fri Jan 02 15:56:33 -0800 2009 Transition from sourceforce/svn. [lbrandy]
file COPYING.LGPL Fri Jan 02 15:56:33 -0800 2009 Transition from sourceforce/svn. [lbrandy]
file README Fri Jan 02 16:06:27 -0800 2009 Updated readme for github [lbrandy]
file build.sh Fri Jan 02 15:56:33 -0800 2009 Transition from sourceforce/svn. [lbrandy]
file ffmpeg_fas.c Fri Jan 02 15:56:33 -0800 2009 Transition from sourceforce/svn. [lbrandy]
file ffmpeg_fas.def Fri Jan 02 15:56:33 -0800 2009 Transition from sourceforce/svn. [lbrandy]
file ffmpeg_fas.h Fri Jan 02 15:56:33 -0800 2009 Transition from sourceforce/svn. [lbrandy]
file ffmpeg_fas.vcproj Fri Jan 02 15:56:33 -0800 2009 Transition from sourceforce/svn. [lbrandy]
file private_errors.h Fri Jan 02 15:56:33 -0800 2009 Transition from sourceforce/svn. [lbrandy]
file seek_indices.c Fri Jan 02 15:56:33 -0800 2009 Transition from sourceforce/svn. [lbrandy]
file seek_indices.h Fri Jan 02 15:56:33 -0800 2009 Transition from sourceforce/svn. [lbrandy]
directory test/ Fri Jan 02 15:56:33 -0800 2009 Transition from sourceforce/svn. [lbrandy]
README
Released under Lesser GNU Public License (LGPL)

This is an extension to the ffmpeg video decoding library meant to support
a variety of extra functionality in support of video processing applications.
The primary additional feature added is the ability to do frame-accurate seeking 
(by frame number). This is accomplished in a codec/format independant manner
using seek tables. 

It has been built and tested under Linux and Windows.

Features:
1) Simplified interface for video processing 
2) Frame-accurate seeking using a seek-table
3) Online creation of a seek-table through normal decoding
4) Saving and loading of seek-tables

Getting up and running:
The frame-accurate seek library extension to ffmpeg requires ffmpeg. 
Getting the most recent version of ffmpeg and building it from source is
recommended:

svn checkout svn://svn.mplayerhq.hu/ffmpeg/trunk ffmpeg

The test/example build script requires ffmpeg be checked out (or symlinked)
and built (./configure ; make) from the base directory.