Files
goutubedl/README.md
2019-07-24 16:19:31 +02:00

678 B

goutubedl

Go wrapper for youtube-dl.

Online API documentation can be found at godoc.org.

See youtube-dl documentation for what is recommended to install in addition to youtube-dl.

Usage

result, err := goutubedl.New(context.Background(), URL, goutubedl.Options{})
downloadResult, err := result.Download(context.Background(), FormatID)
io.Copy(ioutil.Discard, downloadResult)
dr.Close()

See goutubedl cmd tool or ydls for usage examples.