Skip to content

Commit 4ae4a4d

Browse files
committed
修改库指向
1 parent a4649a3 commit 4ae4a4d

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
## Download from Github
3535

3636
```shell
37-
go get github.com/floostack/transcoder
37+
go get github.com/lyaf/transcoder
3838
```
3939

4040
## Example
@@ -45,7 +45,7 @@ package main
4545
import (
4646
"log"
4747

48-
ffmpeg "github.com/floostack/transcoder/ffmpeg"
48+
ffmpeg "github.com/lyaf/transcoder/ffmpeg"
4949
)
5050

5151
func main() {

ffmpeg/ffmpeg.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,10 @@ import (
1313
"regexp"
1414
"strconv"
1515
"strings"
16+
"syscall"
1617

17-
"github.com/floostack/transcoder"
18-
"github.com/floostack/transcoder/utils"
18+
"github.com/lyaf/transcoder"
19+
"github.com/lyaf/transcoder/utils"
1920
)
2021

2122
// Transcoder ...

ffmpeg/metadata.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package ffmpeg
22

3-
import "github.com/floostack/transcoder"
3+
import "github.com/lyaf/transcoder"
44

55
// Metadata ...
66
type Metadata struct {

0 commit comments

Comments
 (0)