diff options
Diffstat (limited to 'content/en/articles/convertire-file-video-in-mp3/index.md')
| -rw-r--r-- | content/en/articles/convertire-file-video-in-mp3/index.md | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/content/en/articles/convertire-file-video-in-mp3/index.md b/content/en/articles/convertire-file-video-in-mp3/index.md index 5a6ccf4..85404f2 100644 --- a/content/en/articles/convertire-file-video-in-mp3/index.md +++ b/content/en/articles/convertire-file-video-in-mp3/index.md @@ -1,23 +1,24 @@ +++ -title = "convertire file video in mp3" +title = "Convert Video Files to MP3" author = "Danilo M." -type = "life" +type = "tech" date = "2012-05-25T15:42:02+00:00" -excerpt = "a simple way to convert from a video file to an mp3" +excerpt = "A simple way to convert from a video file to an MP3." categories = ["code", "diy", "linux"] tags = ["audio", "convert", "mp3", "video"] +++ -un piccolo appunto su come convertire velocemente un video in mp3.. + +A quick word on how to convert a video to MP3. Here's how I did it. ```bash -ffmpeg -i file_da_convertire.flv -f mp3 -ab 192000 -vn nuovo_file.mp3 +ffmpeg -i file_to_convert.flv -f mp3 -ab 192000 -vn new_file.mp3 ``` -ovviamente bisogna avere ffmpeg installato nel sistema, le opzioni che abbiamo passato sulla riga sono: +Obviously, you need to have ffmpeg installed on your system. The options I passed on that line are: - * `-i`: file di input - * `-f`: formato di output - * `-ab`: bitrate del file mp3 - * `-vn`: non catturare il video + - `-i`: input file + - `-f`: output format + - `-ab`: MP3 bitrate (192 kbps in this case) + - `-vn`: do not capture video -Semplice e veloce, provare per credere.. ;) e ovviamente se usate questo comando o lo migliorate in qualche modo fatemelo sapere nei commenti..
\ No newline at end of file +Simple and fast. Try it out and see for yourself ;) And naturally, if you use this command or manage to improve it somehow, let me know.
\ No newline at end of file |
