-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathDOWNLOADER.sh
69 lines (54 loc) · 1.47 KB
/
DOWNLOADER.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#!/bin/sh
# Start of script
# Download the video downloaders I use
# YouTube-DL
# It is getting a bit dated now, and eventually it will stop working, as it hasn't been maintained for over 6 months. I don't use YT-DLP yet, but it is now an option here
# Ubuntu method (old)
def install_YouTube-DL_UbuntuOldMethod() {
sudo apt-get youtube-dl
break;
}
# Ubuntu method (new/bad)
def install_YouTube-DL_UbuntuNewMethod() {
sudo apt install youtube-dl
break;
}
# Fedora method (old)
def install_YouTube-DL_FedoraNewMethod() {
sudo dnf install youtube-dl
break;
}
# Fedora method (new)
def install_YouTube-DL_FedoraNewMethod() {
sudo yum install youtube-dl
break;
}
# YouTube-DLP
# I don't use it yet, but I will switch to it in the future.
# Ubuntu method (old)
def install_YouTube-DLP_UbuntuOldMethod() {
sudo apt-get youtube-dlp
break;
}
# Ubuntu method (new/bad)
def install_YouTube-DLP_UbuntuNewMethod() {
sudo apt install youtube-dlp
break;
}
# Fedora method (old)
def install_YouTube-DLP_FedoraNewMethod() {
sudo dnf install youtube-dlp
break;
}
# Fedora method (new)
def install_YouTube-DLP_FedoraNewMethod() {
sudo yum install youtube-dlp
break;
}
# Other video player (alternate for rare cases, or when YouTube-DL goes down to a false DMCA claim)
# Firefox: VideoDownloadHelper
# File info
# File type: Shell script file
# File version: 2 (2022, Friday, March 11th at 7:10 pm)
# Line count (including blank lines and compiler line): 70
# End of script