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:
| version: '2' | |
| services: | |
| stfdb: | |
| image: rethinkdb:2 | |
| restart: always | |
| ports: | |
| - 8082:8080 | |
| - 28015:28015 | |
| volumes: | |
| - db_data:/data |
| #!/bin/bash | |
| ## Check for versions compiled with ARM at http://nodejs.org/dist/ | |
| ## Inspired by http://oskarhane.com/raspberry-pi-install-node-js-and-npm/ | |
| ## Fill in the Node Version here: | |
| ########################################################################## | |
| NODE_VERSION="v0.10.21" |