-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changed text color and text formatting
- Loading branch information
Showing
5 changed files
with
41 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,15 @@ | ||
@ECHO OFF | ||
color 0A | ||
ECHO ---------------------------------------------------------------------------------------------------------------------- | ||
ECHO. | ||
SET /P URL="[Enter video URL] " | ||
ECHO. | ||
ECHO ---------------------------------------------------------------------------------------------------------------------- | ||
ECHO. | ||
youtube-dl -o Downloads/%%(title)s.%%(ext)s -i --ignore-config --hls-prefer-native %URL% | ||
ECHO. | ||
ECHO ---------------------------------------------------------------------------------------------------------------------- | ||
ECHO. | ||
ECHO Done! | ||
PAUSE | ||
EXIT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,16 @@ | ||
@ECHO OFF | ||
color 0A | ||
ECHO ---------------------------------------------------------------------------------------------------------------------- | ||
ECHO. | ||
SET /P URL="[Enter video URL] " | ||
SET /P arguments="Enter custom arguments: " | ||
ECHO. | ||
ECHO ---------------------------------------------------------------------------------------------------------------------- | ||
ECHO. | ||
youtube-dl -o Downloads/%%(title)s.%%(ext)s %URL% %arguments% | ||
ECHO. | ||
ECHO ---------------------------------------------------------------------------------------------------------------------- | ||
ECHO. | ||
ECHO Done! | ||
PAUSE | ||
EXIT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
@ECHO OFF | ||
color 0A | ||
ECHO ---------------------------------------------------------------------------------------------------------------------- | ||
ECHO. | ||
youtube-dl -v | ||
ECHO. | ||
ECHO ---------------------------------------------------------------------------------------------------------------------- | ||
ECHO. | ||
ECHO Done! | ||
PAUSE | ||
EXIT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
@ECHO OFF | ||
color 0A | ||
ECHO ---------------------------------------------------------------------------------------------------------------------- | ||
ECHO. | ||
youtube-dl -U | ||
ECHO. | ||
ECHO ---------------------------------------------------------------------------------------------------------------------- | ||
ECHO. | ||
ECHO Done! | ||
PAUSE | ||
EXIT |