Add chiptune-mix

master
Simon Bruder 2020-10-04 12:05:19 +02:00
parent e39b3dac30
commit 46a4a8245e
No known key found for this signature in database
GPG Key ID: 6F03E0000CC5B62F
1 changed files with 16 additions and 0 deletions

16
chiptune-mix.sh Executable file
View File

@ -0,0 +1,16 @@
#!/usr/bin/env nix-shell
#!nix-shell -i bash -p sidplayfp ffmpeg-full
# Creates 4-channel flac file to be played with mpv profile “musicvideo-c64”
# Set HVSC_BASE to point to your HVSC directory, otherwise the output
# will be 2 seconds long
if [ "$#" != "2" ]; then
exit 1
fi
sidplayfp -w"${2}" "$1"
sidplayfp -u2 -u3 -w"${2}1" "$1"
sidplayfp -u1 -u3 -w"${2}2" "$1"
sidplayfp -u1 -u2 -w"${2}3" "$1"
# order is pretty much fucked up, thank you whatever is causing this
ffmpeg -i "${2}2.wav" -i "${2}.wav" -i "${2}1.wav" -i "${2}3.wav" -filter_complex 'join=inputs=4:channel_layout=4.0,volume=2' "${2}.flac"