fix(encode): Strip EBU R128 gain tags when using forced-RG transcoding (#145)

This commit is contained in:
Serge Tkatchouk
2021-06-20 18:42:06 +01:00
committed by GitHub
parent 2780dba534
commit 5444d40018
+2
View File
@@ -102,6 +102,8 @@ func ffmpegCommand(filePath string, profile Profile) (*exec.Cmd, error) {
"-metadata", "replaygain_album_peak=",
"-metadata", "replaygain_track_gain=",
"-metadata", "replaygain_track_peak=",
"-metadata", "r128_album_gain=",
"-metadata", "r128_track_gain=",
)
}
args = append(args, "-f", profile.Format, "-")