From 262e24c2e219102f379d88ff0fb013eb4d7fd61e Mon Sep 17 00:00:00 2001 From: igolaizola <11333576+igolaizola@users.noreply.github.com> Date: Thu, 4 Jul 2024 00:05:55 +0200 Subject: [PATCH] Renamed repository name Renamed repository name from igolaizola/vidai to igopr/vidai --- README.md | 24 ++++++++++++------------ cmd/vidai/main.go | 2 +- go.mod | 2 +- pkg/cli/cli.go | 6 +++--- pkg/cmd/extend/extend.go | 2 +- pkg/cmd/generate/generate.go | 2 +- pkg/runway/client.go | 4 ++-- 7 files changed, 21 insertions(+), 21 deletions(-) diff --git a/README.md b/README.md index 616ef17..209b9b7 100644 --- a/README.md +++ b/README.md @@ -6,22 +6,22 @@ This is a CLI tool for [RunwayML Gen-2](https://runwayml.com/) that adds some ex > 📢 Connect with us! Join our Telegram group for support and collaboration: [t.me/igohub](https://t.me/igohub) -## 🚀 Features +## 🚀 Features - - Generate videos directly from the command line using a text or image prompt. - - Use RunwayML's extend feature to generate longer videos. - - Create or extend videos longer than 4 seconds by reusing the last frame of the video as the input for the next generation. - - Other handy tools to edit videos, like generating loops or resizing videos. +- Generate videos directly from the command line using a text or image prompt. +- Use RunwayML's extend feature to generate longer videos. +- Create or extend videos longer than 4 seconds by reusing the last frame of the video as the input for the next generation. +- Other handy tools to edit videos, like generating loops or resizing videos. ## 📦 Installation You can use the Golang binary to install **vidai**: ```bash -go install github.com/igolaizola/vidai/cmd/vidai@latest +go install github.com/igopr/vidai/cmd/vidai@latest ``` -Or you can download the binary from the [releases](https://github.com/igolaizola/vidai/releases) +Or you can download the binary from the [releases](https://github.com/igopr/vidai/releases) ## 📋 Requirements @@ -141,10 +141,10 @@ Sponsor me on GitHub: Or donate to any of my crypto addresses: - - BTC `bc1qvuyrqwhml65adlu0j6l59mpfeez8ahdmm6t3ge` - - ETH `0x960a7a9cdba245c106F729170693C0BaE8b2fdeD` - - USDT (TRC20) `TD35PTZhsvWmR5gB12cVLtJwZtTv1nroDU` - - USDC (BEP20) / BUSD (BEP20) `0x960a7a9cdba245c106F729170693C0BaE8b2fdeD` - - Monero `41yc4R9d9iZMePe47VbfameDWASYrVcjoZJhJHFaK7DM3F2F41HmcygCrnLptS4hkiJARCwQcWbkW9k1z1xQtGSCAu3A7V4` +- BTC `bc1qvuyrqwhml65adlu0j6l59mpfeez8ahdmm6t3ge` +- ETH `0x960a7a9cdba245c106F729170693C0BaE8b2fdeD` +- USDT (TRC20) `TD35PTZhsvWmR5gB12cVLtJwZtTv1nroDU` +- USDC (BEP20) / BUSD (BEP20) `0x960a7a9cdba245c106F729170693C0BaE8b2fdeD` +- Monero `41yc4R9d9iZMePe47VbfameDWASYrVcjoZJhJHFaK7DM3F2F41HmcygCrnLptS4hkiJARCwQcWbkW9k1z1xQtGSCAu3A7V4` Thanks for your support! diff --git a/cmd/vidai/main.go b/cmd/vidai/main.go index 6dc4e01..70f377e 100644 --- a/cmd/vidai/main.go +++ b/cmd/vidai/main.go @@ -6,7 +6,7 @@ import ( "os" "os/signal" - "github.com/igolaizola/vidai/pkg/cli" + "github.com/igopr/vidai/pkg/cli" ) // Build flags diff --git a/go.mod b/go.mod index ebce2d5..729247c 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/igolaizola/vidai +module github.com/igopr/vidai go 1.20 diff --git a/pkg/cli/cli.go b/pkg/cli/cli.go index a1bd1d9..67206f4 100644 --- a/pkg/cli/cli.go +++ b/pkg/cli/cli.go @@ -8,9 +8,9 @@ import ( "strings" "time" - "github.com/igolaizola/vidai/pkg/cmd/extend" - "github.com/igolaizola/vidai/pkg/cmd/generate" - "github.com/igolaizola/vidai/pkg/cmd/loop" + "github.com/igopr/vidai/pkg/cmd/extend" + "github.com/igopr/vidai/pkg/cmd/generate" + "github.com/igopr/vidai/pkg/cmd/loop" "github.com/peterbourgon/ff/v3" "github.com/peterbourgon/ff/v3/ffcli" "github.com/peterbourgon/ff/v3/ffyaml" diff --git a/pkg/cmd/extend/extend.go b/pkg/cmd/extend/extend.go index f4bb8aa..02ef6b3 100644 --- a/pkg/cmd/extend/extend.go +++ b/pkg/cmd/extend/extend.go @@ -11,7 +11,7 @@ import ( "strings" "time" - "github.com/igolaizola/vidai/pkg/runway" + "github.com/igopr/vidai/pkg/runway" ) type Config struct { diff --git a/pkg/cmd/generate/generate.go b/pkg/cmd/generate/generate.go index 2e5086b..df0773b 100644 --- a/pkg/cmd/generate/generate.go +++ b/pkg/cmd/generate/generate.go @@ -9,7 +9,7 @@ import ( "strings" "time" - "github.com/igolaizola/vidai/pkg/runway" + "github.com/igopr/vidai/pkg/runway" ) type Config struct { diff --git a/pkg/runway/client.go b/pkg/runway/client.go index 7428757..0492840 100644 --- a/pkg/runway/client.go +++ b/pkg/runway/client.go @@ -14,8 +14,8 @@ import ( "time" http "github.com/bogdanfinn/fhttp" - "github.com/igolaizola/vidai/pkg/fhttp" - "github.com/igolaizola/vidai/pkg/ratelimit" + "github.com/igopr/vidai/pkg/fhttp" + "github.com/igopr/vidai/pkg/ratelimit" ) type Client struct {