Downloader for Crunchyroll and ADN
Go to file
2024-06-21 20:59:04 +02:00
.github/ISSUE_TEMPLATE removed advanced workflow 2024-05-01 00:44:20 +02:00
.vscode multiple fixes and additions 2024-05-23 23:04:58 +02:00
components added default crunchyroll language selector 2024-06-21 16:27:58 +02:00
ffmpeg some changes and removed taskbar progessbar 2024-05-06 23:50:25 +02:00
mp4decrypt some changes and removed taskbar progessbar 2024-05-06 23:50:25 +02:00
pages added default crunchyroll language selector 2024-06-21 16:27:58 +02:00
public changed logos 2024-05-07 01:14:00 +02:00
src Merge pull request #24 from Meivyn/fix-margins 2024-06-21 20:59:04 +02:00
.env.default some changes and removed taskbar progessbar 2024-05-06 23:50:25 +02:00
.eslintrc.js first commit 2024-04-16 20:20:30 +02:00
.gitignore some changes and removed taskbar progessbar 2024-05-06 23:50:25 +02:00
.npmrc fixed excessive storage usage 2024-05-09 02:09:37 +02:00
.prettierrc added prettier 2024-05-01 01:45:45 +02:00
binding.gyp first commit 2024-04-16 20:20:30 +02:00
build.js fixed excessive storage usage 2024-05-09 02:09:37 +02:00
CODE_OF_CONDUCT.md Create CODE_OF_CONDUCT.md 2024-04-26 16:39:24 +02:00
CONTRIBUTING.md Create CONTRIBUTING.md 2024-04-26 16:44:22 +02:00
LICENSE Create LICENSE 2024-04-26 16:45:41 +02:00
nuxt.config.ts some changes and removed taskbar progessbar 2024-05-06 23:50:25 +02:00
package.json updated dependencies 2024-06-21 13:49:15 +02:00
pnpm-lock.yaml updated dependencies 2024-06-21 13:49:15 +02:00
README.md Update README.md 2024-06-21 01:18:43 +02:00
run.electron.bat added run.electron and removed some console.logs 2024-05-01 02:16:38 +02:00
SECURITY.md Update SECURITY.md 2024-05-02 14:03:08 +02:00
tsconfig.json added prettier 2024-05-01 01:45:45 +02:00

Crunchyroll Downloader

Downloads GitHub Repo stars Discord

Windows Linux

Important: At the moment its only possible to download with L3 Widevine keys since Crunchyroll added drm to the switch endpoint

Guides to get L3 Widevine keys:

https://forum.videohelp.com/threads/408031-Dumping-Your-own-L3-CDM-with-Android-Studio

https://simpcity.su/threads/guide-for-getting-drm-content-wip.181199/

Add the keys you get here:

Screenshot 2024-06-19 131046

A simple tool for downloading videos from Crunchyroll and ADN.

animation_gif


Supported Platforms

  • Windows
  • Linux

Getting Started on Windows

Step 1: Download the latest windows installer here.

Step 2: Run the installer. The app starts automatically after install and creates a desktop shortcut.

Thats it! Now you can start download!

Getting Started on Linux

Step 1: Download one of the latest linux builds here.

Step 2 for .AppImage: Just run it, the downloader will appear!

Step 2 for .deb: Run the .deb file with your package manager and install it!

Thats it! Now you can start download!

Build instructions

Requires:

1. NodeJS v19 or newer
2. FFMPEG Binaries (for your os)
3. MP4Decrypt Binaries (for your os)
  1. Clone the repo: git clone https://github.com/stratuma/Crunchyroll-Downloader-v4.0.git

  2. Use PNPM to install the packages pnpm i

  3. Go to node_modules and search for the folder jsencrypt, open the jsencrypt.js file located in bin and replace this:

(function webpackUniversalModuleDefinition(root, factory) {
    if(typeof exports === 'object' && typeof module === 'object')
        module.exports = factory();
    else if(typeof define === 'function' && define.amd)
        define([], factory);
    else if(typeof exports === 'object')
        exports["JSEncrypt"] = factory();
    else
        root["JSEncrypt"] = factory();
})(window, () => {

with this:

(function (root, factory) {
  if (typeof exports === 'object' && typeof module === 'object')
      module.exports = factory();
  else if (typeof define === 'function' && define.amd)
      define([], factory);
  else if (typeof exports === 'object')
      exports["JSEncrypt"] = factory();
  else
      root["JSEncrypt"] = factory();
})(typeof self !== 'undefined' ? self : this, () => {
  1. Put the ffmpeg binaries in the ffmpeg folder and the mp4decrypt binaries in the mp4decrypt folder.

  2. To run dev run pnpm dev:electron when on linux or mac, for windows use pnpm dev:electron:win

  3. To build use the command pnpm build:electron

Note: To change the platform you want to build (Windows, Linux, MacOS) you have to change the const in build.js const platform = 'WINDOWS' on line 70