Last active 1628671436

a thing to download every series from First We Feast for some reason

Alyssa Smith revised this gist 1628707436. Go to revision

1 file changed, 75 insertions

fwf-dl.sh(file created)

@@ -0,0 +1,75 @@
1 + #!/bin/bash
2 + function dlyt {
3 + i=1
4 + while read p; do
5 + mkdir -p "$1/Season $i"
6 + cd "$1/Season $i"
7 + youtube-dl -ciw -f 22 -o "%(autonumber)s - %(title)s.%(ext)s" "$p"
8 + cd "$OLDPWD"
9 + i=$((i+1))
10 + done
11 + }
12 +
13 + dlyt "Hot Ones" <<EOF
14 + https://www.youtube.com/playlist?list=PLAzrgbu8gEMIfV-k5JA89NP3j2JGsFapZ
15 + https://www.youtube.com/playlist?list=PLAzrgbu8gEMILwwuaCqGetHcYs9NjDkLC
16 + https://www.youtube.com/playlist?list=PLAzrgbu8gEMJBCt-lRk6risydJRkmm-iO
17 + https://www.youtube.com/playlist?list=PLAzrgbu8gEMLQMUHDrs3bD3RpV-gbH_43
18 + https://www.youtube.com/playlist?list=PLAzrgbu8gEMJUAyM97dEpasBiWdUxp0oU
19 + https://www.youtube.com/playlist?list=PLAzrgbu8gEMLTBXKb0BtKDgrR9Qe8UKwe
20 + https://www.youtube.com/playlist?list=PLAzrgbu8gEMJk-pzvDvBM2hDgiBjo51ey
21 + https://www.youtube.com/playlist?list=PLAzrgbu8gEMJZoWcO2Jrrm647r0oQZgqQ
22 + https://www.youtube.com/playlist?list=PLAzrgbu8gEMIwGmZWJLVbu0BmoEhVMQMw
23 + https://www.youtube.com/playlist?list=PLAzrgbu8gEMJeNSWN9XJPbzP_k3Tddz0x
24 + https://www.youtube.com/playlist?list=PLAzrgbu8gEMKHkAOafKTEt4BfDD154EaU
25 + https://www.youtube.com/playlist?list=PLAzrgbu8gEMKJk8o_iIKE8tSJoUEn71lc
26 + https://www.youtube.com/playlist?list=PLAzrgbu8gEMLlNmYrWNOwV52bHAwrmHoO
27 + https://www.youtube.com/playlist?list=PLAzrgbu8gEMJkBpjH-Wavb86UYlCahnjh
28 + https://www.youtube.com/playlist?list=PLAzrgbu8gEMLhb1bV3ATXhsVCwhoc1Sf2
29 + EOF
30 +
31 + dlyt "Sean in the Wild" <<EOF
32 + https://www.youtube.com/playlist?list=PLAzrgbu8gEMJwpWSRJUoTUXUlnSkrPM-5
33 + https://www.youtube.com/playlist?list=PLAzrgbu8gEMIBz1ruMTu8yqnDuel4ei8i
34 + EOF
35 +
36 + dlyt "The Burger Show" <<EOF
37 + https://www.youtube.com/playlist?list=PLAzrgbu8gEMLWkhRQxRwNeKcXS3SZOBkV
38 + https://www.youtube.com/playlist?list=PLAzrgbu8gEMLapeK4z4mYVnFCyZ4PRhU9
39 + https://www.youtube.com/playlist?list=PLAzrgbu8gEMJkq1iErnBrByYC69XCxgov
40 + https://www.youtube.com/playlist?list=PLAzrgbu8gEMK8zGcsu70ju7KvWyNBWYnL
41 + https://www.youtube.com/playlist?list=PLAzrgbu8gEMKoPLk9xZkrrxyznk2SJQ3B
42 + https://www.youtube.com/playlist?list=PLAzrgbu8gEMJHe7E9ZAuocf_nL4Q8D_0_
43 + https://www.youtube.com/playlist?list=PLAzrgbu8gEMJURWEuYrbm8PnIaKaDhh7x
44 + EOF
45 +
46 + dlyt "That's Odd, Let's Drink It" <<EOF
47 + https://www.youtube.com/playlist?list=PLAzrgbu8gEMJea14KlykCBfx_sE_K0cic
48 + https://www.youtube.com/playlist?list=PLAzrgbu8gEMKgq6Dlse6I1IKcKiu-J6yR
49 + EOF
50 +
51 + dlyt "Feast Mansion" <<EOF
52 + https://www.youtube.com/playlist?list=PLAzrgbu8gEMK38tPJV1wUQw6sdCFBbBI-
53 + https://www.youtube.com/playlist?list=PLAzrgbu8gEMJDCAfN8Zxi8od-um3WY6AF
54 + EOF
55 +
56 + dlyt "Curry Shop" <<EOF
57 + https://www.youtube.com/playlist?list=PLAzrgbu8gEMKb-Qbm8XeqxaJTqikofFmU
58 + EOF
59 +
60 + dlyt "Burger Scholar Sessions" <<EOF
61 + https://www.youtube.com/playlist?list=PLAzrgbu8gEMIkFTtpY-Vn0Kjj_LQ0pE0M
62 + EOF
63 +
64 + dlyt "Tacos Con Todo" <<EOF
65 + https://www.youtube.com/playlist?list=PLAzrgbu8gEMKa8GMTfgYbNhfHQaHNX6I_
66 + https://www.youtube.com/playlist?list=PLAzrgbu8gEMJRUL_nTVVAa_U6pu7XFGgU
67 + EOF
68 +
69 + dlyt "Coneheads" <<EOF
70 + https://www.youtube.com/playlist?list=PLAzrgbu8gEMI3kcTLiUU-oCts4ZOK8RYP
71 + EOF
72 +
73 + dlyt "Truth or Dab" <<EOF
74 + https://www.youtube.com/playlist?list=PLAzrgbu8gEMKOd-wxYAzfKgYATtvId1DV
75 + EOF
Newer Older