Skip to content

Commit

Permalink
remove print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
irahorecka committed Feb 25, 2024
1 parent 2e87fbd commit 5eaa836
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion utils/download_youtube.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ def get_youtube_mp4():
def get_youtube_mp3(mp4_filename):
"""Write MP3 audio file from MP4."""
mp3_filename = f'{song_properties.get("song")}.mp3'
print(os.path.join(mp4_path, mp4_filename))
try:
video = VideoFileClip(os.path.join(mp4_path, mp4_filename))
video.audio.write_audiofile(os.path.join(download_path, mp3_filename))
Expand Down

0 comments on commit 5eaa836

Please sign in to comment.