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:
/* | |
* Ejercicio [5] final 12/12/06 | |
* Escribir un algoritmo ANSI C que, sin crear archivos intermedios | |
* altere el archivo a.txt reemplazando la secuencia '//' por '*' | |
* Excepto si se encuentra entre parentesis | |
*/ | |
/* | |
* Compilar con gcc -ansi -std=gnu99 -o prueba inplace-acortar.c | |
*/ |
/* | |
Implemente una rutina (en Windows o Linux) que dibuje un óvalo que ocupe toda la ventana. | |
*/ | |
#include <gtkmm/drawingarea.h> | |
#include <gtkmm/application.h> | |
#include <gtkmm/window.h> | |
#include <cmath> | |
class Ovalo : public Gtk::DrawingArea { |
ffmpeg -i inputfile.wav -ab 320k outputfile.mp3 |