1.0.3 • Published 12 months ago

@warren-bank/node-hls-downloader-crackle v1.0.3

Weekly downloads
2
License
GPL-2.0
Repository
github
Last release
12 months ago

Crackle Downloader

Command-line utility for downloading an offline copy of Crackle HLS video streams.

Features:

  • accepts URLs that identify:
    • a single movie
    • a single episode contained in a series
    • an entire series
      • includes all episodes in every seasons
  • downloads:
    • the highest available quality for each video stream
    • vtt subtitles for all available languages
    • will continue upon restart after an abrupt interruption
  • resulting file structure:
      |- {title_series}/
      |  |- {title_episode}/
      |  |  |- hls/
      |  |  |  |- video/
      |  |  |  |  |- *.ts
      |  |  |  |- audio/
      |  |  |  |  |- {language}/
      |  |  |  |  |  |- *.ts
      |  |  |  |  |- {language}.m3u8
      |  |  |  |- video.m3u8
      |  |  |  |- master.m3u8
      |  |  |- mp4/
      |  |  |  |- video.mp4
      |  |  |  |- video.{language}.vtt
      |  |  |  |- video.{language}.srt

Installation:

npm install --global @warren-bank/node-hls-downloader-crackle

Usage:

crackdl <options>

options:
========
"-h"
"--help"
    Print a help message describing all command-line options.

"-v"
"--version"
    Display the version.

"-q"
"--quiet"
    Do not print a verbose log of operations.

"-ll" <integer>
"--log-level" <integer>
    Specify the log verbosity level.
      0 = no output (same as --quiet)
      1 = include only episode Crackle URLs
      2 = include only episode ffmpeg commands
      3 = include all operational metadata (default)

"-dr"
"--dry-run"
    Do not write to the file system.

"-nm"
"--no-mp4"
    Do not use "ffmpeg" to bundle the downloaded video stream into an .mp4 file container.

"-mc" <integer>
"--max-concurrency" <integer>
"--threads" <integer>
    Specify the maximum number of URLs to download in parallel.
    The default is 1, which processes the download queue sequentially.

"-P" <dirpath>
"--directory-prefix" <dirpath>
    Specifies the directory where the resulting file structure will be saved to.
    The default is "." (the current directory).

"-u" <URL>
"--url" <URL>
    Specify a Crackle URL. (movie, episode, or series)

"-i <filepath>"
"--input-file <filepath>"
    Read Crackle URLs from a local text file. Format is one URL per line.

Example:

  • download a movie (link format used on home page):
      # movie: Speed
      crackdl -q -mc 5 -u 'https://www.crackle.com/watch/playlist/10000013/2507152'
  • download a movie (link format used on Movies page):
      # movie: Taxi Driver
      crackdl -q -mc 5 -u 'https://www.crackle.com/watch/541'
  • download an episode (link format used on home page):
      # TV episode: Going From Broke S01E07
      crackdl -q -mc 5 -u 'https://www.crackle.com/watch/playlist/2131144/2509683'
  • download an episode (link format used on pages categorized under TV series):
      # TV episode: Who's The Boss S07E03
      crackdl -q -mc 5 -u 'https://www.crackle.com/watch/3023/2510731'
  • download a series (link format used on TV series page):
      # TV series: Who's The Boss
      crackdl -mc 5 -u 'https://www.crackle.com/watch/3023'
  • print a trace of the operations that would occur IF a series were to be downloaded:
      # TV series: Who's The Boss
      crackdl -dr -ll 1 -u 'https://www.crackle.com/watch/3023'
      crackdl -dr -ll 2 -u 'https://www.crackle.com/watch/3023'
      crackdl -dr -ll 3 -u 'https://www.crackle.com/watch/3023'
  • download a series (advanced):

      # TV series: Who's The Boss
      crackdl -dr -ll 1 -u 'https://www.crackle.com/watch/3023' >'episode_urls.txt'
      crackdl -dr -ll 2 -u 'https://www.crackle.com/watch/3023' >'convert_mp4s.sh'
    
      crackdl -nm -mc 5 -i 'episode_urls.txt' >'log.txt' 2>&1
    
      ./convert_mp4s.sh
Suggestions:
  1. download with options: --no-mp4 --log-level 3
    • redirect stdout to a log file
    • when download completes, check the log file for any error messages
    • if any .ts chunks encountered a download problem
      • identify the url of the Crackle page that was being processed when this error occurred
      • redownload that page (using the same --directory-prefix)
        • all previously downloaded data not be modified or deleted
        • only missing data will be retrieved
  2. repeat the above process until the log file shows no download errors
  3. finally, convert the HLS stream to mp4
    • the ffmpeg command to perform this conversion is included in the log file
    • when converting the episodes in a series, a list of all ffmpeg commands can be generated with the options: --dry-run --log-level 2

Requirements:

Credits:

Legal: