-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathmp3cat.go
379 lines (320 loc) · 8.62 KB
/
mp3cat.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
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
package main
import (
"fmt"
"io"
"os"
"path/filepath"
"runtime"
"strings"
"github.com/dmulholl/argo/v4"
"github.com/dmulholl/mp3lib"
"golang.org/x/term"
)
const version = "4.3.0"
var helptext = fmt.Sprintf(`
Usage: %s [files]
This tool concatenates MP3 files without re-encoding. Input files can be
specified as a list of filenames:
$ mp3cat one.mp3 two.mp3 three.mp3
Alternatively, an entire directory of .mp3 files can be concatenated:
$ mp3cat --dir /path/to/directory
Arguments:
[files] List of files to merge.
Options:
-d, --dir <path> Directory of files to merge.
-m, --meta <n> Copy ID3 metadata from the n-th input file.
-o, --out <path> Output filepath. Defaults to 'output.mp3'.
Flags:
-f, --force Overwrite an existing output file.
-h, --help Display this help text and exit.
-q, --quiet Quiet mode. Only output error messages.
-v, --version Display the version number and exit.
`, filepath.Base(os.Args[0]))
func main() {
// Parse the command line arguments.
parser := argo.NewParser()
parser.Helptext = helptext
parser.Version = version
parser.NewFlag("force f")
parser.NewFlag("quiet q")
parser.NewFlag("debug")
parser.NewStringOption("out o", "output.mp3")
parser.NewStringOption("dir d", "")
parser.NewStringOption("interlace i", "")
parser.NewIntOption("meta m", 0)
if err := parser.ParseOsArgs(); err != nil {
fmt.Fprintf(os.Stderr, "Error: %s.\n", err)
os.Exit(1)
}
// Make sure we have a list of files to merge.
var files []string
if parser.Found("dir") {
err := filepath.Walk(
parser.StringValue("dir"),
func(path string, info os.FileInfo, err error) error {
if err != nil {
return err
}
if strings.ToLower(filepath.Ext(info.Name())) == ".mp3" {
files = append(files, path)
}
return nil
})
if err != nil {
fmt.Fprintln(os.Stderr, "Error:", err)
os.Exit(1)
}
if len(files) == 0 {
fmt.Fprintln(os.Stderr, "Error: no files found.")
os.Exit(1)
}
} else if len(parser.Args) > 0 {
files = parser.Args
} else {
fmt.Fprintln(os.Stderr, "Error: you must specify files to merge.")
os.Exit(1)
}
// Are we copying the ID3 tag from the n-th input file?
var tagpath string
if parser.Found("meta") {
tagindex := parser.IntValue("meta") - 1
if tagindex < 0 || tagindex > len(files)-1 {
fmt.Fprintln(os.Stderr, "Error: --meta argument is out of range.")
os.Exit(1)
}
tagpath = files[tagindex]
}
// Are we interlacing a spacer file?
if parser.Found("interlace") {
files = interlace(files, parser.StringValue("interlace"))
}
// Make sure all the files in the list actually exist.
validateFiles(files)
// Set debug mode if the user supplied a --debug flag.
if parser.Found("debug") {
mp3lib.DebugMode = true
}
// Merge the input files.
merge(
parser.StringValue("out"),
tagpath,
files,
parser.Found("force"),
parser.Found("quiet"))
}
// Check that all the files in the list exist.
func validateFiles(files []string) {
for _, file := range files {
if _, err := os.Stat(file); err != nil {
fmt.Fprintf(os.Stderr, "Error: the file '%v' does not exist.\n", file)
os.Exit(1)
}
}
}
// Interlace a spacer file between each file in the list.
func interlace(files []string, spacer string) []string {
var interlaced []string
for _, file := range files {
interlaced = append(interlaced, file)
interlaced = append(interlaced, spacer)
}
return interlaced[:len(interlaced)-1]
}
// Create a new file at [outpath] containing the merged contents of the list of input files.
func merge(outpath, tagpath string, inpaths []string, force, quiet bool) {
var totalFrames uint32
var totalBytes uint32
var totalFiles int
var firstBitRate int
var isVBR bool
// Only overwrite an existing file if the --force flag has been used.
if _, err := os.Stat(outpath); err == nil {
if !force {
fmt.Fprintf(os.Stderr, "Error: the file '%v' already exists.\n", outpath)
os.Exit(1)
}
}
// If the list of input files includes the output file we'll end up in an infinite loop.
for _, filepath := range inpaths {
if filepath == outpath {
fmt.Fprintln(os.Stderr, "Error: the list of input files includes the output file.")
os.Exit(1)
}
}
// Create the output file.
outfile, err := os.Create(outpath)
if err != nil {
fmt.Fprintln(os.Stderr, "Error:", err)
os.Exit(1)
}
if !quiet {
printLine()
}
// Loop over the input files and append their MP3 frames to the output file.
for _, inpath := range inpaths {
if !quiet {
fmt.Println("+", inpath)
}
infile, err := os.Open(inpath)
if err != nil {
fmt.Fprintln(os.Stderr, "Error:", err)
os.Exit(1)
}
isFirstFrame := true
for {
// Read the next frame from the input file.
frame := mp3lib.NextFrame(infile)
if frame == nil {
break
}
// Skip the first frame if it's a VBR header.
if isFirstFrame {
isFirstFrame = false
if mp3lib.IsXingHeader(frame) || mp3lib.IsVbriHeader(frame) {
continue
}
}
// If we detect more than one bitrate we'll need to add a VBR header to the output file.
if firstBitRate == 0 {
firstBitRate = frame.BitRate
} else if frame.BitRate != firstBitRate {
isVBR = true
}
// Write the frame to the output file.
_, err := outfile.Write(frame.RawBytes)
if err != nil {
fmt.Fprintln(os.Stderr, "Error:", err)
os.Exit(1)
}
totalFrames += 1
totalBytes += uint32(len(frame.RawBytes))
}
infile.Close()
totalFiles += 1
}
outfile.Close()
if !quiet {
printLine()
}
// If we detected multiple bitrates, prepend a VBR header to the file.
if isVBR {
if !quiet {
fmt.Println("• Multiple bitrates detected. Adding VBR header.")
}
addXingHeader(outpath, totalFrames, totalBytes)
}
// Copy the ID3v2 tag from the n-th input file if requested. Order of operations is important
// here. The ID3 tag must be the first item in the file - in particular, it must come *before*
// any VBR header.
if tagpath != "" {
if !quiet {
fmt.Printf("• Copying ID3 tag from: %s\n", tagpath)
}
addID3v2Tag(outpath, tagpath)
}
// Print a count of the number of files merged.
if !quiet {
fmt.Printf("• %v files merged.\n", totalFiles)
printLine()
}
}
// Prepend an Xing VBR header to the specified MP3 file.
func addXingHeader(filepath string, totalFrames, totalBytes uint32) {
outputFile, err := os.Create(filepath + ".mp3cat.tmp")
if err != nil {
fmt.Fprintln(os.Stderr, "Error:", err)
os.Exit(1)
}
inputFile, err := os.Open(filepath)
if err != nil {
fmt.Fprintln(os.Stderr, "Error:", err)
os.Exit(1)
}
xingHeader := mp3lib.NewXingHeader(totalFrames, totalBytes)
_, err = outputFile.Write(xingHeader.RawBytes)
if err != nil {
fmt.Fprintln(os.Stderr, "Error:", err)
os.Exit(1)
}
_, err = io.Copy(outputFile, inputFile)
if err != nil {
fmt.Fprintln(os.Stderr, "Error:", err)
os.Exit(1)
}
outputFile.Close()
inputFile.Close()
err = os.Remove(filepath)
if err != nil {
fmt.Fprintln(os.Stderr, "Error:", err)
os.Exit(1)
}
err = os.Rename(filepath+".mp3cat.tmp", filepath)
if err != nil {
fmt.Fprintln(os.Stderr, "Error:", err)
os.Exit(1)
}
}
// Prepend an ID3v2 tag to the MP3 file at mp3Path, copying from tagPath.
func addID3v2Tag(mp3Path, tagPath string) {
tagFile, err := os.Open(tagPath)
if err != nil {
fmt.Fprintln(os.Stderr, "Error:", err)
os.Exit(1)
}
id3tag := mp3lib.NextID3v2Tag(tagFile)
tagFile.Close()
if id3tag != nil {
outputFile, err := os.Create(mp3Path + ".mp3cat.tmp")
if err != nil {
fmt.Fprintln(os.Stderr, "Error:", err)
os.Exit(1)
}
inputFile, err := os.Open(mp3Path)
if err != nil {
fmt.Fprintln(os.Stderr, "Error:", err)
os.Exit(1)
}
_, err = outputFile.Write(id3tag.RawBytes)
if err != nil {
fmt.Fprintln(os.Stderr, "Error:", err)
os.Exit(1)
}
_, err = io.Copy(outputFile, inputFile)
if err != nil {
fmt.Fprintln(os.Stderr, "Error:", err)
os.Exit(1)
}
outputFile.Close()
inputFile.Close()
err = os.Remove(mp3Path)
if err != nil {
fmt.Fprintln(os.Stderr, "Error:", err)
os.Exit(1)
}
err = os.Rename(mp3Path+".mp3cat.tmp", mp3Path)
if err != nil {
fmt.Fprintln(os.Stderr, "Error:", err)
os.Exit(1)
}
}
}
// Print a line to stdout if we're running in a terminal.
func printLine() {
if term.IsTerminal(int(os.Stdout.Fd())) {
width, _, err := term.GetSize(int(os.Stdout.Fd()))
if err == nil {
if runtime.GOOS == "windows" {
for i := 0; i < width; i++ {
fmt.Print("-")
}
fmt.Println()
} else {
fmt.Print("\u001B[90m")
for i := 0; i < width; i++ {
fmt.Print("─")
}
fmt.Println("\u001B[0m")
}
}
}
}