Skip to content

Commit

Permalink
feat: updated name
Browse files Browse the repository at this point in the history
  • Loading branch information
Paxx committed Jan 23, 2023
1 parent 93b334a commit f801fed
Show file tree
Hide file tree
Showing 13 changed files with 27 additions and 24 deletions.
4 changes: 2 additions & 2 deletions docs/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ nav_sort: case_insensitive # default, equivalent to nil
back_to_top: true
back_to_top_text: "Back to top"
#
footer_content: "Copyright &copy; 2022-present Go FFmpeg. Distributed by Github <a href=\"https://github.com/DanielEnricoBotta94/go-ffmpeg/blob/main/LICENSE.md>MIT license.</a>"
footer_content: "Copyright &copy; 2022-present Go FFmpeg. Distributed by Github <a href=\"https://github.com/Paxx-RnD/go-ffmpeg/blob/main/LICENSE.md>MIT license.</a>"
#
# Footer last edited timestamp
last_edit_timestamp: true # show or hide edit time - page must have `last_modified_date` defined in the frontmatter
Expand All @@ -80,7 +80,7 @@ last_edit_time_format: "%b %e %Y at %I:%M %p" # uses ruby's time format: https:/
# Footer "Edit this page on GitHub" link text
gh_edit_link: true # show or hide edit this page link
gh_edit_link_text: "Edit this page on GitHub"
gh_edit_repository: "https://github.com/DanielEnricoBotta94/go-ffmpeg/blob/main/docs/index.md" # the github URL for your repo
gh_edit_repository: "https://github.com/Paxx-RnD/go-ffmpeg/blob/main/docs/index.md" # the github URL for your repo
gh_edit_branch: "main" # the branch that your docs is served from
gh_edit_view_mode: "tree" # "tree" or "edit" if you want the user to jump into the editor immediately
#
Expand Down
2 changes: 1 addition & 1 deletion ffmpeg/audio_filter.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package ffmpeg

import (
"fmt"
"github.com/DanielEnricoBotta94/go-ffmpeg/arguments"
"github.com/Paxx-RnD/go-ffmpeg/arguments"
)

func (f *Ffmpeg) Flanger(delay float64) *Ffmpeg {
Expand Down
2 changes: 1 addition & 1 deletion ffmpeg/builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package ffmpeg

import (
"fmt"
"github.com/DanielEnricoBotta94/go-ffmpeg/helper"
"github.com/Paxx-RnD/go-ffmpeg/helper"
"os/exec"
"strings"
)
Expand Down
4 changes: 2 additions & 2 deletions ffmpeg/chain.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package ffmpeg

import (
"fmt"
"github.com/DanielEnricoBotta94/go-ffmpeg/constants/pixel_formats"
"github.com/DanielEnricoBotta94/go-ffmpeg/helper"
"github.com/Paxx-RnD/go-ffmpeg/constants/pixel_formats"
"github.com/Paxx-RnD/go-ffmpeg/helper"
)

type Chain Ffmpeg
Expand Down
4 changes: 2 additions & 2 deletions ffmpeg/codec.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package ffmpeg

import (
"github.com/DanielEnricoBotta94/go-ffmpeg/constants/codec_audio"
"github.com/DanielEnricoBotta94/go-ffmpeg/constants/codec_video"
"github.com/Paxx-RnD/go-ffmpeg/constants/codec_audio"
"github.com/Paxx-RnD/go-ffmpeg/constants/codec_video"
)

func (f *Ffmpeg) CodecVideo(codec codec_video.CodecVideo) *Ffmpeg {
Expand Down
4 changes: 2 additions & 2 deletions ffmpeg/ffmpeg.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package ffmpeg

import (
"github.com/DanielEnricoBotta94/go-ffmpeg/arguments"
"github.com/DanielEnricoBotta94/go-ffmpeg/configuration"
"github.com/Paxx-RnD/go-ffmpeg/arguments"
"github.com/Paxx-RnD/go-ffmpeg/configuration"
)

type Ffmpeg struct {
Expand Down
2 changes: 1 addition & 1 deletion ffmpeg/video_filter.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package ffmpeg

import (
"fmt"
"github.com/DanielEnricoBotta94/go-ffmpeg/arguments"
"github.com/Paxx-RnD/go-ffmpeg/arguments"
)

func (f *Ffmpeg) Scale(width int, height int) *Ffmpeg {
Expand Down
2 changes: 1 addition & 1 deletion ffprobe/ffprobe.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package ffprobe

import (
"encoding/json"
"github.com/DanielEnricoBotta94/go-ffmpeg/configuration"
"github.com/Paxx-RnD/go-ffmpeg/configuration"
"os/exec"
)

Expand Down
13 changes: 8 additions & 5 deletions test/a_main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ package test

import (
"fmt"
"github.com/DanielEnricoBotta94/go-ffmpeg/configuration"
"github.com/DanielEnricoBotta94/go-ffmpeg/env"
"github.com/DanielEnricoBotta94/go-ffmpeg/ffmpeg"
"github.com/DanielEnricoBotta94/go-ffmpeg/ffprobe"
"github.com/Paxx-RnD/go-ffmpeg/configuration"
"github.com/Paxx-RnD/go-ffmpeg/env"
"github.com/Paxx-RnD/go-ffmpeg/ffmpeg"
"github.com/Paxx-RnD/go-ffmpeg/ffprobe"
"os"
"testing"
)
Expand All @@ -17,7 +17,10 @@ var (

func TestMain(m *testing.M) {
if os.Getenv("APP_ENV") == "" {
os.Setenv("APP_ENV", "test")
err := os.Setenv("APP_ENV", "test")
if err != nil {
panic("could not set test env")
}
}
env.Load()
m.Run()
Expand Down
2 changes: 1 addition & 1 deletion test/bitrate_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package test

import (
"fmt"
"github.com/DanielEnricoBotta94/go-ffmpeg/constants/common_bitrates"
"github.com/Paxx-RnD/go-ffmpeg/constants/common_bitrates"
"strings"
"testing"
)
Expand Down
4 changes: 2 additions & 2 deletions test/codec_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package test

import (
"fmt"
"github.com/DanielEnricoBotta94/go-ffmpeg/constants/codec_audio"
"github.com/DanielEnricoBotta94/go-ffmpeg/constants/codec_video"
"github.com/Paxx-RnD/go-ffmpeg/constants/codec_audio"
"github.com/Paxx-RnD/go-ffmpeg/constants/codec_video"
"strings"
"testing"
)
Expand Down
4 changes: 2 additions & 2 deletions test/filter_complex_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package test

import (
"fmt"
"github.com/DanielEnricoBotta94/go-ffmpeg/constants/codec_audio"
"github.com/DanielEnricoBotta94/go-ffmpeg/constants/codec_video"
"github.com/Paxx-RnD/go-ffmpeg/constants/codec_audio"
"github.com/Paxx-RnD/go-ffmpeg/constants/codec_video"
"strings"
"testing"
)
Expand Down
4 changes: 2 additions & 2 deletions test/run_test.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package test

import (
"github.com/DanielEnricoBotta94/go-ffmpeg/constants/codec_audio"
"github.com/DanielEnricoBotta94/go-ffmpeg/constants/codec_video"
"github.com/Paxx-RnD/go-ffmpeg/constants/codec_audio"
"github.com/Paxx-RnD/go-ffmpeg/constants/codec_video"
"testing"
)

Expand Down

0 comments on commit f801fed

Please sign in to comment.