Git Product home page Git Product logo

capgenx's Introduction

Capgen

alt text

Capgen is an application that transcribes audio and video using Whisper neural network created by OpenAI. It has a minimal UI that makes it easier for absolutely anyone can use to transcribe or translate all sorts of audio and videos such as podcasts, movies, documentaries, etc. Capgen is also available as a Python command line application here.

Download

For Linux users, you can download the application HERE. After downloading, unzip the archive and run the application executable.

Features

  • Source language transcription of audio and video.
  • Source language to English translation.
  • Tiny, base and small models available.
  • Beamsearch and greedy decoding methods are available.

TODO list

  • Support Windows and Mac platforms.
  • Provide GPU support.

Architecture

Capgen is written entirely in C++ and C. It depends on the following libraries:

  • FFmpeg: Used to decode media files.
  • Libtorch:Performs inference.
  • wxWidgets: Provides the graphical user interface.

Build process(Linux platform)

Capgen is designed so that it can be used on Linux, Windows and Mac but currently, it is tested on the Linux platform only.

Before starting the build process ensure you have the following:

  • Cmake: Capgen's build system.
  • GNU Make: Builds the application.
  • Nasm or Yasm assembler. Required to build FFmpeg.
  • Gtk+-3.0: Required to build wxWidgets on Linux.
  • Libcurl: Required to allow downloading ability.
  • You can install all of these by running:
sudo apt-get install make cmake nasm gtk+-3.0 libcurl4-openssl-dev

Build the application by running the following commands:

git clone --recurse-submodules https://github.com/iangitonga/capgenx.git
cd capgenx/
python3 configure.py
mkdir build
cmake -S . -B build/ -DCMAKE_BUILD_TYPE=Release
cd build/
make

After build process is completed the built application is located in capgenx/bin directory from which you can run and test the application.

If you make changes in the source code, you can rebuild by just re-running make from the build directory.

capgenx's People

Contributors

iangitonga avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.