From 8ade52606d4567dacd7b9dfb22042e339b61154f Mon Sep 17 00:00:00 2001 From: rroller Date: Sun, 27 Oct 2024 11:49:54 -0700 Subject: [PATCH] Descriptive filename --- src/media/fetch.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/media/fetch.go b/src/media/fetch.go index 9771b0f..884cb56 100644 --- a/src/media/fetch.go +++ b/src/media/fetch.go @@ -121,7 +121,7 @@ func getMediaResults(url string) ([]Media, string, error) { func downloadMedia(url string) (string, string, error) { // The id will be used as the name of the parent directory of the output files id := GetMD5Hash(url) - name := getMediaDirectory(id) + "%(id)s.%(ext)s" + name := getMediaDirectory(id) + "%(title)s.%(ext)s" log.Info().Msgf("Downloading %s to %s", url, id)