7a4ef5b6df
This change introduces the ability to read additional or modified metadata like title or description from a YAML file. Just like thumbnails are read from "filename.jpg", we now look for "filename.yml" and override the meta data that is embedded in the video file. This is my very first look at golang, so please tell me if, or rather "where" I went wrong. ;-) Co-authored-by: Heinrich Langos <gumbo2000@noreply@mills.io> Reviewed-on: https://git.mills.io/prologic/tube/pulls/37 Co-authored-by: Heinrich 'Henrik' Langos <gumbo2000@noreply@mills.io> Co-committed-by: Heinrich 'Henrik' Langos <gumbo2000@noreply@mills.io>
37 lines
1.4 KiB
Modula-2
37 lines
1.4 KiB
Modula-2
module git.mills.io/prologic/tube
|
|
|
|
go 1.18
|
|
|
|
require (
|
|
git.mills.io/prologic/bitcask v1.0.2
|
|
git.mills.io/prologic/vimeodl v0.0.0-20210827153510-f28ed0158ec3
|
|
github.com/Andreychik32/ytdl v1.0.4
|
|
github.com/dhowden/tag v0.0.0-20220618230019-adf36e896086
|
|
github.com/dustin/go-humanize v1.0.0
|
|
github.com/fsnotify/fsnotify v1.5.4
|
|
github.com/gorilla/handlers v1.5.1
|
|
github.com/gorilla/mux v1.8.0
|
|
github.com/lithammer/shortuuid/v3 v3.0.7
|
|
github.com/sirupsen/logrus v1.9.0
|
|
github.com/spf13/pflag v1.0.5
|
|
github.com/wybiral/feeds v1.1.1
|
|
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
|
|
)
|
|
|
|
require (
|
|
github.com/abcum/lcp v0.0.0-20201209214815-7a3f3840be81 // indirect
|
|
github.com/antchfx/jsonquery v1.3.0 // indirect
|
|
github.com/antchfx/xpath v1.2.1 // indirect
|
|
github.com/felixge/httpsnoop v1.0.3 // indirect
|
|
github.com/gofrs/flock v0.8.1 // indirect
|
|
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
|
|
github.com/google/uuid v1.3.0 // indirect
|
|
github.com/kr/pretty v0.3.0 // indirect
|
|
github.com/mattn/go-colorable v0.1.12 // indirect
|
|
github.com/mattn/go-isatty v0.0.14 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/plar/go-adaptive-radix-tree v1.0.4 // indirect
|
|
github.com/rs/zerolog v1.27.0 // indirect
|
|
golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e // indirect
|
|
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f // indirect
|
|
)
|