home/.config/fish/scripts/remux.fish
2025-06-16 23:07:48 +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