Skip to content

Commit

Permalink
Renamed repository name
Browse files Browse the repository at this point in the history
Renamed repository name from igolaizola/vidai to igopr/vidai
  • Loading branch information
igolaizola committed Jul 3, 2024
1 parent 75cfd09 commit 262e24c
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 21 deletions.
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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!
2 changes: 1 addition & 1 deletion cmd/vidai/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"os"
"os/signal"

"github.com/igolaizola/vidai/pkg/cli"
"github.com/igopr/vidai/pkg/cli"
)

// Build flags
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/igolaizola/vidai
module github.com/igopr/vidai

go 1.20

Expand Down
6 changes: 3 additions & 3 deletions pkg/cli/cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion pkg/cmd/extend/extend.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"strings"
"time"

"github.com/igolaizola/vidai/pkg/runway"
"github.com/igopr/vidai/pkg/runway"
)

type Config struct {
Expand Down
2 changes: 1 addition & 1 deletion pkg/cmd/generate/generate.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"strings"
"time"

"github.com/igolaizola/vidai/pkg/runway"
"github.com/igopr/vidai/pkg/runway"
)

type Config struct {
Expand Down
4 changes: 2 additions & 2 deletions pkg/runway/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 262e24c

Please sign in to comment.