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:
| #![feature(poll_map)] | |
| use futures::{stream, StreamExt}; | |
| use futures::{FutureExt, TryStreamExt}; | |
| use std::env; | |
| use tokio::sync::mpsc; | |
| use tokio_postgres::{connect, NoTls}; | |
| #[tokio::main] | |
| async fn main() { | |
| let connection_parameters = env::var("DBURL").unwrap(); |
| Debugger commands: | |
| apropos -- List debugger commands related to a word or subject. | |
| breakpoint -- Commands for operating on breakpoints (see 'help b' for | |
| shorthand.) | |
| bugreport -- Commands for creating domain-specific bug reports. | |
| command -- Commands for managing custom LLDB commands. | |
| disassemble -- Disassemble specified instructions in the current | |
| target. Defaults to the current function for the | |
| current thread and stack frame. |