Wut is häpenin

This commit is contained in:
J. Fronny 2020-06-20 15:09:59 +00:00
parent 59ff9d309c
commit 3b660ab4a6
1 changed files with 8 additions and 0 deletions

View File

@ -20,21 +20,29 @@ uptool:
) -match '.' -join ';'
#Quick hack reimplementing DownloadData because it apparently doesn't want to work
cd testexetrisathlon
echo Intro
youtube-dl -x --no-playlist --audio-format mp3 -o Intro.mp3 https://youtu.be/U06jlgpMtQs
echo InGame1
youtube-dl -x --no-playlist --audio-format wav -o st1.wav https://youtu.be/hueJrl83sOQ
youtube-dl -x --no-playlist --audio-format wav -o st2.wav https://youtu.be/7gSS4h47rLU
youtube-dl -x --no-playlist --audio-format wav -o st3.wav https://youtu.be/NDjDgvXlfVw
ls
ffmpeg -i st1.wav -i st2.wav -i st3.wav -filter_complex "concat=n=3:v=0:a=1" -vn InGame1.mp3
ls
rm st1.wav
rm st2.wav
rm st3.wav
echo InGame2
youtube-dl -x --no-playlist --audio-format wav -o st1.wav https://youtu.be/umEDct4BoGc
youtube-dl -x --no-playlist --audio-format wav -o st2.wav https://youtu.be/NVpjt9gHlDw
youtube-dl -x --no-playlist --audio-format wav -o st3.wav https://youtu.be/zgKazTrhXmI
ls
ffmpeg -i st1.wav -i st2.wav -i st3.wav -filter_complex "concat=n=3:v=0:a=1" -vn InGame2.mp3
ls
rm st1.wav
rm st2.wav
rm st3.wav
echo GameOver
youtube-dl -x --no-playlist --audio-format mp3 -o GameOver.mp3 https://youtu.be/J_3Zad-e9f4
cd ..
#Nothing special after here