-
Notifications
You must be signed in to change notification settings - Fork 1
/
analyzer.go
749 lines (655 loc) · 19.7 KB
/
analyzer.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
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
// Copyright © 2013-2018 Pierre Neidhardt <ambrevar@gmail.com>
// Use of this file is governed by the license that can be found in LICENSE.
package main
import (
"bytes"
"crypto/md5"
"encoding/json"
"errors"
"fmt"
"image"
_ "image/gif"
_ "image/jpeg"
_ "image/png"
"io"
"io/ioutil"
"log"
"os"
"os/exec"
"path/filepath"
"regexp"
"sort"
"strconv"
"strings"
"sync"
"github.com/aarzilli/golua/lua"
"github.com/ambrevar/demlo/cuesheet"
"github.com/mgutz/ansi"
"github.com/yookoala/realpath"
)
var (
coverExtList = map[string]bool{"gif": true, "jpeg": true, "jpg": true, "png": true}
errNonAudio = errors.New("non-audio file")
rePrintable = regexp.MustCompile(`\pC`)
stdoutMutex sync.Mutex
)
// analyzer loads file metadata into the file record, run the scripts and preview the result.
// If required, it will fetch additional input metadata online.
// This stage does not split elegantly:
// - defaultTags need to be passed to the running script.
// - The preview depends on prepareTrackTags.
type analyzer struct {
L *lua.State
scriptLog *log.Logger
}
func (a *analyzer) Init() {
// Script log output must be set for each FileRecord when calling the scripts.
a.scriptLog = log.New(nil, "@@ ", 0)
if options.Color {
a.scriptLog.SetPrefix(ansi.Color(a.scriptLog.Prefix(), "cyan+b"))
}
// Compile scripts.
luaDebug := a.scriptLog.Println
if !options.Debug {
luaDebug = nil
}
a.L = MakeSandbox(luaDebug)
for _, script := range cache.scripts {
SandboxCompileScript(a.L, script.name, script.buf)
}
for name, action := range cache.actions {
SandboxCompileAction(a.L, name, action)
}
}
func (a *analyzer) Close() {
a.L.Close()
}
func (a *analyzer) Run(fr *FileRecord) error {
fr.section.Println(fr.input.path)
// Should be run before setting the covers.
err := prepareInput(fr, &fr.input)
if err != nil {
return err
}
// Shorthand.
input := &fr.input
err = getExternalCover(fr)
if err != nil {
fr.warning.Print(err)
return err
}
getEmbeddedCover(fr)
var defaultTags map[string]string
// We retrieve tags online only for single-track files. TODO: Add support for multi-track files.
if input.trackCount == 1 {
var releaseID ReleaseID
prepareTrackTags(input, 1)
if options.Gettags {
releaseID, defaultTags, err = GetOnlineTags(fr)
if err != nil {
fr.warning.Print("Online tags query error: ", err)
}
}
if options.Getcover {
fr.onlineCoverCache, input.onlineCover, err = GetOnlineCover(fr, releaseID)
if err != nil {
fr.warning.Print("Online cover query error: ", err)
}
}
}
fr.output = make([]outputInfo, input.trackCount)
fr.status = make([]outputStatus, input.trackCount)
for track := 0; track < input.trackCount; track++ {
err := a.RunAllScripts(fr, track, defaultTags)
if err != nil {
fr.status[track] = statusFail
continue
}
}
// Preview changes.
if previewOptions.printDiff {
for track := 0; track < input.trackCount; track++ {
preview(fr, track)
}
}
if previewOptions.printIndex || options.IndexOutput != "" {
// Marshaling should never fail.
buf1, _ := json.Marshal(input.path)
buf2, _ := json.MarshalIndent(fr.output, "", "\t")
stdoutMutex.Lock()
if options.IndexOutput != "" {
fd, err := os.OpenFile(options.IndexOutput, os.O_APPEND|os.O_CREATE|os.O_WRONLY, 0666)
if err != nil {
fr.debug.Printf("Failed to write index file %s: %s", options.IndexOutput, err)
} else {
fmt.Fprintf(fd, "%s: %s,\n", buf1, buf2)
fd.Close()
}
}
if previewOptions.printIndex {
fmt.Printf("%s: %s,\n", buf1, buf2)
}
stdoutMutex.Unlock()
}
return nil
}
func (a *analyzer) RunAllScripts(fr *FileRecord, track int, defaultTags map[string]string) error {
input := &fr.input
output := &fr.output[track]
prepareTrackTags(input, track)
if o, ok := cache.index[input.path]; ok && len(o) > track {
*output = cache.index[input.path][track]
options.Gettags = false
} else {
// Default tags.
output.Tags = make(map[string]string)
for k, v := range input.tags {
output.Tags[k] = v
}
for k, v := range defaultTags {
output.Tags[k] = v
}
// Default codec options.
output.Format = fr.Format.FormatName
}
// Create a Lua sandbox containing input and output, then run scripts.
a.scriptLog.SetOutput(&fr.logBuf)
for _, script := range cache.scripts {
err := RunScript(a.L, script.name, input, output)
if err != nil {
fr.error.Printf("Script %s: %s", script.name, err)
return err
}
}
// Foolproofing.
// -No format: use input.format.
// -No parameters: use "-c:a copy".
// -Empty output basename: use input path.
// -Remove empty tags to avoid storing empty strings in FFmpeg.
// -Do not remove source when file has multiple tracks.
foolproof := func() {
if output.Format == "" {
output.Format = fr.Format.FormatName
}
if len(output.Parameters) == 0 {
output.Parameters = []string{"-c:a", "copy"}
}
if Basename(output.Path) == "" {
output.Path = input.path
}
var err error
output.Path, err = filepath.Abs(output.Path)
if err != nil {
fr.warning.Print("cannot get absolute path:", err)
}
for tag, value := range output.Tags {
if value == "" {
delete(output.Tags, tag)
}
}
if input.trackCount > 1 {
output.Removesource = false
}
}
foolproof()
// 'output.Write' should not be set from scripts.
output.Write = existWriteSuffix
// Check for existence.
_, err := os.Stat(output.Path)
if err == nil || !os.IsNotExist(err) {
fr.status[track] = statusExist
if cache.actions[actionExist] != "" {
// 'output.Path' exists.
// The realpath is required to see if transformation is inplace.
output.Path, err = realpath.Realpath(output.Path)
if err != nil {
// The realpath can only be expanded when the parent folder exists.
fr.error.Print(err)
return err
}
fr.exist.path = output.Path
err := prepareInput(fr, &fr.exist)
if err != nil {
fr.warning.Print(err)
}
// Save output.Path to guarantee no action will change it.
savedPath := output.Path
prepareTrackTags(&fr.exist, track)
err = RunAction(a.L, actionExist, input, output, &fr.exist)
if err != nil {
fr.error.Printf("'exist' action: %s", err)
return err
}
output.Path = savedPath
foolproof()
} else {
// If no 'exist' action is run, append a suffix.
output.Write = existWriteSuffix
}
switch output.Write {
case existWriteOver:
if output.Path == input.path {
if output.Removesource {
fr.warning.Println("will write in-place the file", output.Path)
} else {
fr.error.Print("cannot overwrite and keep source file at the same time:", input.path)
}
} else {
fr.warning.Println("will overwrite existing destination", output.Path)
if output.Removesource {
fr.warning.Println("remove source:", input.path)
}
}
case existWriteSkip:
if output.Path == input.path && output.Removesource {
fr.warning.Println("will write in-place the file", output.Path)
} else {
fr.warning.Println("will skip existing destination", output.Path)
if output.Removesource {
fr.warning.Println("remove source:", input.path)
}
}
default:
output.Write = existWriteSuffix
if output.Path == input.path && output.Removesource {
fr.warning.Println("will write in-place the file", output.Path)
} else {
fr.warning.Println("will append suffix to output file because of existing destination", output.Path)
if output.Removesource {
fr.warning.Println("will remove source", input.path)
}
}
}
} else {
// Destination does not exist.
if output.Removesource {
fr.warning.Println("will remove source", input.path)
}
}
return nil
}
// prepareInput sets the details of 'info' as returned by ffprobe.
// As a special case, if 'info' is 'fr.input', then 'fr.Format' and
// 'fr.Streams': those values will be needed later in the pipeline.
func prepareInput(fr *FileRecord, info *inputInfo) error {
cmd := exec.Command("ffprobe", "-v", "error", "-print_format", "json", "-show_streams", "-show_format", info.path)
var stderr bytes.Buffer
cmd.Stderr = &stderr
out, err := cmd.Output()
if err != nil {
fr.error.Print("ffprobe: ", stderr.String())
return err
}
err = json.Unmarshal(out, info)
if err != nil {
fr.error.Print(err)
return err
}
// probed need not be initialized since we only use it to temporarily store
// the 'Format' and 'Streams' structures returned by 'ffprobe'.
var probed FileRecord
err = json.Unmarshal(out, &probed)
if err != nil {
fr.error.Print(err)
return err
}
if info == &fr.input {
fr.Format = probed.Format
fr.Streams = probed.Streams
}
// Get modification time.
fi, err := os.Lstat(info.path)
if err != nil {
fr.error.Print(err)
return err
}
info.modTime.sec = fi.ModTime().Unix()
info.modTime.nsec = fi.ModTime().Nanosecond()
// Index of the first audio stream.
info.audioIndex = -1
for k, v := range probed.Streams {
if v.CodecType == "audio" {
info.audioIndex = k
break
}
}
if info.audioIndex == -1 {
fr.warning.Print("non-audio file:", info.path)
return errNonAudio
}
info.tags = make(map[string]string)
info.filetags = make(map[string]string)
// Precedence: cuesheet > stream tags > format tags.
for k, v := range probed.Format.Tags {
info.filetags[strings.ToLower(k)] = v
}
for k, v := range probed.Streams[info.audioIndex].Tags {
key := strings.ToLower(k)
_, ok := info.filetags[key]
if !ok || info.filetags[key] == "" {
info.filetags[key] = v
}
}
var ErrCuesheet error
info.cuesheet, ErrCuesheet = cuesheet.New([]byte(info.filetags["cuesheet"]))
if ErrCuesheet != nil {
// If no cuesheet was found in the tags, we check for external ones.
pathNoext := StripExt(info.path)
// Instead of checking the extension of files in current folder, we check
// if a file with the 'cue' extension exists. This is faster, especially
// for huge folders.
for _, ext := range []string{"cue", "cuE", "cUe", "cUE", "Cue", "CuE", "CUe", "CUE"} {
cs := pathNoext + "." + ext
st, err := os.Stat(cs)
if err != nil {
continue
}
if st.Size() > cuesheetMaxsize {
fr.warning.Printf("cuesheet size %v > %v bytes, skipping", cs, cuesheetMaxsize)
continue
}
buf, err := ioutil.ReadFile(cs)
if err != nil {
fr.warning.Print(err)
continue
}
info.cuesheet, ErrCuesheet = cuesheet.New(buf)
break
}
}
// Remove cuesheet from tags to avoid printing it.
delete(info.filetags, "cuesheet")
// The number of tracks in current file is usually 1, it can be more if a
// cuesheet is found.
info.trackCount = 1
if ErrCuesheet == nil {
// Copy the cuesheet header to the tags. Some entries appear both in the
// header and in the track details. We map the cuesheet header entries to
// the respective quivalent for FFmpeg tags.
for k, v := range info.cuesheet.Header {
switch k {
case "PERFORMER":
info.filetags["album_artist"] = v
case "SONGWRITER":
info.filetags["album_artist"] = v
case "TITLE":
info.filetags["album"] = v
default:
info.filetags[strings.ToLower(k)] = v
}
}
// A cuesheet might have several FILE entries, or even none (non-standard).
// In case of none, tracks are stored at file "" (the empty string) in the
// Cuesheet structure. Otherwise, we find the most related file.
base := stringNorm(filepath.Base(info.path))
max := 0.0
for f := range info.cuesheet.Files {
r := stringRel(stringNorm(f), base)
if r > max {
max = r
info.cuesheetFile = f
}
}
info.trackCount = len(info.cuesheet.Files[info.cuesheetFile])
}
// Set bitrate.
// FFmpeg stores bitrate as a string, Demlo needs a number. If
// 'streams[audioIndex].bit_rate' is empty (e.g. in APE files), look for
// 'format.bit_rate'. To ease querying bitrate from user scripts, store it
// in 'info.bitrate'.
info.bitrate, err = strconv.Atoi(probed.Streams[info.audioIndex].Bitrate)
if err != nil {
info.bitrate, err = strconv.Atoi(probed.Format.Bitrate)
if err != nil {
fr.warning.Print("cannot get bitrate from ", info.path)
return err
}
}
return nil
}
func getEmbeddedCover(fr *FileRecord) {
input := &fr.input
// FFmpeg treats embedded covers like video streams.
for i := 0; i < fr.Format.NbStreams; i++ {
if fr.Streams[i].CodecName != "image2" &&
fr.Streams[i].CodecName != "png" &&
fr.Streams[i].CodecName != "mjpeg" {
continue
}
cmd := exec.Command("ffmpeg", "-nostdin", "-v", "error", "-y", "-i", input.path, "-an", "-sn", "-c:v", "copy", "-f", "image2", "-map", "0:"+strconv.Itoa(i), "-")
var stderr bytes.Buffer
cmd.Stderr = &stderr
cover, err := cmd.Output()
if err != nil {
fr.error.Printf(stderr.String())
continue
}
reader := bytes.NewBuffer(cover)
config, format, err := image.DecodeConfig(reader)
if err != nil {
fr.warning.Print(err)
continue
}
hi := len(cover)
if hi > coverChecksumBlock {
hi = coverChecksumBlock
}
checksum := fmt.Sprintf("%x", md5.Sum(cover[:hi]))
fr.embeddedCoverCache = append(fr.embeddedCoverCache, cover)
input.embeddedCovers = append(input.embeddedCovers, inputCover{format: format, width: config.Width, height: config.Height, checksum: checksum})
}
}
func getExternalCover(fr *FileRecord) error {
// TODO: Memoize external cover queries.
input := &fr.input
fd, err := os.Open(filepath.Dir(input.path))
if err != nil {
return err
}
names, err := fd.Readdirnames(-1)
fd.Close()
if err != nil {
return err
}
input.externalCovers = make(map[string]inputCover)
for _, f := range names {
if !coverExtList[strings.ToLower(Ext(f))] {
continue
}
fd, err := os.Open(filepath.Join(filepath.Dir(input.path), f))
if err != nil {
fr.warning.Print(err)
continue
}
defer fd.Close()
st, err := fd.Stat()
if err != nil {
fr.warning.Print(err)
continue
}
config, format, err := image.DecodeConfig(fd)
if err != nil {
fr.warning.Print(err)
continue
}
hi := st.Size()
if hi > coverChecksumBlock {
hi = coverChecksumBlock
}
buf := [coverChecksumBlock]byte{}
_, err = (*fd).ReadAt(buf[:hi], 0)
if err != nil && err != io.EOF {
fr.warning.Print(err)
continue
}
checksum := fmt.Sprintf("%x", md5.Sum(buf[:hi]))
input.externalCovers[f] = inputCover{format: format, width: config.Width, height: config.Height, checksum: checksum}
}
return nil
}
func prepareTrackTags(input *inputInfo, track int) {
// Copy all tags from input.filetags to input.tags.
for k, v := range input.filetags {
input.tags[k] = v
}
if len(input.cuesheet.Files) > 0 {
// If there is a cuesheet, we fetch track tags as required. Note that this
// process differs from the above cuesheet extraction in that it is
// track-related as opposed to album-related. Cuesheets make a distinction
// between the two. Some tags may appear both in an album field and a track
// field. Thus track tags must have higher priority.
for k, v := range input.cuesheet.Files[input.cuesheetFile][track].Tags {
input.tags[strings.ToLower(k)] = v
}
}
}
// The format is:
// [input] | attr | [output]
func prettyPrint(fr *FileRecord, attr, input, output string, attrMaxlen, valueMaxlen int) {
colorIn := ""
colorOut := ""
if options.Color && input != output &&
(attr != "parameters" || output != "[-c:a copy]") &&
((attr != "embedded" && attr != "external") || (len(output) >= 3 && output[len(output)-3:] != " ''")) {
colorIn = "red"
colorOut = "green"
}
// Replace control characters to avoid mangling the output.
input = rePrintable.ReplaceAllString(input, " / ")
output = rePrintable.ReplaceAllString(output, " / ")
in := []rune(input)
out := []rune(output)
min := func(a, b int) int {
if a < b {
return a
}
return b
}
if valueMaxlen < 1 {
valueMaxlen = 1
}
// Print first line with title.
fr.plain.Printf(
"%*v["+ansi.Color("%.*s", colorIn)+"] | %-*v | ["+ansi.Color("%.*s", colorOut)+"]\n",
valueMaxlen-min(valueMaxlen, len(in)), "",
valueMaxlen, input,
attrMaxlen, attr,
valueMaxlen, output)
// Print the rest that does not fit on first line.
for i := valueMaxlen; i < len(in) || i < len(out); i += valueMaxlen {
inLo := min(i, len(in))
inHi := min(i+valueMaxlen, len(in))
outLo := min(i, len(out))
outHi := min(i+valueMaxlen, len(out))
inDelimLeft, inDelimRight := "[", "]"
outDelimLeft, outDelimRight := "[", "]"
if i >= len(in) {
inDelimLeft, inDelimRight = " ", " "
}
if i >= len(out) {
outDelimLeft, outDelimRight = "", ""
}
fr.plain.Printf(
"%s"+ansi.Color("%s", colorIn)+"%s%*v | %*v | %s"+ansi.Color("%s", colorOut)+"%s\n",
inDelimLeft,
string(in[inLo:inHi]),
inDelimRight,
valueMaxlen-inHi+inLo, "",
attrMaxlen, "",
outDelimLeft,
string(out[outLo:outHi]),
outDelimRight)
}
}
func preview(fr *FileRecord, track int) {
input := &fr.input
output := &fr.output[track]
maxCols, _, err := TerminalSize(int(os.Stderr.Fd()))
if err != nil {
// Can this happen? It would mean that os.Stderr has changed during
// execution since we did the TerminalSize() check in main().
return
}
if maxCols <= 0 {
// Not a terminal. Try anyways.
cols := os.Getenv("COLUMNS")
if cols == "" {
cols = os.Getenv("COLS")
}
maxCols, err = strconv.Atoi(cols)
if err != nil {
maxCols = 70
}
}
prepareTrackTags(input, track)
attrMaxlen := len("parameters")
for k := range input.tags {
if len(k) > attrMaxlen {
attrMaxlen = len(k)
}
}
for k := range output.Tags {
if len(k) > attrMaxlen {
attrMaxlen = len(k)
}
}
// 'valueMaxlen' is the available width for input and output values. We
// subtract some characters for the ' | ' around the attribute name and the
// brackets around the values.
valueMaxlen := (maxCols - attrMaxlen - 10) / 2
// Sort tags.
var tagList []string
for k := range input.tags {
tagList = append(tagList, k)
}
for k := range output.Tags {
_, ok := input.tags[k]
if !ok {
tagList = append(tagList, k)
}
}
sort.Strings(tagList)
colorTitle := ""
if options.Color {
colorTitle = "white+b"
}
fr.plain.Println()
fr.plain.Printf("%*v === "+ansi.Color("%-*v", colorTitle)+" ===\n",
valueMaxlen, "",
attrMaxlen, "FILE")
prettyPrint(fr, "path", input.path, output.Path, attrMaxlen, valueMaxlen)
prettyPrint(fr, "format", fr.Format.FormatName, output.Format, attrMaxlen, valueMaxlen)
prettyPrint(fr, "parameters", "bitrate="+strconv.Itoa(input.bitrate), fmt.Sprintf("%v", output.Parameters), attrMaxlen, valueMaxlen)
fr.plain.Printf("%*v === "+ansi.Color("%-*v", colorTitle)+" ===\n",
valueMaxlen, "",
attrMaxlen, "TAGS")
for _, v := range tagList {
// "encoder" is a field that is usually out of control, discard it.
if v != "encoder" {
prettyPrint(fr, v, input.tags[v], output.Tags[v], attrMaxlen, valueMaxlen)
}
}
fr.plain.Printf("%*v === "+ansi.Color("%-*v", colorTitle)+" ===\n",
valueMaxlen, "",
attrMaxlen, "COVERS")
for stream, cover := range input.embeddedCovers {
in := fmt.Sprintf("'stream %v' [%vx%v] <%v>", stream, cover.width, cover.height, cover.format)
out := "<> [] ''"
if stream < len(output.EmbeddedCovers) {
out = fmt.Sprintf("<%v> %q '%v'", output.EmbeddedCovers[stream].Format, output.EmbeddedCovers[stream].Parameters, output.EmbeddedCovers[stream].Path)
}
prettyPrint(fr, "embedded", in, out, attrMaxlen, valueMaxlen)
}
for file, cover := range input.externalCovers {
in := fmt.Sprintf("'%v' [%vx%v] <%v>", file, cover.width, cover.height, cover.format)
out := fmt.Sprintf("<%v> %q '%v'", output.ExternalCovers[file].Format, output.ExternalCovers[file].Parameters, output.ExternalCovers[file].Path)
prettyPrint(fr, "external", in, out, attrMaxlen, valueMaxlen)
}
if input.onlineCover.format != "" {
cover := input.onlineCover
in := fmt.Sprintf("[%vx%v] <%v>", cover.width, cover.height, cover.format)
out := fmt.Sprintf("<%v> %q '%v'", output.OnlineCover.Format, output.OnlineCover.Parameters, output.OnlineCover.Path)
prettyPrint(fr, "online", in, out, attrMaxlen, valueMaxlen)
}
fr.plain.Println()
}