Skip to content

Plugin for video editing apps to do FrameServing. Pull requests welcome!

License

Notifications You must be signed in to change notification settings

hxysh/frame-server

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Frameserver

Frameserver is a plugin for video editing apps to do FrameServing, Image Sequence export and AudioServing.

Features

Frameserving and Audioserving are the techniques used to transfer audio/video data from one application to another without doing a full fledged render and temporary files. Frameserver is a plugin for NLEs enabling them to export their timeline audio/video data outside so that other applications can use the timeline directly as input.

Another use of the Frameserver is to serve audio/video data to an application that does not understand the source format. If you have a video editor that can open .MOV files and your MPEG encoder can read only .AVI input files, you can open the .MOV file in your NLE and use Frameserver to serve the a/v data to your MPEG encoder. This increases compatibility between applications.

Frameserver can also export the video from your NLE as an Image sequence. Frames can be saved in lossless BMP, TIFF, PNG and high quality JPEG formats.

Build

Frameserver's build uses the SCons build system (you can find the build configs in the files SConstruct and SConscript throughout the codebase). Most of the executables get built using MS Visual Studio 6.0 and some of the newer binaries require MS Visual Studio 2008.

Requirements to build

  1. MS Visual Studio 6.0, for most of the plug-ins
  2. MS Visual Studio 2008 (can use express edition), for Vegas Pro and Premiere Pro plug-ins
  3. A Visual Studio 6.0 compatible platform SDK. I use MS Windows Server 2003 R2 Platform SDK (http://www.microsoft.com/downloads/details.aspx?FamilyID=484269e2-3b89-47e3-8eb7-1f2be6d7123a)
  4. Latest version of Windows platform SDK. I use Windows SDK 6.1 for Windows Server 2008 and .NET Framework 3.5 (http://www.microsoft.com/downloads/en/details.aspx?FamilyID=e6e1c3df-a74f-4207-8586-711ebe331cdc&displaylang=en - Install both 32 bit and 64 bit components).
  5. Nullsoft Scriptable Install system, for the installer (NSIS, http://nsis.sourceforge.net/)
  6. Python, for build scripts (tested with version 2.6, http://www.python.org)
  7. SCons (tested with version 1.2.0, http://www.scons.org)
  8. You will need the Plug-in SDKs for all the supported host applications. More info about this in the Host SDKs section below.

Host SDKs

Frameserver works as a plug-in for various video editing 'host' applications and allows exporting the rendered video from them as .avi files. To build the plug-in for each host application, you need to have the host's plug-in SDK. You need to download each plug-in SDK yourself from the host application's website, because their Terms & Conditions do not allow redistributing them with the Frameserver codebase.

Once downloaded, place the host SDK files in the following hierarchy:

src/SDKs
  |-- EditStudio
  |     +-- Src
  |     +-- Include
  |           +-- ES_Plugin
  |-- MediaStudioPro
  |     +-- Include
  |     +-- Lib
  |          +-- Debug
  |          +-- Release
  +-- Premiere
  |     +-- compiler
  |     +-- cs4
  |     +-- cs5
  +-- Vegas
  |     +-- ffp
  |     +-- fio
  |          +-- libFileIO
  +-- VegasV2
  |     +-- libFileIO
  +-- Wax

Steps to build

  1. Open a command prompt
  2. Set the following environment variables in your command line (you can also do this permanently in your "System properties" dialog under the "Advanced > Environment Variables" section): * INCLUDE: set it to your VC6 compatible platform SDK include and include\mfc directories. For e.g.
    set INCLUDE="C:\Microsoft SDKs\Windows Server 2003 PSDK\include;C:\Microsoft SDKs\Windows Server 2003 PSDK\include\mfc;" * LIB: set it to your VC6 compatible platform SDK lib directory. For e.g.
    set LIB=C:\Microsoft SDKs\Windows Server 2003 PSDK\lib; * Add your python install directory to the path. (this is where SCons gets installed by default as well). For e.g.
    set PATH=%PATH%;C:\Python26
  3. From the root directory of the codebase (where you'll find the file "SConstruct"), run "scons installer". This should build the installer and place it under "bin\fssetup.exe"

About

Plugin for video editing apps to do FrameServing. Pull requests welcome!

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 65.1%
  • C 24.6%
  • Python 5.5%
  • NSIS 4.5%
  • R 0.3%