Files
goutubedl/README.md
Mattias Wadman 88fc6c8d7a init
2019-07-23 21:39:07 +02:00

664 B

goutubedl

Go wrapper for youtube-dl.

API Documentation can be found godoc.

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.