Skip to content
This repository has been archived by the owner on Oct 6, 2024. It is now read-only.

Fix CI Build #33

Merged
merged 6 commits into from Dec 23, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 7 additions & 19 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,37 +7,25 @@
`ydl` is a simple youtube video downloader.


## Build and Test
## Build

## Pre-requisites
### Pre-requisites

1. Install [rust nightly](https://rust-lang.github.io/rustup/concepts/channels.html)
2. Install the [go](https://go.dev/doc/install)

```bash
$ git clone https://github.com/Ch3ck/ydl
$ cd ydl
$ make
```

## Install and Run
### Install and Run

*NOTE: * release coming soon!
Once a release is ready, you could just download one of the [binaries](https://github.com/nyanchor/ydl/releases) and run:

```bash
$ ydl -id url # -id lWEbEtr_Vng
```


## Licence

`ydl` is licensed under [The MIT Licence](LICENSE.md).
![image](https://user-images.githubusercontent.com/96080444/147299032-3459f700-c3b7-448e-83c3-ff2ba27a62f9.png)


## License
The scripts and documentation in this project are released under the [MIT License](LICENSE.md)


## Author

**NOTE** Will stop maintaining this package soon, the *Youtube API* is highly unreliable(its a rat race).

- [Nyah Check](https://nyah.dev)
16 changes: 16 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
module ydl

go 1.17

require (
github.com/kkdai/youtube/v2 v2.7.6
github.com/urfave/cli/v2 v2.3.0
)

require (
github.com/bitly/go-simplejson v0.5.0 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.1 // indirect
github.com/dlclark/regexp2 v1.4.1-0.20201116162257-a2a8dda75c91 // indirect
github.com/dop251/goja v0.0.0-20211211112501-fb27c91c26ed // indirect
github.com/go-sourcemap/sourcemap v2.1.3+incompatible // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
golang.org/x/net v0.0.0-20211215060638-4ddde0e984e9 // indirect
golang.org/x/text v0.3.7 // indirect
)
Loading