From 26706e4a411ec1c0920262121113bed915790384 Mon Sep 17 00:00:00 2001 From: MMagTech <64668236+MMagTech@users.noreply.github.com> Date: Wed, 19 Jun 2024 09:56:39 -0400 Subject: [PATCH] Update fmtv-downloader.py --- fmtv-downloader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fmtv-downloader.py b/fmtv-downloader.py index 30c942d..3483fc0 100644 --- a/fmtv-downloader.py +++ b/fmtv-downloader.py @@ -144,7 +144,7 @@ def download_song(video_url, song_title, artist, album, genre): downloaded_file = os.path.join(DOWNLOAD_PATH, file_name) if not os.path.exists(downloaded_file): # Search and download the official video - video_url = search_official_video(song_title, artist) + video_url = search_video(song_title, artist) if video_url: logger.info(f'Found official video: {video_url}') genre = get_track_info(artist, song_title)