You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
targetLoudness:=*flag.Int("l", -18, "Use n LUFS as target loudness (-30 ≤ n ≤ -5), default: -18")
27
-
clipMode:=*flag.String("c", "n", "n: no clipping protection (default),\np: clipping protection enabled for positive gain values only,\na: Use max peak level n dB for clipping protection")
28
-
quiet:=*flag.Bool("q", false, "(rsgain) Don't print scanning status messages.")
29
-
rsgainLimit:=*flag.Int("r", 100, "Limit, how many rsgain instances can run at a time.")
23
+
albumMode:=flag.Bool("a", false, "Calculate album gain and peak.")
24
+
skipExisting:=flag.Bool("S", false, "Don't scan files with existing ReplayGain information.")
targetLoudness:=flag.Int("l", -18, "Use n LUFS as target loudness (-30 ≤ n ≤ -5), default: -18")
27
+
clipMode:=flag.String("c", "n", "n: no clipping protection (default),\np: clipping protection enabled for positive gain values only,\na: Use max peak level n dB for clipping protection")
28
+
quiet:=flag.Bool("q", false, "(rsgain) Don't print scanning status messages.")
29
+
rsgainLimit:=flag.Int("r", 100, "Limit, how many rsgain instances can run at a time.")
30
30
flag.Parse()
31
31
32
32
libraryRoot:=flag.Arg(0)
33
33
34
34
// build the rsgain custom command and check values
0 commit comments