CCExtractor - Official version maintained by the core team
Go to file
2017-07-17 08:59:00 +00:00
.github Add contributors guide, update readme 2017-03-06 21:29:21 +01:00
api making changes to write wrapper 2017-07-17 08:59:00 +00:00
Dictionary Added names of characters from S4E01 2017-01-05 02:02:25 +05:30
docs Merge branch 'pr/n743_anshul1912' 2017-06-05 13:21:24 -07:00
gsoc/skrill segregating the code and changing myarguments and argument_count. Also, gsoc directory has been created. 2017-07-06 22:58:23 +00:00
linux making changes to write wrapper 2017-07-17 08:59:00 +00:00
mac Add ocr, hardsubx and autotools support for mac 2017-05-11 06:19:16 +03:00
OpenBSD Version 0.77 2015-06-20 17:00:19 +05:30
package_creators Add .rpm package generation script 2017-04-18 16:20:15 +05:30
src making changes to write wrapper 2017-07-17 08:59:00 +00:00
tests Remove SBS stuff from decoder_init 2017-01-15 23:55:41 +05:00
windows Add support for file split on keyframe (-segmentonkeyonly) 2017-07-06 11:57:17 -07:00
.gitignore adding .pyc to gitignore 2017-07-06 23:34:08 +00:00
raspberrypi.md Fix Makefile compatibility issues with Raspberry pi 2016-12-02 21:14:25 -05:00
README.md Add ocr, hardsubx and autotools support for mac 2017-05-11 06:19:16 +03:00
Vagrantfile Added Vagrantfile 2016-12-13 14:32:35 +03:00

logo

CCExtractor

CCExtractor is a tool that produces subtitles from TV use. Global accessibility (all users, all content, all countries) is the goal. With so many different formats, this is a constantly moving target, but we intend to keep up with all sources and formats.

Carlos' version (mainstream) is the most stable branch.

Google Summer of Code 2017

CCExtractor has been invited to Summer of Code 2017! Another summer of coding fun.

If you are a student currently enrolled in university most likely you are eligible to participate. Read more at:

Installation and Usage

Downloads for precompiled binaries and source code can be found on our website.

Extracting subtitles is relatively simple. Just run the following command:

ccextractor <input>

This will extract the subtitles.

More usage information can be found on our website:

Compiling

Debian/Ubuntu

# make sure you have CCExtractor repository forked
# clone repository
sudo apt-get install -y git
git clone https://github.com/%USERNAME%/ccextractor.git # paste your github username

# installing dependencies
sudo apt-get install -y gcc
sudo apt-get install -y libcurl4-gnutls-dev
sudo apt-get install -y tesseract-ocr
sudo apt-get install -y tesseract-ocr-dev
sudo apt-get install -y libleptonica-dev

# compiling (Choose any one of 2 methods)
METHOD 1: If you don't want to obtain object files
cd ccextractor/linux
./build

METHOD 2: Standard linux compilation through Autoconf scripts
sudo apt-get install autoconf      #Dependency to generate configuration script
cd ccextractor/linux
./autogen.sh
./configure
make

# test your build
./ccextractor

Fedora

# make sure you have CCExtractor repository forked
# clone repository
sudo yum install -y git
git clone https://github.com/%USERNAME%/ccextractor.git # paste your github username

# installing dependencies
sudo yum install -y gcc
sudo yum install -y tesseract-devel # leptonica will be installed automatically

# compiling (Choose any one of the 3 methods)
METHOD 1: If you don't want to obtain object files
cd ccextractor/linux
./build

METHOD 2: Standard linux compilation through Autoconf scripts
sudo dnf install autoconf automake      #Dependency to generate configuration script
cd ccextractor/linux
./autogen.sh
./configure
make

# test your build
./ccextractor

Arch Linux

# make sure you have CCExtractor repository forked
# clone repository
sudo pacman -S git
git clone https://github.com/%USERNAME%/ccextractor.git # paste your github username

# building installation package (.pkg.tar.xz) or installing directly
cd ccextractor/package_creators
./arch.sh

Redhat Package Manager (rpm) based Linux Distributions

# make sure you have CCExtractor repository forked
# clone repository
# install git via source
git clone https://github.com/%USERNAME%/ccextractor.git # paste your github username

# building installation package (.rpm)
cd ccextractor/package_creators
./rpm.sh

OSX

#PRE-REQUISITES:
#Installing required packages via Homebrew
brew install pkg-config
brew install autoconf automake libtool
brew install tesseract
brew install leptonica 
#After installing Make sure tesseract and leptonica are detected by pkg-config

METHOD 1: Using build.command script
cd ccextractor/mac
./build.command

METHOD 2: Using autoconf scripts
cd ccextractor/mac
./autogen.sh
./configure
make

Windows

Open the windows/ccextractor.sln file with Visual Studio (2015 at least), and build it. Configurations "(Debug|Release)-Full" includes dependent libraries which are used for OCR.

Support

By far the best way to get support is by opening an issue at our issue tracker.

When you create a new issue, please fill in the needed details in the provided template. That makes it easier for us to help you more efficiently.

You can also contact us by email or chat with the team in Slack.

Contributing

You can contribute to the project by forking it, modifying the code, and making a pull request to the repository. We have some rules, outlined in the contributor's guide.

News & Other Information

News about releases and modifications to the code can be found in the CHANGES.TXT file.

For more information visit the CCExtractor website: https://www.ccextractor.org