https://github.com/harrybrwn/yt
A cli for downloading YouTube videos written in Go
https://github.com/harrybrwn/yt
cli go youtube
Last synced: 9 months ago
JSON representation
A cli for downloading YouTube videos written in Go
- Host: GitHub
- URL: https://github.com/harrybrwn/yt
- Owner: harrybrwn
- License: apache-2.0
- Created: 2019-02-13T01:56:57.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-06-22T20:06:56.000Z (about 6 years ago)
- Last Synced: 2025-01-30T22:08:36.095Z (over 1 year ago)
- Topics: cli, go, youtube
- Language: Go
- Homepage:
- Size: 102 KB
- Stars: 6
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# yt
[](https://travis-ci.com/harrybrwn/yt)
[](https://codecov.io/gh/harrybrwn/yt)
[](https://goreportcard.com/report/github.com/harrybrwn/yt)
[](https://godoc.org/github.com/harrybrwn/yt)
A cli for downloading youtube videos
### Installation
#### Homebrew
```
brew install harrybrwn/tap/yt
```
#### Snap
```
snap install go-yt
alias yt=go-yt
```
#### With Go
```
go install github.com/harrybrwn/yt
```
### Examples
```sh
yt video https://www.youtube.com/watch?v=1234
yt video 1234 # same result with the same video id
```
### Completion
#### zsh
```
source <(yt completion zsh)
compdef _yt yt
```
#### bash
```
source <(yt completion bash)
```