Changed
- Change output file extension from .ogg to .opus for opus encoded files
Some media players do not seem to like like the .ogg extension for opus audio files
and the .opus extension is also [recommended](https://datatracker.ietf.org/doc/html/rfc7845#section-9).
- To fix (recursively rename files from ogg to opus) already synced directories you can use the
following command under linux:
bash
find . -name '*.ogg' -exec rename .ogg .opus {} +