home/.config/fish/scripts/remux
2025-06-26 13:37:26 +02:00

6 lines
No EOL
110 B
Fish
Executable file

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