npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

giantbomb-show-dl

v2.4.1

Published

Node CLI tool to download GiantBomb shows through the official API

Downloads

68

Readme

💣 giantbomb-show-dl 💣

npm

Command line tool to download complete Giant Bomb shows or a list of separate videos with a single command.

Requirements

How to

The easiest way to run this tool is to use npx.

npx giantbomb-show-dl@latest --api_key <YOUR_API_KEY> --show "Unprofessional Fridays" --dir "~/Downloads/GiantBomb"

It's also possible to install the tool globally using npm, after which the binary can be used in your shell. If you use this method make sure to regularly check for updates.

npm install -g giantbomb-show-dl

giantbomb-show-dl --api_key <YOUR_API_KEY> --show "Unprofessional Fridays" --dir "~/Downloads/GiantBomb"

Options

| Option | Required | Description | | ------------- | :------: | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | --api_key | ✅ | Your Giant Bomb API key, can be found at https://www.giantbomb.com/api/. | | --show | 🔀 | Name of the Giant Bomb show to download, must be an exact match.Mutually exclusive with --video_id and --archive. | | --video_id | 🔀 | Giant Bomb video ID, multiple can be separated by commas. IDs can be found in the video URL on the website, they are formatted as 12345-87654.Mutually exclusive with --show and --archive. | | --archive | 🔀 | Enable archive mode, will download every video from the API one by one.Mutually exclusive with --show and --video_id. | | --dir | ✅ | Directory the videos should be downloaded to. When using the --show option a subdirectory will be created for the selected show. | | --quality | ❌ | Quality to download videos in, will fall back to lower quality if selected is not available. Defaults to highest. Options are low, high, hd and highest. | | --retries | ❌ | Amount of times a failed download will be retried, defaults to 2. | | --from_date | ❌ | Videos published before this date will not be downloaded. Formatted as YYYY-MM-DD. Only when using --show. | | --to_date | ❌ | Videos published after this date will not be downloaded. Formatted as YYYY-MM-DD. Only when using --show. | | --mp3tag | ❌ | Create a .txt file that can be used within the Mp3tag software to tag your videos for use in media libraries. Ignored when downloading using --archive. | | --debug | ❌ | Will output extra logging when enabled, can be useful for troubleshooting. |

Features

Highest quality

Will always download the highest quality available for each video. Normally the API does not return 8k bitrate versions of videos. but this tool checks if they are available and downloads them when the quality highest is used.

Download tracking

Will keep track of which files are downloaded successfully. These files will not be downloaded again on the next run, this provides an easy way to retry failed downloads by re-running the same command.

To reset download tracking remove the downloaded.json file from the relative directory.

Download resuming

If a download is interrupted this tool will resume where the download previously ended on the next attempt.

Save images and metadata

This tool also downloads the image(s) and metadata for each show and video. This data can be used to enhance your library in your media server of choice.

Rate limiting

This tool will autmatically rate limit API requests to not exceed Giant Bomb API usage guidelines.