summaryrefslogtreecommitdiffstats
path: root/content/en
diff options
context:
space:
mode:
authorDanilo M. <danix@danix.xyz>2026-04-22 16:38:39 +0200
committerDanilo M. <danix@danix.xyz>2026-04-22 16:38:39 +0200
commit4579ab50ab599577fcf3572c02f29b0a29c40593 (patch)
tree667e552b06637ff56e8979cd584f6c226f3eab9b /content/en
parentf25bb16223fa7321b3090437a4bafcadda38a837 (diff)
downloaddanixxyz-4579ab50ab599577fcf3572c02f29b0a29c40593.tar.gz
danixxyz-4579ab50ab599577fcf3572c02f29b0a29c40593.zip
Updated articles/convertire-file-video-in-mp3release_22042026-1638
Diffstat (limited to 'content/en')
-rw-r--r--content/en/articles/convertire-file-video-in-mp3/index.md23
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