Downloader for Crunchyroll, Hidive, AnimeOnegai, and AnimationDigitalNetwork with CLI and GUI
Find a file
2024-10-08 19:20:25 -07:00
.github Fix Docker Release 2024-08-15 12:27:56 -07:00
@types Allow --syncTiming to work on all files 2024-10-07 20:53:23 -07:00
config Update default cli-defaults.yml 2024-04-08 14:14:59 -07:00
docs Fix Docker Release + Documentation 2024-08-15 19:28:29 +00:00
gui Fix wording for Stream Request 2024-10-08 14:45:06 -07:00
modules Minor fixes 2024-10-08 19:20:25 -07:00
videos Update 2021-09-01 12:40:45 -03:00
widevine Initial commit for WV Decryption 2023-12-24 19:29:01 -08:00
.dockerignore Fix docker 2023-03-01 23:42:42 +01:00
.gitignore Add .idea to gitignore 2024-06-17 08:58:17 -07:00
adn.ts Allow --syncTiming to work on all files 2024-10-07 20:53:23 -07:00
ao.ts Allow --syncTiming to work on all files 2024-10-07 20:53:23 -07:00
crunchy.ts Fix wording for Stream Request 2024-10-08 14:45:06 -07:00
dev.js Initial commit to add hidive 2023-07-04 10:21:16 -07:00
Dockerfile Fix docker builds 2024-03-15 10:08:25 -07:00
eslint.config.mjs eslint fixes 2024-04-06 09:10:48 -07:00
gui.ts New Logger + HLS-Download include 2023-03-03 19:10:20 +01:00
hidive.ts Allow --syncTiming to work on all files 2024-10-07 20:53:23 -07:00
index.ts Merge branch 'v5' into adn-support 2024-04-13 08:06:51 -07:00
LICENSE.md Starting with merge 2021-10-29 22:42:50 +02:00
package.json Fix --syncTiming 2024-10-07 19:34:13 -07:00
pnpm-lock.yaml Fix --syncTiming 2024-10-07 19:34:13 -07:00
TODO.md Update TODO.md 2024-03-22 17:31:56 -07:00
tsc.ts Update ignored token files 2024-04-11 13:17:29 -07:00
tsconfig.json Update dependencies 2023-07-15 15:09:06 -07:00

Anime Downloader NX by AniDL

Discord Shield

This downloader can download anime from different sites. Currently supported are Crunchyroll, Hidive, AnimeOnegai, and AnimationDigitalNetwork.

This application is not endorsed by or affiliated with Crunchyroll, Hidive, AnimeOnegai, or AnimationDigitalNetwork. This application enables you to download videos for offline viewing which may be forbidden by law in your country. The usage of this application may also cause a violation of the Terms of Service between you and the stream provider. This tool is not responsible for your actions; please make an informed decision before using this application.

Dependencies

Paths Configuration

By default this application uses the following paths to programs (main executables):

  • ffmpeg.exe (From PATH)
  • ffprobe.exe (From PATH)
  • mkvmerge.exe (From PATH)
  • mp4decrypt.exe (From PATH)

To change these paths you need to edit bin-path.yml in ./config/ directory.

CLI Information

See the documentation for a complete list of what options are available. You can define defaults for the commands by editing the cli-defaults.yml file in the ./config/ directory.

Example usage

Logging in

Most services require you to be logged in, in order to download from, an example of how you would login is:

AniDL --service {ServiceName} --auth

Searching

In order to find the IDs to download, you can search from each service by using the --search flag like this:

AniDL --service {ServiceName} --search {SearchTerm}

Downloading

Once you have the ID which you can obtain from using the search or other means, you are ready to download, which you can do like this:

AniDL --service {ServiceName} -s {SeasonID} -e {EpisodeNumber}

Building and running from source

Build Dependencies

Dependencies that are only required for running from code. These are not required if you are using the prebuilt binaries.

Build Setup

Please note that NodeJS, NPM, and PNPM must be installed on your system. For instructions on how to install pnpm, check (https://pnpm.io/installation)

First clone this repo git clone https://github.com/anidl/multi-downloader-nx.git.

cd into the cloned directory and run pnpm i. Next, decide if you want to package the application, build the code, or run from typescript.

Run from TypeScript

You can run the code from native TypeScript, this requires ts-node which you can install with pnpm with the following command: pnpm -g i ts-node

Afterwords, you can run the application like this:

  • CLI: ts-node -T ./index.ts --help

Run as JavaScript

If you want to build the application into JavaScript code to run, you can do that as well like this:

  • CLI: pnpm run prebuild-cli
  • GUI: pnpm run prebuild-gui

Then you can cd into the lib folder and you will be able to run the CLI or GUI as follows:

  • CLI: node ./index.js --help
  • GUI: node ./gui.js

Build the application into an executable

If you want to package the application, run pnpm run build-{platform}-{type} where {platform} is the operating system (currently the choices are windows, linux, macos, alpine, android, and arm) and {type} is cli or gui.

DRM Decryption

Decryption Requirements

Instructions

In order to decrypt DRM content, you will need to have a dumped CDM, after that you will need to place the CDM files (device_client_id_blob and device_private_key) into the ./widevine/ directory. For legal reasons we do not include the CDM with the software, and you will have to source one yourself.