-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmedia.go
52 lines (44 loc) · 1.1 KB
/
media.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package oreka
import (
"fmt"
"io"
"os/exec"
"github.com/LasTshaMAN/Go-Execute/executor"
)
type MediaInfo struct {
Length int64
ContentType string
Data io.ReadCloser
}
type MediaProcessor struct {
FileName string
ID *string
Size *int
Duration *int
}
var tmpFilePath = `/tmp/%s.mp3`
func (mp *MediaProcessor) ToMP3() (*deleteCloser, error) {
mp3FileName := fmt.Sprintf(tmpFilePath, mp.ID)
ffmpegResult, err := exec.Command("ffmpeg", "-y", "-i", mp.FileName, mp3FileName).CombinedOutput()
if err != nil {
fmt.Println("FFMPEG Error", string(ffmpegResult))
return nil, err
}
return DeleteOnCloseReader(mp3FileName)
}
var threadPoolExecutor = executor.New(32)
// OrkaudioTranscode trigger orkadudio trancode <filename>
func OrkaudioTranscode(filename string) error {
ch := make(chan error)
threadPoolExecutor.Enqueue(func() {
transcodeError, err := exec.Command("orkaudio", "transcode", filename).CombinedOutput()
if err != nil {
fmt.Println("OrkaudioTranscode Error", string(transcodeError))
ch <- err
} else {
ch <- nil
}
})
result := <-ch
return result
}