added article about bash-notes. Still in draft
[danix.xyz.git] / content / articles / convertire-file-video-in-mp3.md
index 5d65cd7..7abdca2 100644 (file)
@@ -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,7 +17,7 @@ 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
 ```