JDRssDownloader/README.md

53 lines
1.9 KiB
Markdown
Raw Normal View History

2022-06-08 14:17:09 +01:00
# JDRssDownloader
JDownloader 2 is a great tool, but since V1 has been missing a way to automatically download from RSS feeds, and filter downloads to only download HEVC files.
2022-06-08 14:17:09 +01:00
I have put together this simple project to allow me to do that, people may find useful.
You will need NodeJS installed, then you can checkout this repo.
## Configuration
There is a ``config-sample.json`` file that needs to be renamed to ``config.json``, after this you can update it with your required settings.
- JDUserName - Your MyJDownloader Username
- JDPassword - Your MyJDownloader Password
2022-06-08 14:17:09 +01:00
- RSSFeed - The url to the rss feed you want to watch (Only tested with - https://rlsbb.cc/feed/)
- RSSFeedRefreshMins - How often to poll your rss feed down to local file cache
- JDPostLinksMins": How often to check your file cache for your shows and send found links to JDownloader
2022-06-08 14:17:09 +01:00
- Autostart - Tells JDownloader to add and start the downloads straight away (true/false)
- Shows - This needs to be a comma separated list of json objects of the show and quality you want to check for.
2022-06-08 15:29:27 +00:00
An example shown below
```
{
"JDUserName": "User",
"JDPassword": "Pass",
"RSSFeed": "https://rlsbb.cc/feed/",
"RSSFeedRefreshMins": 10,
"JDPostLinksMins": 180,
2022-06-08 15:29:27 +00:00
"Autostart": false,
"Shows": [
{
"Name": "Obi-Wan Kenobi",
"Quality": "1080"
},
{
"Name": "Taskmaster",
"Quality": "720"
}
]
}
```
2022-06-08 14:17:09 +01:00
## Execution
For basic usage you can just navigate into the folder and run -
- ``npm i`` to install the requirements.
- ``node JDRssDownloader.js`` This will execute the process and add the links if they are found.
2022-06-08 14:17:09 +01:00
My suggestion would be to use pm2 so it can run "in the background"
2022-06-08 14:17:09 +01:00
## Issues
Not alot of testing has gone into this, and I threw it together today in about 2 hours, so there are bound to be issues, please open them and let me know if you find any.