Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aeyoll/jimaku
A subtitle downloader written in Rust
https://github.com/aeyoll/jimaku
betaseries opensubtitles rust subtitle subtitle-downloader
Last synced: about 2 months ago
JSON representation
A subtitle downloader written in Rust
- Host: GitHub
- URL: https://github.com/aeyoll/jimaku
- Owner: aeyoll
- License: mit
- Created: 2022-06-18T16:05:03.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-01-19T15:28:06.000Z (almost 2 years ago)
- Last Synced: 2024-10-11T00:46:07.622Z (2 months ago)
- Topics: betaseries, opensubtitles, rust, subtitle, subtitle-downloader
- Language: Rust
- Homepage:
- Size: 56.6 KB
- Stars: 6
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Jimaku
[![GitHub Actions workflow status](https://github.com/aeyoll/jimaku/workflows/ci/badge.svg)](https://github.com/aeyoll/jimaku/actions)
[![LICENSE](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
[![Minimum rustc version](https://img.shields.io/badge/rustc-1.57.0+-lightgray.svg)](#rust-version-requirements)
[![Conventional commits](https://img.shields.io/badge/Conventional%20Commits-1.0.0-yellow.svg)](https://conventionalcommits.org)A subtitle downloader written in Rust
Providers
---_jimaku_ can search and download subtitles from the following providers:
- [betaseries](https://www.betaseries.com/)
- [opensubtitles](https://www.opensubtitles.org/)Setup
---To be able to use _jimaku_, you need to have api keys for each provider.
```shell
export BETA_SERIES_API_KEY="..."
export OPEN_SUBTITLES_API_KEY="..."
```Install
---With cargo:
```shell
cargo install jimaku
```Or use the install-script and add `$HOME/.jimaku/bin` to your `$PATH`.
````shell
curl -fsSL https://raw.githubusercontent.com/aeyoll/jimaku/main/install.sh | bash
````Usage
---```shell
jimaku ~/file/path/file.mp4 --language=fr
```Rust version requirements
---Rust >= 1.57.0+