Install an agent on the Feiniu NAS to automatically find movies and TV downloads
Routing enthusiast• Publish Time:2025-12-15 23:04• Category: NAS
•Views:70049• Comments: (
0 )
to achieve a total of 3 ways to "automatically find movies and TV → download→ and store" for Feiniu NAS, and press "Zero Command Line"→ "Geek Edition"→ "AI Agent" from easy to difficult.
- Zero command line: One-click matryoshka doll in the Feiniu Application Center
Step overview:
(1) Install qBittorrent in the application center (2) Install Nastool (or MovieBot) (3) Fill in RSS/Douban (4) Specify the download directory (5) Automatic scraping of Feiniu Film and Television.
- open Feiniu's "Application Center" and search for qBittorrent, install it, and point the download directory to /media/download.
- search for Nastool (or pull the image fjlzwl/nastool) to create it with one click, and the port default is 3000.
- to Nastool "Site Management" and paste RSS such as 6v and Movie Paradise; If you want to chase Douban, scan the code to authorize and turn on the "want to see" switch.
- to qBittorrent → RSS → Add Subscription → Paste the "RSS Aggregation Address" generated by Nastool into → check "Automatic Download".
- Finally, set /media/download as the movie/TV series folder in the "Media Library", and Feiniu Film and Television will automatically scrape posters, actors, and subtitles, and the whole web interface will be completed in 5 minutes.

- Geek Edition: Docker-compose is a command
suitable for users who want to run the latest version or more plugins.
mkdir -p /vol1/docker/nastool && cd /vol1/docker/nastool
cat > docker-compose.yml <version: "3" services: nastool: image: nastool/nastool:latest container_name: nastool ports: - 3000:3000 volumes:
- ./config:/config
- /media/download:/downloads restart: unless-stopped qb: image: linuxserver/qbittorrent:latest container_name: qb ports:
- 8080:8080
- 6881:6881
- 6881:6881/udp volumes:
- ./qb-config:/config
- /media/download:/downloads environment:
- PUID=1000
- PGID=1000 restart: unless-stopped EOF
docker compose up -d
Then enter Nastool and configure RSS/Douban according to Scheme 1, and docker compose pull && docker compose up -d command is completed when upgrading.
-
- AI agent: open-webui + local large model to do "voice dotting"
if you want to "open your mouth to get off", install an open-webui+ollama, connect Nastool's OpenAPI, and you can directly say "Download the latest 4K version of The Wandering Earth 3" on the webpage/WeChat.
- Feiniu "Docker Management", search for ollama in the image repository and start port 11434, and then search for open-webui, port 8080.
- to open-webui, settings, plugins, add "nastool_tool", and fill in Nastool's API-key (Nastool settings → generated by security →).
- Open the conversation, select a model (such as qwen2-7b), enter "I want to watch a science fiction movie with a score >of 8.0 in 2025, help me add it to the download queue", and the large model will adjust Nastool search→ filter→ join the download, and WeChat/email will notify you after completion.
(The whole link runs locally, no need to worry about privacy; The model 3B-7B size is completely sufficient on the NAS. )
Common pit shorthand
- separate the seed directory from the library directory: qB After downloading, Nastool will use a hard link to "map" the file to the media library, which does not hinder the seed and does not take up double the space.
- RSS The address is changed when it expires, and someone in the forum maintains the latest address every day.
- want to download remotely: Install a cpolar intranet penetration for Feiniu, map out Nastool's 3000 ports, and mobile phone traffic can also be used.
summary
"lazy people" go directly to plan 1, five minutes to get it; If you want to play with flowers
just go to 2+3 together, local AI voice dot films, and Flying Bull instantly becomes a personal film and television assistant. Happy watching the drama!
"lazy people" go directly to plan 1, five minutes to get it; If you want to play with flowers
just go to 2+3 together, local AI voice dot films, and Flying Bull instantly becomes a personal film and television assistant. Happy watching the drama!
Read More

Comment List