remove -hint

for latest gapc, atmos no incorrect file information
This commit is contained in:
zhaarey
2025-02-10 21:53:01 +08:00
parent cca9af6cc4
commit 8211fa5682

View File

@@ -621,11 +621,7 @@ func downloadTrack(trackNum int, trackTotal int, meta *structs.AutoGenerated, tr
}
}
tagsString := strings.Join(tags, ":")
args := []string{"-itags", tagsString, trackPath}
if dl_atmos {
args = append(args, "-hint")
}
cmd := exec.Command("MP4Box", args...)
cmd := exec.Command("MP4Box", "-itags", tagsString, trackPath)
if err := cmd.Run(); err != nil {
fmt.Printf("Embed failed: %v\n", err)
counter.Error++