Skip to content
Snippets Groups Projects
Select Git revision
  • master default protected
  • v0.3.3
  • 0.3.1
  • v0.3.2
  • v0.3
  • v0.2
  • v0.1.1
  • v0.1
8 results

amalgamdetektivconandownloader

  • Clone with SSH
  • Clone with HTTPS
  • Yannick Mau's avatar
    mauamy authored
    2eaca58a
    History

    Amalgam-Fansub Detektiv Conan Downloader

    This project is a small cli download tool to download the newer Detektiv Conan episodes from https://amalgam-fansubs.moe/.

    Installation

    Download releases

    Download the binary for your system from the release page.

    Build it yourself

    If you want to build it yourself, simply clone this repository and use the makefile for building and installing it.

    # local/test linux build
    $ make build
    
    # install it to your GOPATH (linux)
    $ make install
    
    # uninstall from your GOPATH (linux)
    $ make uninstall
    
    # build for windows
    $ make windows
    
    # build for mac
    $ make mac

    Usage

    General Usage

    $ adcl <subcommand> <action> [flags] <parameter>

    Subcommands:

    • episodes
    • music

    Actions:

    • download
    • list

    Show Help

    $ adcl -h

    Episodes

    List Episodes

    $ adcl episodes list
    $ adcl episodes l
    Flags
    • --dlink, -d: show the default download link
    • --pixeldrain, -p: show an indicator if a pixeldrain download link is available
    • --format <value>, -f <value>: set the output format. Available values: csv, html, md

    Download Episodes

    $ adcl episodes download <episode_numbers>
    $ adcl episodes d <episode_numbers>

    <episode_numbers> is a separated list of episode numbers: 1 2 3 4. In addition you can provide ranges within this list: 1 2 3-8 10.

    # example
    $ adcl episodes d 710 840-845 870
    Flags
    • --pixeldrain, -p: download the episode from pixeldrain

    Music

    List Music

    $ adcl music list
    $ adcl music l
    Flags
    • --format <value>, -f <value>: set the output format. Available values: csv, html, md

    Download Music

    $ adcl music download <music_ids>
    $ adcl music d <music_ids>

    <music_ids> is a separated list of music IDs matching the IDs in the list: 1 2 3 4. In addition you can provide ranges within this list: 1 2 3-8 10.

    # example
    $ adcl music d 1 3-6 22
    Flags
    • --unzip, -u: extract the zip archive after download
    • --keepArchive, -k: do not remove the archive after extraction