Updated config

This commit is contained in:
Eduard Urbach 2025-06-26 13:37:26 +02:00
parent dea8315917
commit 6d7312c465
Signed by: akyoto
GPG key ID: 49226B848C78F6C8
6 changed files with 17 additions and 4 deletions

6
.config/fish/scripts/remux Executable file
View file

@ -0,0 +1,6 @@
#!/usr/bin/fish
for f in *.opus
set tmp /tmp/remux.opus
ffmpeg -i "$f" -c copy "$tmp" && mv "$tmp" "$f"
end