From 2fd76f342a231c2ac610da7cc7fc0071342894d7 Mon Sep 17 00:00:00 2001 From: Blomblo <63555404+mrblomblo@users.noreply.github.com> Date: Sat, 30 Mar 2024 12:38:31 +0100 Subject: [PATCH] Added version 1 This version will not be updated, and I can't guarantee that I can give support for issues. --- legacy/run.txt | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 legacy/run.txt diff --git a/legacy/run.txt b/legacy/run.txt new file mode 100644 index 0000000..f71eb2c --- /dev/null +++ b/legacy/run.txt @@ -0,0 +1,39 @@ +@echo OFF + +cd "[The location where you have yt-dlp.exe]" + +title Enter URL to Download + +set /p URL=URL: + +cls + +title Enter File Format + +set /p format=Audio (a) or Video (v)?: + +cls + +title Downloading... + +if %format%==a yt-dlp.exe -P "[The location where you want downloaded files to appear]" -x -f "ba/b" -o "%%(title)s.%%(ext)s" -w %URL% +if %format%==v yt-dlp.exe -P "[The location where you want downloaded files to appear]" -f "bv+ba/b" -o "%%(title)s.%%(ext)s" -w %URL% + +if %format%==a @echo Audio - %URL%>>"[The location where you have your log.txt file]" +if %format%==v @echo Video - %URL%>>"[The location where you have your log.txt file]" + +cls + +title Download more? + +set /p more=Do you want to download more? Yes (y) or No (n): + +if %more%==y start Run.bat +if %more%==y exit +if %more%==n goto b + +:b + +explorer "[The location where you want downloaded files to appear]" + +exit \ No newline at end of file