]> Skullheadx's Git Forge - youtube-downloader.git/commitdiff
clean stuff up
authorSkullheadx <94652084+Skullheadx@users.noreply.github.com>
Mon, 14 Oct 2024 18:02:50 +0000 (14:02 -0400)
committerSkullheadx <94652084+Skullheadx@users.noreply.github.com>
Mon, 14 Oct 2024 18:02:50 +0000 (14:02 -0400)
README.md
ytdl/__pycache__/funcmodule.cpython-312.pyc
ytdl/funcmodule.py

index e366830c3d277141849e83c3d834ed1bb7e23154..d94755b52df218707135a16bade4437a4282f0c6 100644 (file)
--- a/README.md
+++ b/README.md
@@ -13,7 +13,7 @@ downloads the audio and video and stitches it together in the current directory.
 
 # TODO:
 - [x] add video only
-- [ ] add audio + video separate
+- [x] add audio + video separate
 - [ ] add stitched together
 - [x] add force replace
 - [ ] add album name
index 58dc6300ea2845b9197da7e2fb4f9647fbdbdb5f..d4a204210f42dc90979a8808ab074e056acb1c42 100644 (file)
Binary files a/ytdl/__pycache__/funcmodule.cpython-312.pyc and b/ytdl/__pycache__/funcmodule.cpython-312.pyc differ
index 8135523a9775defa2e09f741cb6a452ad6696f42..9e683651123a38c1be06f7daa2ecef24d8029b12 100644 (file)
@@ -106,8 +106,6 @@ def download_double_stream(yt, filename,thumbnail_filename, mode):
 
     if mode == '-av':
         for suffix, stream in [(" (audio only)", audio_default_filename), (" (video only)", video_default_filename)]:
-            print(suffix, stream, "jahdnfjlkahwejklfaw")
-
             command = [
                 'ffmpeg',
                 '-i', stream,
@@ -124,6 +122,9 @@ def download_double_stream(yt, filename,thumbnail_filename, mode):
                 '-y'
             ]
             subprocess.run(command)
+    elif mode == '-d':
+        pass
+
 
     # clean up tmp files
     os.remove(thumbnail_filename)