A command line tool to download media from Reddit
There is a soft dependency on ffmpeg, for installation instructions follow this link.
You can skip it but without it: * Videos hosted on reddit itself (v.reddit.com) won't have sound * Gifs won't be automatically converted to .mp4
If you already have Rust installed, you can install using cargo
:
shell script
cargo install gert
Simply pass the names of the subreddits you want to download media from with (multiple) -s
flags
bash
gert -s wallpapers -s earthporn
To download media from a single post/collection just pass the url of the post
bash
gert https://old.reddit.com/r/wallpapers/comments/tckky1/some_walls_from_my_collections_vol6/
```bash Simple CLI tool to download media from Reddit
USAGE:
gert [FLAGS] [OPTIONS] --subreddit
FLAGS: --debug Show the current config being used -r, --dry-run Dry run and print the URLs of saved media to download -h, --help Prints help information -H, --human-readable Use human readable names for files -V, --version Prints version information
OPTIONS:
-e, --from-env
Authentication is not required but if you want a more generous rate limit you can create a new app in reddit and pass your credentials to gert
gert
gert.env
: shell script
CLIENT_ID="<client_id>"
CLIENT_SECRET="<client_secret>"
USERNAME="<username>"
PASSWORD="<password>"
NOTE: If you have 2FA enabled, please make sure you set PASSWORD=<password>:<2FA_TOTP_token>
insteadbased on https://github.com/manojkarthick/reddsaver