X-Git-Url: https://git.danix.xyz/?a=blobdiff_plain;f=content%2Farticles%2Fconvertire-file-video-in-mp3.md;h=7abdca2dfb136353bdfd6cc9776307134c9c196d;hb=d56fc2d0cc28fea93c94f7800ec231cfdb161004;hp=0bc11cf83ccd1da534bcf759aa8e1451328a7807;hpb=11d9314b96b9d6411b5b22a3e2f5077d14f2d594;p=danix.xyz.git diff --git a/content/articles/convertire-file-video-in-mp3.md b/content/articles/convertire-file-video-in-mp3.md index 0bc11cf..7abdca2 100644 --- a/content/articles/convertire-file-video-in-mp3.md +++ b/content/articles/convertire-file-video-in-mp3.md @@ -1,7 +1,7 @@ --- title: convertire file video in mp3 author: Danilo M. -type: post +type: article date: 2012-05-25T15:42:02+00:00 excerpt: a simple way to convert from a video file to an mp3 categories: @@ -17,15 +17,15 @@ tags: --- un piccolo appunto su come convertire velocemente un video in mp3.. -``` +```bash ffmpeg -i file_da_convertire.flv -f mp3 -ab 192000 -vn nuovo_file.mp3 ``` ovviamente bisogna avere ffmpeg installato nel sistema, le opzioni che abbiamo passato sulla riga sono: - * -i: file di input - * -f: formato di output - * -ab: bitrate del file mp3 - * -vn: non catturare il video + * `-i`: file di input + * `-f`: formato di output + * `-ab`: bitrate del file mp3 + * `-vn`: non catturare il 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