We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40f6f7a commit e00d344Copy full SHA for e00d344
spotdl/download/ffmpeg.py
@@ -61,8 +61,8 @@ async def convert(
61
# ! sampled length of songs matches the actual length (i.e. a 5 min song won't display
62
# ! as 47 seconds long in your music player, yeah that was an issue earlier.)
63
64
- downloaded_file_path = str(downloaded_file_path)
65
- converted_file_path = str(converted_file_path)
+ downloaded_file_path = str(downloaded_file_path.absolute())
+ converted_file_path = str(converted_file_path.absolute())
66
67
formats = {
68
"mp3": ["-codec:a", "libmp3lame"],
0 commit comments