-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
259 lines (189 loc) · 4.97 KB
/
main.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
package main
import (
"archive/zip"
"fmt"
"github.com/fatih/color"
"io"
"net/http"
"os"
"os/exec"
"path/filepath"
)
func main() {
color.Blue("GO Video Encoder")
isFFMPEGInstalled := isFFMPEGInstalled()
if !isFFMPEGInstalled {
install := installFFMPEG()
if install {
color.Green("ffmpeg installed")
main()
} else {
color.Red("ffmpeg not installed")
}
}
videoInfo := getVideoInfo()
if videoInfo != (Video{}) {
encode := EncodeVideo(videoInfo.Name, videoInfo.Codec, videoInfo.CompressionLevel)
if encode {
color.Green("Video encoded")
fmt.Println("Press enter to exit")
fmt.Scanln()
} else {
color.Red("Video not encoded")
fmt.Println("Press enter to exit")
fmt.Scanln()
}
}
}
type Video struct {
Name string
Codec string
CompressionLevel string
}
func getVideoInfo() Video {
color.HiCyan("Copy your video to the videos folder")
videosDir := filepath.Join("videos")
if _, err := os.Stat(videosDir); os.IsNotExist(err) {
os.Mkdir(videosDir, 0755)
}
color.Green("Enter a video name:")
var videoName string
fmt.Scanln(&videoName)
if string(videoName[len(videoName)-4:]) != ".mp4" {
color.Red("Invalid video format")
getVideoInfo()
}
color.Green("Enter a codec name (h264, libx265, libvpx, libvpx-vp9):")
var codecName string
fmt.Scanln(&codecName)
if codecName != "h264" && codecName != "libx265" && codecName != "libvpx" && codecName != "libvpx-vp9" {
color.Red("Invalid codec name")
getVideoInfo()
}
color.Green("Enter a compression level (low, medium, high):")
var compressionLevel string
fmt.Scanln(&compressionLevel)
if compressionLevel == "low" {
compressionLevel = "23"
} else if compressionLevel == "medium" {
compressionLevel = "18"
} else if compressionLevel == "high" {
compressionLevel = "10"
} else {
color.Red("Invalid compression level")
getVideoInfo()
}
return Video{
Name: videoName,
Codec: codecName,
CompressionLevel: compressionLevel,
}
}
func EncodeVideo(videoName string, codecName string, compressionLevel string) bool {
video := filepath.Join("videos", videoName)
if _, err := os.Stat(video); os.IsNotExist(err) {
color.Red("Video not found in videos folder")
return false
}
ffmpegDir := filepath.Join("bin", "ffmpeg.exe")
outputName := "videos/"+videoName[:len(videoName)-4] + "_encoded.mp4"
if _, err := os.Stat(outputName); !os.IsNotExist(err) {
os.Remove(outputName)
}
cmd := exec.Command(ffmpegDir, "-i", video, "-c:v", codecName, "-crf", compressionLevel, "-c:a", "copy", outputName)
err := cmd.Run()
if err != nil {
panic(err)
}
return true
}
func isFFMPEGInstalled() bool {
ffmpegDir := filepath.Join("bin", "ffmpeg.exe")
ffprobeDir := filepath.Join("bin", "ffprobe.exe")
if _, ffmpegError := os.Stat(ffmpegDir); os.IsNotExist(ffmpegError) {
color.Red("ffmpeg.exe not found in bin folder")
return false
}
if _, ffprobeError := os.Stat(ffprobeDir); os.IsNotExist(ffprobeError) {
color.Red("ffprobe.exe not found in bin folder")
return false
}
return true
}
func installFFMPEG() bool {
if _, err := os.Stat("temp"); os.IsNotExist(err) {
os.Mkdir("temp", 0755)
}
color.Yellow("Installing ffmpeg")
out, err := os.Create("temp/ffmpeg.zip")
if err != nil {
panic(err)
}
defer out.Close()
// Get the FFMPEG zip file
resp, err := http.Get("https://github.com/BtbN/FFmpeg-Builds/releases/download/latest/ffmpeg-master-latest-win64-gpl.zip")
if err != nil {
panic(err)
}
defer resp.Body.Close()
_, err = io.Copy(out, resp.Body)
if err != nil {
panic(err)
}
color.Green("ffmpeg installed")
color.Yellow("Unzipping ffmpeg")
err = extractBinFolder("temp/ffmpeg.zip")
if err != nil {
panic(err)
}
color.Green("ffmpeg unzipped")
os.Remove("temp/ffmpeg.zip")
return true
}
func extractBinFolder(zipFilePath string) error {
r, err := zip.OpenReader(zipFilePath)
if err != nil {
return err
}
defer r.Close()
err = os.MkdirAll("bin", os.ModePerm)
if err != nil {
return err
}
for _, f := range r.File {
if f.FileInfo().IsDir() {
continue
}
if f.Name == "ffmpeg-master-latest-win64-gpl/bin/ffmpeg.exe" || f.Name == "ffmpeg-master-latest-win64-gpl/bin/ffprobe.exe" || f.Name == "ffmpeg-master-latest-win64-gpl/bin/ffplay.exe" {
rc, err := f.Open()
if err != nil {
return err
}
defer rc.Close()
path := filepath.Join("bin", f.Name)
switch f.Name {
case "ffmpeg-master-latest-win64-gpl/bin/ffmpeg.exe":
path = filepath.Join("bin", "ffmpeg.exe")
case "ffmpeg-master-latest-win64-gpl/bin/ffprobe.exe":
path = filepath.Join("bin", "ffprobe.exe")
case "ffmpeg-master-latest-win64-gpl/bin/ffplay.exe":
path = filepath.Join("bin", "ffplay.exe")
}
f, err := os.OpenFile(path, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, f.Mode())
if err != nil {
return err
}
defer f.Close()
_, err = io.Copy(f, rc)
if err != nil {
return err
}
rc.Close()
}
}
err = r.Close()
if err != nil {
return err
}
return nil
}