Skip to content

Commit

Permalink
streamkiste use system downloads folder instead
Browse files Browse the repository at this point in the history
  • Loading branch information
phoenixthrush committed Nov 8, 2024
1 parent df26f42 commit b6fa07a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/aniworld/extractors/streamkiste.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def fetch_direct_link(link):


def download_video(link, title):
FILENAME = os.path.join("Downloads", f"{title}.mp4")
FILENAME = os.path.join(os.path.expanduser('~'), 'Downloads', f"{title}.mp4")
subprocess.run(['yt-dlp', '--quiet', '--no-warnings', '--progress', '-o', FILENAME, link])


Expand Down

0 comments on commit b6fa07a

Please sign in to comment.