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:
| { | |
| "$id": "noodl-schema", | |
| "$ref": "#/definitions/Page", | |
| "$schema": "http://json-schema.org/draft-07/schema#", | |
| "anyOf": [ | |
| { | |
| "$ref": "#/definitions/RootConfig" | |
| } | |
| ], | |
| "definitions": { |
| {"lastUpload":"2021-05-14T14:01:55.433Z","extensionVersion":"v3.4.3"} |
| Originall From: Posted 2015-05-29 http://ubwg.net/b/full-list-of-ffmpeg-flags-and-options | |
| This is the complete list that’s outputted by ffmpeg when running ffmpeg -h full. | |
| usage: ffmpeg [options] [[infile options] -i infile]… {[outfile options] outfile}… | |
| Getting help: | |
| -h — print basic options | |
| -h long — print more options | |
| -h full — print all options (including all format and codec specific options, very long) |
| /* | |
| * Copyright 2016, Matthieu Dumas | |
| * This work is licensed under the Creative Commons Attribution 4.0 International License. | |
| * To view a copy of this license, visit http://creativecommons.org/licenses/by/4.0/ | |
| */ | |
| /* Usage : | |
| * var log = Logger.get("myModule") // .level(Logger.ALL) implicit | |
| * log.info("always a string as first argument", then, other, stuff) | |
| * log.level(Logger.WARN) // or ALL, DEBUG, INFO, WARN, ERROR, OFF |