Difference between revisions of "Video Processing Tools"
From NMSL
Line 6: | Line 6: | ||
== I-Frame Extractor == | == I-Frame Extractor == | ||
− | [https://cs-nsl-svn.cs.surrey.sfu.ca/cssvn/nsl-members/harvey/thesis/VideoCopyDetection/Source%20Code/SignatureBuilder.c I-frame Extractor] | + | |
+ | *You will need these Libraries: | ||
+ | **[https://cs-nsl-svn.cs.surrey.sfu.ca/cssvn/nsl-members/harvey/thesis/VideoCopyDetection/ffmpeg_static_libraries/libavcodec.a libavcodec.a] | ||
+ | |||
+ | **[https://cs-nsl-svn.cs.surrey.sfu.ca/cssvn/nsl-members/harvey/thesis/VideoCopyDetection/ffmpeg_static_libraries/libavcodec.a libavcodec.a] | ||
+ | |||
+ | **[https://cs-nsl-svn.cs.surrey.sfu.ca/cssvn/nsl-members/harvey/thesis/VideoCopyDetection/ffmpeg_static_libraries/libavcodec.a libavcodec.a] | ||
+ | |||
+ | **[https://cs-nsl-svn.cs.surrey.sfu.ca/cssvn/nsl-members/harvey/thesis/VideoCopyDetection/ffmpeg_static_libraries/libavcodec.a libavcodec.a] | ||
+ | |||
+ | * [https://cs-nsl-svn.cs.surrey.sfu.ca/cssvn/nsl-members/harvey/thesis/VideoCopyDetection/Source%20Code/SignatureBuilder.c I-frame Extractor] | ||
+ | |||
+ | *Compile: | ||
+ | <code><pre> | ||
+ | gcc -o extractor I-FrameExtractor.c /usr/local/lib/libavformat.a /usr/local/lib/libavdevice.a /usr/local/lib/libavcodec.a /usr/local/lib/libswscale.a /usr/local/lib/libavutil.a -lm -lpthread -lfaac -lz -lmp3lame -lopencore-amrnb -lopencore-amrwb -lvorbis -lvpx -lx264 -ltheoradec -ltheoraenc -lvorbisenc -lxvidcore -lbz2 -lasound -ljack -lgdk-x11-2.0 -w | ||
+ | </pre></code> |
Revision as of 17:54, 8 March 2011
FFmpeg
FFmpeg is a complete, cross-platform solution to record, convert and stream audio and video. It includes libavcodec - the leading audio/video codec library
FFprobe SVN r92
I-Frame Extractor
- You will need these Libraries:
- Compile:
gcc -o extractor I-FrameExtractor.c /usr/local/lib/libavformat.a /usr/local/lib/libavdevice.a /usr/local/lib/libavcodec.a /usr/local/lib/libswscale.a /usr/local/lib/libavutil.a -lm -lpthread -lfaac -lz -lmp3lame -lopencore-amrnb -lopencore-amrwb -lvorbis -lvpx -lx264 -ltheoradec -ltheoraenc -lvorbisenc -lxvidcore -lbz2 -lasound -ljack -lgdk-x11-2.0 -w