diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 88b05a5..5ce7edd 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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