feat: Add yt-dlp support for fetching video information
This commit is contained in:
parent
17368b8ae9
commit
18dd4b9250
3 changed files with 54 additions and 6 deletions
12
go.mod
12
go.mod
|
|
@ -2,11 +2,16 @@ module my-log-wynter
|
|||
|
||||
go 1.26.0
|
||||
|
||||
require codeberg.org/danjones000/my-log v0.1.0
|
||||
require (
|
||||
codeberg.org/danjones000/my-log v0.1.0
|
||||
github.com/lrstanley/go-ytdlp v1.3.1
|
||||
)
|
||||
|
||||
require (
|
||||
github.com/BurntSushi/toml v1.3.2 // indirect
|
||||
github.com/ProtonMail/go-crypto v1.3.0 // indirect
|
||||
github.com/caarlos0/env/v10 v10.0.0 // indirect
|
||||
github.com/cloudflare/circl v1.6.3 // indirect
|
||||
github.com/elliotchance/pie/v2 v2.7.0 // indirect
|
||||
github.com/google/uuid v1.6.0 // indirect
|
||||
github.com/hablullah/go-hijri v1.0.2 // indirect
|
||||
|
|
@ -19,7 +24,10 @@ require (
|
|||
github.com/spf13/cobra v1.8.0 // indirect
|
||||
github.com/spf13/pflag v1.0.5 // indirect
|
||||
github.com/tetratelabs/wazero v1.2.1 // indirect
|
||||
github.com/ulikunitz/xz v0.5.15 // indirect
|
||||
github.com/wasilibs/go-re2 v1.3.0 // indirect
|
||||
golang.org/x/crypto v0.48.0 // indirect
|
||||
golang.org/x/exp v0.0.0-20220321173239-a90fa8a75705 // indirect
|
||||
golang.org/x/text v0.14.0 // indirect
|
||||
golang.org/x/sys v0.41.0 // indirect
|
||||
golang.org/x/text v0.34.0 // indirect
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue