aboutsummaryrefslogtreecommitdiffstats
path: root/ffmpeg
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2021-06-25 12:56:30 +0200
committerMattias Andrée <maandree@kth.se>2021-06-25 12:56:30 +0200
commit5a7db2f34aa6a6787d98a001b6d28be97f36abf4 (patch)
tree52db199005cc5daee35b5c0e9b3d28b534449e1c /ffmpeg
downloaddotfiles-5a7db2f34aa6a6787d98a001b6d28be97f36abf4.tar.gz
dotfiles-5a7db2f34aa6a6787d98a001b6d28be97f36abf4.tar.bz2
dotfiles-5a7db2f34aa6a6787d98a001b6d28be97f36abf4.tar.xz
First commit
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'ffmpeg')
-rw-r--r--ffmpeg/Makefile12
-rw-r--r--ffmpeg/bash-aliases25
2 files changed, 37 insertions, 0 deletions
diff --git a/ffmpeg/Makefile b/ffmpeg/Makefile
new file mode 100644
index 0000000..32991b3
--- /dev/null
+++ b/ffmpeg/Makefile
@@ -0,0 +1,12 @@
+.POSIX:
+
+install:
+ mkdir -p -- ~/.config/bash/aliases.d
+ test ! -d ~/.config/bash/aliases.d/ffmpeg
+ ln -sf -- ~/.dotfiles/ffmpeg/bash-aliases ~/.config/bash/aliases.d/ffmpeg
+
+uninstall:
+ -unlink -- ~/.config/bash/aliases.d/ffmpeg
+ -rmdir -- ~/.config/bash/aliases.d
+
+.PHONY: install uninstall
diff --git a/ffmpeg/bash-aliases b/ffmpeg/bash-aliases
new file mode 100644
index 0000000..41846c8
--- /dev/null
+++ b/ffmpeg/bash-aliases
@@ -0,0 +1,25 @@
+# -*- shell-script -*-
+
+remove-video-on-all () (
+ for ext in opus aac mp3 m4a; do
+ for f in *.{mkv,mp4,webm}; do
+ if ffmpeg -i "$f" -map 0:a -codec copy -y -- "$f.$ext"; then
+ rm -- "$f"
+ else
+ rm -- "$f.$ext"
+ fi
+ done
+ done
+)
+
+remove-video-on-all-1 () (
+ for ext in opus aac mp3 m4a; do
+ for f in *."$1"; do
+ if ffmpeg -i "$f" -map 0:a -codec copy -y -- "$f.$ext"; then
+ rm -- "$f"
+ else
+ rm -- "$f.$ext"
+ fi
+ done
+ done
+)