### Install Jimaku using Install Script Source: https://github.com/aeyoll/jimaku/blob/main/README.md This command downloads and executes an installation script for 'jimaku'. It fetches the script from a GitHub raw URL and pipes it to 'bash' for execution. After installation, it's recommended to add '$HOME/.jimaku/bin' to your system's PATH. ```shell curl -fsSL https://raw.githubusercontent.com/aeyoll/jimaku/main/install.sh | bash ``` -------------------------------- ### Install Jimaku using Cargo Source: https://github.com/aeyoll/jimaku/blob/main/README.md This command installs the 'jimaku' subtitle downloader using the Rust package manager, Cargo. Ensure you have Rust and Cargo installed on your system before running this command. ```shell cargo install jimaku ``` -------------------------------- ### Download Subtitles using Jimaku Source: https://github.com/aeyoll/jimaku/blob/main/README.md This command demonstrates how to use the 'jimaku' tool to download subtitles for a specified video file. It takes the file path as an argument and allows specifying the desired language using the '--language' flag. For example, '--language=fr' requests French subtitles. ```shell jimaku ~/file/path/file.mp4 --language=fr ``` -------------------------------- ### Set API Keys for Subtitle Providers Source: https://github.com/aeyoll/jimaku/blob/main/README.md This snippet shows how to set environment variables for API keys required by subtitle providers like betaseries and opensubtitles. These keys are necessary for the jimaku tool to authenticate and access subtitle services. ```shell export BETA_SERIES_API_KEY="..." export OPEN_SUBTITLES_API_KEY="..." ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.