From be1467340de067e24154f00a02bed0c94c1a5bb9 Mon Sep 17 00:00:00 2001 From: itouakirai <85016486+itouakirai@users.noreply.github.com> Date: Mon, 3 Mar 2025 20:36:33 +0800 Subject: [PATCH] fix: cover embed --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index d702f40..9f9c1d4 100644 --- a/main.go +++ b/main.go @@ -578,8 +578,8 @@ func ripTrack(track *task.Track, token string, mediaUserToken string) { if err != nil { fmt.Println("Failed to write cover.") } - tags = append(tags, fmt.Sprintf("cover=%s", track.CoverPath)) } + tags = append(tags, fmt.Sprintf("cover=%s", track.CoverPath)) } tagsString := strings.Join(tags, ":") cmd := exec.Command("MP4Box", "-itags", tagsString, trackPath)