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
import asyncio
from yuisub import SubtitleTranslator
# Using an asynchronous environment
async def main() -> None:
translator = SubtitleTranslator(
# if you wanna use audio input
# torch_device='cuda',
# whisper_model='medium',
model='gpt_model_name',
api_key='your_openai_api_key',
base_url='api_url',
bangumi_url='https://bangumi.tv/subject/424883/',
bangumi_access_token='your_bangumi_token',
)
sub_zh, sub_bilingual = await translator.get_subtitles(sub='path/to/sub.srt') # Or audio='path/to/audio.mp3',
sub_zh.save('path/to/output_zh.ass')
sub_bilingual.save('path/to/output_bilingual.ass')
asyncio.run(main())
License
This project is licensed under the GPL-3.0 license - 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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file yuisub-1.3.1-py3-none-any.whl.
File metadata
- Download URL: yuisub-1.3.1-py3-none-any.whl
- Upload date:
- Size: 23.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e02a34b8889c82a71e787d72a387597595588f0bfe952bb15eed09f69d9d5729
|
|
| MD5 |
55c13956ecd9b9d013b16877b5673f99
|
|
| BLAKE2b-256 |
2010431ae2e6f2f65c6c00d5aa794a8c62df7ab2870f8fa9358de524eb746219
|