Skip to content

Commit fa1b54b

Browse files
authored
Fixing YouTube Transcription (#118)
* Migrating to kkdai/youtube * Removing patch version * More package changes * Fixing unknown directive error
1 parent 4748e83 commit fa1b54b

5 files changed

Lines changed: 148 additions & 715 deletions

File tree

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
- uses: actions/setup-go@v3
2626
with:
27-
go-version: '1.19'
27+
go-version: '1.21'
2828
check-latest: true
2929

3030
- run: go mod vendor

assemblyai-cli

8.95 MB
Binary file not shown.

go.mod

Lines changed: 30 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,52 @@
11
module github.com/AssemblyAI/assemblyai-cli
22

3-
go 1.19
3+
go 1.21
4+
5+
toolchain go1.22.1
46

57
require (
68
github.com/briandowns/spinner v1.19.0
79
github.com/getsentry/sentry-go v0.15.0
8-
github.com/google/uuid v1.3.0
10+
github.com/google/uuid v1.4.0
911
github.com/gosuri/uitable v0.0.4
1012
github.com/joho/godotenv v1.4.0
13+
github.com/kkdai/youtube/v2 v2.10.1
1114
github.com/posthog/posthog-go v0.0.0-20220817142604-0b0bbf0f9c0f
12-
github.com/spf13/cobra v1.5.0
13-
github.com/spf13/viper v1.13.0
15+
github.com/spf13/cobra v1.8.0
16+
github.com/spf13/viper v1.18.2
1417
golang.org/x/term v0.0.0-20220919170432-7a66f970e087
1518
gopkg.in/cheggaaa/pb.v1 v1.0.28
1619
)
1720

1821
require (
19-
github.com/davecgh/go-spew v1.1.1 // indirect
20-
github.com/fatih/color v1.13.0 // indirect
21-
github.com/fsnotify/fsnotify v1.5.4 // indirect
22+
github.com/bitly/go-simplejson v0.5.1 // indirect
23+
github.com/dlclark/regexp2 v1.11.0 // indirect
24+
github.com/dop251/goja v0.0.0-20240220182346-e401ed450204 // indirect
25+
github.com/fatih/color v1.14.1 // indirect
26+
github.com/fsnotify/fsnotify v1.7.0 // indirect
27+
github.com/go-sourcemap/sourcemap v2.1.3+incompatible // indirect
28+
github.com/google/pprof v0.0.0-20240227163752-401108e1b7e7 // indirect
2229
github.com/hashicorp/hcl v1.0.0 // indirect
23-
github.com/inconshreveable/mousetrap v1.0.1 // indirect
24-
github.com/magiconair/properties v1.8.6 // indirect
30+
github.com/inconshreveable/mousetrap v1.1.0 // indirect
31+
github.com/magiconair/properties v1.8.7 // indirect
2532
github.com/mattn/go-colorable v0.1.13 // indirect
26-
github.com/mattn/go-isatty v0.0.16 // indirect
27-
github.com/mattn/go-runewidth v0.0.9 // indirect
33+
github.com/mattn/go-isatty v0.0.17 // indirect
34+
github.com/mattn/go-runewidth v0.0.15 // indirect
2835
github.com/mitchellh/mapstructure v1.5.0 // indirect
29-
github.com/pelletier/go-toml v1.9.5 // indirect
30-
github.com/pelletier/go-toml/v2 v2.0.5 // indirect
31-
github.com/pmezard/go-difflib v1.0.0 // indirect
32-
github.com/spf13/afero v1.8.2 // indirect
33-
github.com/spf13/cast v1.5.0 // indirect
34-
github.com/spf13/jwalterweatherman v1.1.0 // indirect
36+
github.com/pelletier/go-toml/v2 v2.1.1 // indirect
37+
github.com/rivo/uniseg v0.4.7 // indirect
38+
github.com/sagikazarmark/locafero v0.4.0 // indirect
39+
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
40+
github.com/sourcegraph/conc v0.3.0 // indirect
41+
github.com/spf13/afero v1.11.0 // indirect
42+
github.com/spf13/cast v1.6.0 // indirect
3543
github.com/spf13/pflag v1.0.5 // indirect
36-
github.com/stretchr/objx v0.5.0 // indirect
37-
github.com/stretchr/testify v1.8.1 // indirect
38-
github.com/subosito/gotenv v1.4.1 // indirect
44+
github.com/subosito/gotenv v1.6.0 // indirect
3945
github.com/xtgo/uuid v0.0.0-20140804021211-a0b114877d4c // indirect
40-
github.com/zenizh/go-capturer v0.0.0-20211219060012-52ea6c8fed04 // indirect
41-
golang.org/x/sys v0.0.0-20220928140112-f11e5e49a4ec // indirect
42-
golang.org/x/text v0.3.7 // indirect
43-
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
46+
go.uber.org/multierr v1.11.0 // indirect
47+
golang.org/x/exp v0.0.0-20240222234643-814bf88cf225 // indirect
48+
golang.org/x/sys v0.18.0 // indirect
49+
golang.org/x/text v0.14.0 // indirect
4450
gopkg.in/ini.v1 v1.67.0 // indirect
45-
gopkg.in/yaml.v2 v2.4.0 // indirect
4651
gopkg.in/yaml.v3 v3.0.1 // indirect
4752
)

0 commit comments

Comments
 (0)