Auto translation of new anime episodes based on Yui-MHCP001
Project description
yuisub
Auto translation of new anime episodes based on Yui-MHCP001 LLM
Install
Make sure you have Python >= 3.9 installed on your system
pip install yuisub
If you wanna use the a2t
module, you need to install Whisper
first
# pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118
pip install openai-whisper
Command Line Usage
yuisub
can be used from the command line to generate bilingual ASS files. Here's how to use it:
yuisub -h # Displays help message
Library
yuisub
can also be used as a library
Example
from yuisub import translate, bilingual, load
from yuisub.a2t import WhisperModel
# sub from audio
model = WhisperModel(name="medium", device="cuda")
sub = model.transcribe(audio="path/to/audio.mp3")
# sub from file
# sub = load("path/to/input.srt")
# generate bilingual subtitle
sub_zh = translate(
sub=sub,
model="gpt_model_name",
api_key="your_openai_api_key",
base_url="api_url",
bangumi_url="https://bangumi.tv/subject/424883/"
)
sub_bilingual = bilingual(
sub_origin=sub,
sub_zh=sub_zh
)
# save the ASS files
sub_zh.save("path/to/output.zh.ass")
sub_bilingual.save("path/to/output.bilingual.ass")
License
This project is licensed under the BSD 3-Clause - see the LICENSE file for details.
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 Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
yuisub-1.1.1-py3-none-any.whl
(21.8 kB
view details)
File details
Details for the file yuisub-1.1.1-py3-none-any.whl
.
File metadata
- Download URL: yuisub-1.1.1-py3-none-any.whl
- Upload date:
- Size: 21.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ecaca085b3d3a94e47237c054ada41866ba7ae36621aa39f180098e5370c32cf |
|
MD5 | 01fe914f79b27befa5c5868ff84b0ee2 |
|
BLAKE2b-256 | b3023ad713a8542c8dbd803fb7b1699f68048d5fb4f80991d5b249f4ddcf378d |