banner
二叉树树

二叉树树的xLog

Protect What You Love!
telegram
x
github
bilibili
steam_profiles
email

Teach you how to build your own anime library! Achieve fully automated anime tracking!

This article is a reset version of: https://xfeed.app/notes/71448-2


Implementation Process:#

  1. Whenever a new episode is updated, AutoBangumi automatically pushes the torrent download to qb and renames it.
  2. Scraping software (such as Plex, Feiniu Film and Television sets a scheduled search for the media library).
  3. You just need to select the anime, then wait for the download and watch it actually not

Install qbittorrent#

For downloading anime

The installation methods vary for different systems. If you are installing a non-nox version, remember to enable WebUI in the settings and listen on 0.0.0.0:8080.

Windows: SourceForge
Linux: apt/yum install qbittorrent-nox
Docker: https://github.com/linuxserver/docker-qbittorrent
image

Install AutoBangumi#

For obtaining the anime you subscribed to and automatically initiating download tasks when updated.

  1. Install Docker, installation methods vary for different systems.

  2. Find a folder you like and create docker-compose.yaml, then write the content:

services:
AutoBangumi:
  image: "ghcr.io/estrellaxd/auto_bangumi:latest"
  container_name: AutoBangumi
  volumes:
    - ./config:/app/config
    - ./data:/app/data
  ports:
    - "7892:7892"
  network_mode: bridge
  restart: unless-stopped
  dns:
    - 223.5.5.5
  environment:
    - TZ=Asia/Shanghai
    - PGID=$(id -g)
    - PUID=$(id -u)
    - UMASK=022
  1. Run the command: docker compose up -d

  2. Go to localhost:7892, default account: admin, default password: adminadmin

  3. Click the settings icon on the left -> Download settings, fill in the downloader information, then click the application in the bottom right corner until the green light turns on in the top right corner.

image

  1. Go to Mikan Project, register an account, and subscribe to the anime you want (copy).
    image

  2. Return to AutoBangumi, click the + in the top right corner, add RSS (paste).

  3. Wait quietly, if all goes well, AutoBangumi will automatically download the anime you subscribed to (if not, you can check the AutoBangumi logs or try restarting the container).

Download Old Episodes or Completed Anime#

First, here are some recommended resource websites (bring your own VPN):

  1. ACG.RIP
  2. End of the World Anime Resource
  3. Mikan Project domestic direct connection: 1. https://mikanime.tv 2. https://hadestian.cn 3. https://mk.misakaae.com 4. https://mikan.yujiangqaq.com 5. RSS mirror site: https://mikanani.longc.top
  4. Mikan Project requires VPN: https://mikanani.me
    Then find the anime you want to download.

Standard Renaming#

To allow the software to correctly scrape metadata and episodes, we need to standardize renaming.

Note! You only need to ensure that the anime name is correct! Subdirectories can be automatically renamed by the script later! If you are unsure about the anime name, please go to TMDB to search: The Movie Database (TMDB)

Level 1 directory (download directory set in qb): No need to rename.

Level 2 directory (anime name, must be correct): In short, it must be very cute.

Level 3 directory: (which season of the anime): Season 1.

Level 4 directory: (which episode of which season of the anime): S01E01.MP4.


  1. Go to Episode-ReName, clone the repository (has been deleted, you can try https://alistapi.onani.cn/Episode-ReName.zip)

  2. Windows can automatically get the path version .bat through the right-click menu by selecting the top-level directory for automatic episode naming. If using the .py script, it can only be done through python3 EpisodeReName.py "D:/qbdownloads/bangumi".

Tip: You can use RaiDrive or SSHFS to map remote Linux files to Windows for easier anime management.
image

Install Plex (or install Feiniu Cloud NAS)#

For watching anime

  1. Download Plex Media Server.

  2. Start it. Default port 32400 (if you enter and see a bunch of garbled text, add /web to the suffix. For example: 192.168.124.25:32400/web).

  3. Select your media library folder.

  4. Enable remote access, top right settings -> remote access.

The image shows Feiniu Film and Television.

image

Enjoy watching!

Loading...
Ownership of this post data is guaranteed by blockchain and smart contracts to the creator alone.