6 lines
No EOL
110 B
Fish
Executable file
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 |