使用 ffmpeg 将音频文件转换为 mp3 [英] Convert audio files to mp3 using ffmpeg

查看:208
本文介绍了使用 ffmpeg 将音频文件转换为 mp3的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要使用 ffmpeg 将音频文件转换为 mp3.

I need to convert audio files to mp3 using ffmpeg.

当我将命令写为 ffmpeg -i audio.ogg -acodec mp3 newfile.mp3 时,出现错误:

When I write the command as ffmpeg -i audio.ogg -acodec mp3 newfile.mp3, I get the error:

FFmpeg version 0.5.2, Copyright (c) 2000-2009 Fabrice Bellard, et al.
  configuration: 
  libavutil     49.15. 0 / 49.15. 0
  libavcodec    52.20. 1 / 52.20. 1
  libavformat   52.31. 0 / 52.31. 0
  libavdevice   52. 1. 0 / 52. 1. 0
  built on Jun 24 2010 14:56:20, gcc: 4.4.1
Input #0, mp3, from 'ZHRE.mp3':
  Duration: 00:04:12.52, start: 0.000000, bitrate: 208 kb/s
    Stream #0.0: Audio: mp3, 44100 Hz, stereo, s16, 256 kb/s
Output #0, mp3, to 'audio.mp3':
    Stream #0.0: Audio: 0x0000, 44100 Hz, stereo, s16, 64 kb/s
Stream mapping:
  Stream #0.0 -> #0.0
Unsupported codec for output stream #0.0

我也运行了这个命令:

 ffmpeg -formats | grep mp3

得到这个回应:

FFmpeg version 0.5.2, Copyright (c) 2000-2009 Fabrice Bellard, et al.
  configuration: 
  libavutil     49.15. 0 / 49.15. 0
  libavcodec    52.20. 1 / 52.20. 1
  libavformat   52.31. 0 / 52.31. 0
  libavdevice   52. 1. 0 / 52. 1. 0
  built on Jun 24 2010 14:56:20, gcc: 4.4.1
 DE mp3             MPEG audio layer 3
 D A    mp3             MP3 (MPEG audio layer 3)
 D A    mp3adu          ADU (Application Data Unit) MP3 (MPEG audio layer 3)
 D A    mp3on4          MP3onMP4
 text2movsub remove_extra noise mov2textsub mp3decomp mp3comp mjpegadump imxdump h264_mp4toannexb dump_extra

我猜没有安装 mp3 编解码器.我在正确的轨道上吗?

I guess that the mp3 codec isn't installed. Am I on the right track here?

推荐答案

没关系,

我正在使用以下命令将我的音频文件转换为 mp2:

I am converting my audio files to mp2 by using the command:

ffmpeg -i input.wav -f mp2 output.mp3

此命令完美运行.

我知道这实际上将文件转换为 mp2 格式,但结果文件大小相同..

I know that this actually converts the files to mp2 format, but then the resulting file sizes are the same..

这篇关于使用 ffmpeg 将音频文件转换为 mp3的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆