diff options
author | Benjamin Chausse <benjamin@chausse.xyz> | 2024-01-13 17:52:36 -0500 |
---|---|---|
committer | Benjamin Chausse <benjamin@chausse.xyz> | 2024-01-13 17:52:36 -0500 |
commit | bf434758d9c60c323d571bc1e2e329edaad06fa3 (patch) | |
tree | c7cdaaba012b4560d49aaadc5e588c9563348214 /.local/bin/makestereo | |
parent | a0cab8cd1a13e665ee83efecf37fa8cf87bf2c46 (diff) |
More debloating
Diffstat (limited to '.local/bin/makestereo')
-rwxr-xr-x | .local/bin/makestereo | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/.local/bin/makestereo b/.local/bin/makestereo deleted file mode 100755 index f43a696..0000000 --- a/.local/bin/makestereo +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/sh - -file=$(readlink -f "$1") -dir=$(dirname "$file") -base="${file##*/}" -ext="${base##*.}" - -ffmpeg -i $file -af "pan=stereo|FL < 1.0*FL + 0.707*FC + 0.707*BL|FR < 1.0*FR + 0.707*FC + 0.707*BR" "$dir/stereo-$base.$ext" - |