Skip to content

Commit 87467d5

Browse files
committed
Revert "Import cameraiq fork"
This reverts commit ae6fef1.
1 parent a03f718 commit 87467d5

File tree

6 files changed

+7
-12
lines changed

6 files changed

+7
-12
lines changed

ffmpeg/ffmpeg.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"bytes"
55
"strings"
66

7-
"github.com/cameraiq/goffmpeg/utils"
7+
"github.com/xfrr/goffmpeg/utils"
88
)
99

1010
// Configuration ...

go.mod

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,4 @@ module github.com/xfrr/goffmpeg
22

33
go 1.14
44

5-
require (
6-
github.com/cameraiq/goffmpeg v0.0.0-20191108092855-c49093f2d9f7
7-
github.com/stretchr/testify v1.5.1
8-
)
5+
require github.com/stretchr/testify v1.5.1

go.sum

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
github.com/cameraiq/goffmpeg v0.0.0-20191108092855-c49093f2d9f7 h1:ScvAEdcEHWFKntB9YrNgZ3K+n5L8iToH+F7MS2EoYw8=
2-
github.com/cameraiq/goffmpeg v0.0.0-20191108092855-c49093f2d9f7/go.mod h1:dEir+jl1FDIexS0ZHZaU6aZ7B0B8NA9b7uXy8pDuw0c=
31
github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8=
42
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
53
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=

tests/transcoding_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88

99
"github.com/stretchr/testify/assert"
1010

11-
"github.com/cameraiq/goffmpeg/transcoder"
11+
"github.com/xfrr/goffmpeg/transcoder"
1212
)
1313

1414
func TestInputNotFound(t *testing.T) {

transcoder/transcoder.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ import (
1212
"strconv"
1313
"strings"
1414

15-
"github.com/cameraiq/goffmpeg/ffmpeg"
16-
"github.com/cameraiq/goffmpeg/models"
17-
"github.com/cameraiq/goffmpeg/utils"
15+
"github.com/xfrr/goffmpeg/ffmpeg"
16+
"github.com/xfrr/goffmpeg/models"
17+
"github.com/xfrr/goffmpeg/utils"
1818
)
1919

2020
// Transcoder Main struct

utils/utils.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"strconv"
88
"strings"
99

10-
"github.com/cameraiq/goffmpeg/models"
10+
"github.com/xfrr/goffmpeg/models"
1111
)
1212

1313
func DurToSec(dur string) (sec float64) {

0 commit comments

Comments
 (0)