bragir translator cli
Project description
Bragir
Description
The bragir CLI is a command-line application built using Click. Its primary purpose is to handle and generate SubRip Subtitle (SRT) files using ChatGPT and Whisper from Openai.
Features
- Translation: Translate the content of SRT files from one language to another using ChatGPT.
- Transcription: Trancribe the content of video and audio files from one language to another using Whisper.
- Batch Processing: Process a single file, multiple files, or an entire directory, providing flexibility and efficiency.
- Easy-to-Use Interface: Utilize a user-friendly command-line interface powered by Click, making translation tasks straightforward.
Table of Contents
Installation
In order to use the full potential of Bragir, FFmpeg is needed to be installed on the system and you need to obtain an Openai key.
FFmpeg
Macos
Using brew
brew update && brew install ffmpeg
Linux
Update avaiable linux packages
sudo apt update
Install ffmpeg
sudo apt install ffmpeg
Windows
Download the .exe from official ffmpeg-website
Extract the contents of the zip file and rename the file to FFmpeg.
Move the folder into the main drive (Usually c:/)
Open command prompt as administrator, and add FFmpeg to your system path
setx /m PATH "C:\ffmpeg\bin;%PATH%"
Verifyting the installation In order to see if the installation of FFmpeg is correct, run the following command
ffmpeg --version
If a version is displayed, then FFmpeg is installed correctly.
OpenAI
Currently, this tool relise on OpenAIs API. That means that an OpenAI api-key is crucial. See the following resource of how to get an OpenAI api-key
Bragir
Use pip to install Bragir
pip install bragir
Check if installation is complete
bragir --version
If a version is displayed, then Bragir is installed correctly.
Usage
Bragir comes with two commands, transcribe and translate. Transcribe will always generate an file with extension .srt
. The translate command has only been tested with SRT-files, however other files would work. However, Bragir is not intended to translate other file types
In order to use bragir, the api key can be loaded into the session or saved in the config.ini file (Default at ~/.bragir/cli/config.ini
).
Load Openai key as an enviroment variable into current session
export OPENAI_KEY=<VALUE>
Examples
Translate a single file to one language:
bragir translate <FILE_PATH> --language French
Translate one file to multiple languages:
bragir translate <FILE_PATH> --language French --language German
Translate files in a directory to multiple languages:
bragir translate <DIRECTORY_PATH> --language French --language German
Transcribe file:
bragir transcribe <FILE_PATH>
Transcribe files in a directory:
bragir transcribe <DIRECTORY_PATH>
Contributing
If you want to contribute to this project, please use the following steps:
- Fork the project.
- Create a new branch (git checkout -b feature/awesome-feature).
- Commit your changes (git commit -m 'Add some feature').
- Push to the branch (git push origin feature/awesome-feature).
- Open a pull request.
Commit Message Structure
When writing commit messages, use one of the following categories to clearly describe the purpose of your commit:
- feat / feature: ✨ Introducing new features
- fix / bugfix: 🐛 Addressing bug fixes
- perf: 🚀 Enhancing performance
- refactor: 🔄 Refactoring code
- test / tests: ✅ Adding or updating tests
- build / ci: 🛠️ Build system or CI/CD updates
- doc / docs: 📚 Documentation changes
- style: 🎨 Code style or formatting changes
- chore: 🔧 Miscellaneous chores
- other: 🌟 Other significant changes
Example Commit Messages
feat: Add cool new feature
fix: Resolve unexpected behavior with translation
License
This project is licensed under the MIT License.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file bragir-1.2.2.tar.gz
.
File metadata
- Download URL: bragir-1.2.2.tar.gz
- Upload date:
- Size: 16.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d83ea43ec134aa260c12ce76c291d7e3b04c6927013b40f03e6cd92dec97428a |
|
MD5 | 4f245945e41a29a0878c1a148ad5e09d |
|
BLAKE2b-256 | fc37e39672404c7df1933727fa582327458e20c80384878555a5f9eb84d3780a |
File details
Details for the file bragir-1.2.2-py3-none-any.whl
.
File metadata
- Download URL: bragir-1.2.2-py3-none-any.whl
- Upload date:
- Size: 21.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 99816dcda0fcd21207e54627746200b619469e98e5b6224a05319cc640df56d1 |
|
MD5 | ea458ddff540bb738abc6e12d3b3c8e5 |
|
BLAKE2b-256 | c7477f8e8fcc37198ee1050c9329f9eb143457f07986944f349ed09c9899cf56 |