From beb62373ad8330e33840ae14d5eb24441d97b543 Mon Sep 17 00:00:00 2001 From: "Danilo M." Date: Thu, 16 Apr 2026 14:52:16 +0200 Subject: feat: import 36 articles with assets and create supporting shortcodes - Migrate all English articles from old site to content/en/articles/ - Organize article assets in static/uppies/year/month/ structure - Create Italian article stubs with draft=true status - Add 7 new shortcodes: strike, em, dropcap, figure, highlight, img, youtube, gal-img - Update article image paths to reference /uppies/ locations - All 36 articles now build successfully without errors Co-Authored-By: Claude Haiku 4.5 --- .../articles/convertire-file-video-in-mp3/index.md | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 content/en/articles/convertire-file-video-in-mp3/index.md (limited to 'content/en/articles/convertire-file-video-in-mp3') diff --git a/content/en/articles/convertire-file-video-in-mp3/index.md b/content/en/articles/convertire-file-video-in-mp3/index.md new file mode 100644 index 0000000..5a6ccf4 --- /dev/null +++ b/content/en/articles/convertire-file-video-in-mp3/index.md @@ -0,0 +1,23 @@ ++++ +title = "convertire file video in mp3" +author = "Danilo M." +type = "life" +date = "2012-05-25T15:42:02+00:00" +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.. + +```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 + +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 -- cgit v1.2.3