Skip to content

rainyedge/comskip-1

This branch is up to date with hangingman/comskip:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

52 Commits
Sep 4, 2013
Nov 19, 2013
Feb 24, 2014
Nov 14, 2013
Nov 14, 2013
Nov 14, 2013
Nov 14, 2013
Nov 16, 2013
Nov 17, 2013
Jul 21, 2014
Dec 30, 2013
Nov 14, 2013
Jul 21, 2014
Nov 20, 2013
Jun 4, 2014
Jun 4, 2014
Oct 25, 2013
Sep 1, 2013
Sep 1, 2013
Oct 26, 2013
Oct 26, 2013
Jul 21, 2014
Jan 13, 2018
Sep 1, 2013
Jun 4, 2014

Repository files navigation

Comskip - a free MPEG commercial detector

Upstream project:
  http://www.kaashoek.com/comskip/
  svn://svn.kaashoek.com/

Application compatibility: http://msdn.microsoft.com/en-us/library/windows/desktop/dd371711%28v=vs.85%29.aspx

Since Comskip calls functions from the DDRAW Lock API, it cannot be manifested for Windows 7.  That does *not* mean it will not run on Windows 7 or 8.

This application depends on three 3rd party libraries:

  x264: https://www.videolan.org/developers/x264.html (optional)
  ffmpeg: http://www.ffmpeg.org/download.html
  argtable2: http://argtable.sourceforge.net/

To build Comskip, a MinGW compiler is required.  Grab the build script from here:

http://ffmpeg.zeranoe.com/blog/

Open it in a text editor; near the top, change the GCC version to 4.8.1 and the GMP version to 5.1.2.  Search for "svn checkout" to locate where MinGW is downloaded and add "-r 6155" to both lines. Now run the script and build at least the 32-bit toolchain.

Once the toolchain is built, add the binaries to your PATH then download the dependent libraries listed above.  Configure each as below, copy the installed static libraries and headers into the toolchain's sysroot, then run make in this directory to build Comskip.

== x264 ==

./configure --host=i686-w64-mingw32 --cross-prefix=i686-w64-mingw32- --enable-static --enable-win32thread 

== ffmpeg ==

Comskip uses interfaces which were removed as of FFmpeg 2.  You'll first need to download the latest release in the 1.2 tree and apply the patch in the contrib directory before proceeding.

git clone git://source.ffmpeg.org/ffmpeg.git ffmpeg
cd ffmpeg
git checkout -b comskip n1.2.3
patch -p1 < ../ffmpeg-unicode.patch
./configure --arch=x86 --target-os=mingw32 --cross-prefix=i686-w64-mingw32- --enable-gpl --enable-version3 --disable-stripping --enable-libx264 --disable-shared --enable-static

About

Comskip, a free MPEG commercial detector

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C 98.8%
  • Other 1.2%