fwf-dl.sh
· 3.0 KiB · Bash
Raw
#!/bin/bash
function dlyt {
i=1
while read p; do
mkdir -p "$1/Season $i"
cd "$1/Season $i"
youtube-dl -ciw -f 22 -o "%(autonumber)s - %(title)s.%(ext)s" "$p"
cd "$OLDPWD"
i=$((i+1))
done
}
dlyt "Hot Ones" <<EOF
https://www.youtube.com/playlist?list=PLAzrgbu8gEMIfV-k5JA89NP3j2JGsFapZ
https://www.youtube.com/playlist?list=PLAzrgbu8gEMILwwuaCqGetHcYs9NjDkLC
https://www.youtube.com/playlist?list=PLAzrgbu8gEMJBCt-lRk6risydJRkmm-iO
https://www.youtube.com/playlist?list=PLAzrgbu8gEMLQMUHDrs3bD3RpV-gbH_43
https://www.youtube.com/playlist?list=PLAzrgbu8gEMJUAyM97dEpasBiWdUxp0oU
https://www.youtube.com/playlist?list=PLAzrgbu8gEMLTBXKb0BtKDgrR9Qe8UKwe
https://www.youtube.com/playlist?list=PLAzrgbu8gEMJk-pzvDvBM2hDgiBjo51ey
https://www.youtube.com/playlist?list=PLAzrgbu8gEMJZoWcO2Jrrm647r0oQZgqQ
https://www.youtube.com/playlist?list=PLAzrgbu8gEMIwGmZWJLVbu0BmoEhVMQMw
https://www.youtube.com/playlist?list=PLAzrgbu8gEMJeNSWN9XJPbzP_k3Tddz0x
https://www.youtube.com/playlist?list=PLAzrgbu8gEMKHkAOafKTEt4BfDD154EaU
https://www.youtube.com/playlist?list=PLAzrgbu8gEMKJk8o_iIKE8tSJoUEn71lc
https://www.youtube.com/playlist?list=PLAzrgbu8gEMLlNmYrWNOwV52bHAwrmHoO
https://www.youtube.com/playlist?list=PLAzrgbu8gEMJkBpjH-Wavb86UYlCahnjh
https://www.youtube.com/playlist?list=PLAzrgbu8gEMLhb1bV3ATXhsVCwhoc1Sf2
EOF
dlyt "Sean in the Wild" <<EOF
https://www.youtube.com/playlist?list=PLAzrgbu8gEMJwpWSRJUoTUXUlnSkrPM-5
https://www.youtube.com/playlist?list=PLAzrgbu8gEMIBz1ruMTu8yqnDuel4ei8i
EOF
dlyt "The Burger Show" <<EOF
https://www.youtube.com/playlist?list=PLAzrgbu8gEMLWkhRQxRwNeKcXS3SZOBkV
https://www.youtube.com/playlist?list=PLAzrgbu8gEMLapeK4z4mYVnFCyZ4PRhU9
https://www.youtube.com/playlist?list=PLAzrgbu8gEMJkq1iErnBrByYC69XCxgov
https://www.youtube.com/playlist?list=PLAzrgbu8gEMK8zGcsu70ju7KvWyNBWYnL
https://www.youtube.com/playlist?list=PLAzrgbu8gEMKoPLk9xZkrrxyznk2SJQ3B
https://www.youtube.com/playlist?list=PLAzrgbu8gEMJHe7E9ZAuocf_nL4Q8D_0_
https://www.youtube.com/playlist?list=PLAzrgbu8gEMJURWEuYrbm8PnIaKaDhh7x
EOF
dlyt "That's Odd, Let's Drink It" <<EOF
https://www.youtube.com/playlist?list=PLAzrgbu8gEMJea14KlykCBfx_sE_K0cic
https://www.youtube.com/playlist?list=PLAzrgbu8gEMKgq6Dlse6I1IKcKiu-J6yR
EOF
dlyt "Feast Mansion" <<EOF
https://www.youtube.com/playlist?list=PLAzrgbu8gEMK38tPJV1wUQw6sdCFBbBI-
https://www.youtube.com/playlist?list=PLAzrgbu8gEMJDCAfN8Zxi8od-um3WY6AF
EOF
dlyt "Curry Shop" <<EOF
https://www.youtube.com/playlist?list=PLAzrgbu8gEMKb-Qbm8XeqxaJTqikofFmU
EOF
dlyt "Burger Scholar Sessions" <<EOF
https://www.youtube.com/playlist?list=PLAzrgbu8gEMIkFTtpY-Vn0Kjj_LQ0pE0M
EOF
dlyt "Tacos Con Todo" <<EOF
https://www.youtube.com/playlist?list=PLAzrgbu8gEMKa8GMTfgYbNhfHQaHNX6I_
https://www.youtube.com/playlist?list=PLAzrgbu8gEMJRUL_nTVVAa_U6pu7XFGgU
EOF
dlyt "Coneheads" <<EOF
https://www.youtube.com/playlist?list=PLAzrgbu8gEMI3kcTLiUU-oCts4ZOK8RYP
EOF
dlyt "Truth or Dab" <<EOF
https://www.youtube.com/playlist?list=PLAzrgbu8gEMKOd-wxYAzfKgYATtvId1DV
EOF
| 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 |
| 76 |