Minimal example: transcode from MP3 to WMA:
ffmpeg -i input.mp3 output.wma
You can get the list of supported formats with:
ffmpeg -formats
You can get the list of installed codecs with:
| export ATUIN_ARROW_INDEX=-1 | |
| upArrow() { | |
| export ATUIN_ARROW_INDEX=$(( ATUIN_ARROW_INDEX + 1)) | |
| COMMAND=$(atuin search --limit 1 --offset $ATUIN_ARROW_INDEX | cut -f2) | |
| LBUFFER="$COMMAND" | |
| return | |
| } |
| # Extremely basic development setup to serve the current directory at http://localhost:9001 | |
| # Start nginx in this directory with `nginx -p . -c nginx.conf` | |
| # Stop nginx with `nginx -p . -s stop` | |
| events {} | |
| http { | |
| # Serve files with correct mimetypes on OSX | |
| # location may have to be adjusted depending on your OS and nginx install | |
| include /usr/local/etc/nginx/mime.types; |