Any software that convert video files mpeg to audio mp3?
+ Reply to Thread
Results 1 to 7 of 7
-
If you can't do it with your video editing program, try Audacity. You may need to set up MP3 export. I can't remember exactly how to do that; IIRC Audacity leads you through the process.
Open your file, select the portion you want, then File>Export>Export Selected Audio. You can choose whatever format you want. -
-
Indeed a simple ffmpeg command will do:
will simply demux the audio as MP2, which is lossless and might be enough depending on the purpose; or:Code:ffmpeg -i "[filename].mpg" -vn -c copy "[filename].mp2"
which should convert to MP3 with the default settings corresponding to LAME's -V 4 VBR preset, which usually yields a good enough quality (variable bitrate with an average bitrate of ~165kbps). For better quality specify “-q:a 2” for instance (average bitrate ~190kbps).Code:ffmpeg -i "[filename].mpg" -vn "[filename].mp3"
And creating a batch script with a FOR loop allows to process all relevant files in a directory with a double-click, no need to specify the settings again the next time like it's usually needed for any GUI utility.
But indeed, that's another weird question with zero context, if it wasn't from a nearly 20 years old account I would wonder if it comes from a bored bot or something, as it seems to happen quite a lot lately...Code:FOR %%I in (*.mpg *.mpeg) DO ffmpeg -i "%%I" -vn -q:a 2 "%%I.mp3"
[EDIT] And since you revived that 15yo thread asking how to convert audio from a MPEG file to either MP3 or WAV, to get WAV files it would simply be:
(Much larger file sizes but much quicker since there is no compression involved.)Code:FOR %%I in (*.mpg *.mpeg) DO ffmpeg -i "%%I" -vn "%%I.wav"
Last edited by abolibibelot; 9th Apr 2026 at 14:27.
-
I replied in the other thread.
https://forum.videohelp.com/threads/322685-Converting-Video-Music-file-to-MP3#post2795331Avisynth functions Resize8 Mod - Audio Speed/Meter/Wave - FixBlend.zip - Position.zip
Avisynth/VapourSynth functions CropResize - FrostyBorders - CPreview (Cropping Preview) -
IMO
It's hard to take the post by 1234567 seriously.
You can't throw a rock & not hit an audio/video software that will do this.
1234567 has also been a member since 2006.
Hard to believe in 20 years he/she does not know how to do this.
Similar Threads
-
What software to use to convert Video TS files to an ISO file
By FatDragon4003 in forum Video ConversionReplies: 5Last Post: 16th Oct 2025, 11:37 -
Convert mp3 to mpeg
By dfisher052 in forum AudioReplies: 13Last Post: 18th Jun 2025, 14:19 -
Convert WAV and mp3 audio files to ps1 vag files software needed
By barry25 in forum Software PlayingReplies: 4Last Post: 25th May 2025, 10:22 -
Convert CUE files to MP3
By loninappleton in forum AudioReplies: 9Last Post: 26th Sep 2024, 00:23 -
open source software to convert any audio format to video
By savvyguy in forum Newbie / General discussionsReplies: 0Last Post: 29th May 2023, 09:26



Quote