Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/axyiee/atsu
🇯🇵 Watch anime from the command line
https://github.com/axyiee/atsu
Last synced: about 1 month ago
JSON representation
🇯🇵 Watch anime from the command line
- Host: GitHub
- URL: https://github.com/axyiee/atsu
- Owner: axyiee
- License: mit
- Created: 2022-12-17T23:34:42.000Z (almost 2 years ago)
- Default Branch: trunk
- Last Pushed: 2023-02-24T14:01:19.000Z (over 1 year ago)
- Last Synced: 2024-05-19T18:22:48.884Z (6 months ago)
- Language: Shell
- Size: 14.6 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# atsu
Watch YouTube and anime from the command line
## Installation
**Requirements:**
- bash
- [pup] - HTML parsing and extraction tool
- [jq] - JSON parsing tool
- [aria2] - Download manager
- [mpv] or any other video player[pup]: https://github.com/ericchiang/pup
[jq]: https://stedolan.github.io/jq/
[aria2]: https://aria2.github.io/
[mpv]: https://mpv.io/```bash
git clone https://code.axyria.dev/atsu
doas cp ./atsu/atsu /usr/local/bin
```## Usage
```bash
Usage: atsu [options]
Options:
-h, --help Show this help message and exit.
-s, --search Search for anime episodes and play them.
-i, --index The episode number to be searched on. You can set it to
'all' to search for all episodes.
-p, --player The media player used to play multimedia. Default is mpv,
or umpv if available.
# Example: atsu -s "one piece" -i 1
# atsu -s "neon genesis evangelion" -i all -p vlc
```## Extra
### YouTube Player
**Requirements:**
- bash
- [pup] - HTML parsing and extraction tool
- [yt-dlp] - YouTube media downloader
- [mpv] or any other video player
- [xorg-xrandr] - X11 RandR extension client, used for extracting screen resolution[yt-dlp]: https://github.com/yt-dlp/yt-dlp
You can also play YouTube videos by using an addon called `yatsu`! It works by scrapping content
from available Invidious instances. The usage is the same as `atsu`, without the `-i` option:```bash
Usage: yatsu [options]
Options:
-h, --help Show this help message and exit.
-s, --search Search for YouTube videos and play them.
-p, --player The media player used to play multimedia. Default is mpv,
or umpv if available.
```