https://github.com/austinvalle/gotube
CLI for downloading youtube videos/audio and renaming metadata
https://github.com/austinvalle/gotube
cli command-line golang metadata-editor plex youtube-downloader
Last synced: 11 months ago
JSON representation
CLI for downloading youtube videos/audio and renaming metadata
- Host: GitHub
- URL: https://github.com/austinvalle/gotube
- Owner: austinvalle
- License: mit
- Created: 2018-02-10T03:15:26.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-02-21T06:38:43.000Z (over 8 years ago)
- Last Synced: 2025-04-01T22:48:35.125Z (about 1 year ago)
- Topics: cli, command-line, golang, metadata-editor, plex, youtube-downloader
- Language: Go
- Size: 22.5 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gotube
golang CLI for downloading youtube videos/audio and renaming metadata

## Install
To install, use `go get`:
```bash
$ go get -d github.com/moosebot/gotube
```
## Usage
```bash
gotube [youtube url] [options]
```
### Options
- `-s` *default value: false* - Skip metadata questions and uses defaults
- `-d` *default value: ./* - Sets the download directory for mp3
- `-h` - Print out gotube help information
- `-v` - Print out gotube CLI version
## Example
#### Basic example
```bash
gotube https://www.youtube.com/watch?v=aatr_2MstrI
```
#### Example skipping metadata
```bash
gotube https://www.youtube.com/watch?v=aatr_2MstrI -s
```
#### Example setting download directory
```bash
gotube https://www.youtube.com/watch?v=aatr_2MstrI -d C:/Downloads
```