if the image is not extracted copy the default image to the image path and return the path to the default image for checking the lastfm api

This commit is contained in:
aditya-K2 2021-12-09 02:29:53 +05:30
parent 62bcda33cb
commit 1d9fe23b00
1 changed files with 5 additions and 4 deletions

View File

@ -65,23 +65,24 @@ func GetFlacImage(songPath, imagePath string) string {
}
func extractImageFromFile(uri string, imagePath string) string {
_i := imagePath
if strings.HasSuffix(uri, ".mp3") {
imagePath := GetMp3Image(uri, imagePath)
if imagePath == "" {
Copy(viper.GetString("DEFAULT_IMAGE_PATH"), _i)
return viper.GetString("DEFAULT_IMAGE_PATH")
} else {
return imagePath
}
} else if strings.HasSuffix(uri, ".flac") {
imagePath := GetFlacImage(uri, imagePath)
if imagePath == "" {
Copy(viper.GetString("DEFAULT_IMAGE_PATH"), _i)
return viper.GetString("DEFAULT_IMAGE_PATH")
} else {
return imagePath
}
} else {
Copy(viper.GetString("DEFAULT_IMAGE_PATH"), _i)
return viper.GetString("DEFAULT_IMAGE_PATH")
}
return imagePath
}
func getImg(uri string) (image.Image, error) {