Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix(encode): Strip EBU R128 gain tags when using forced-RG transcoding (
  • Loading branch information
spijet committed Jun 20, 2021
1 parent 2780dba commit 5444d40
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions server/encode/encode.go
Expand Up @@ -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, "-")
Expand Down

0 comments on commit 5444d40

Please sign in to comment.