使用 xuggler 设置 mp3 比特率

发布于 2024-12-15 19:17:01 字数 169 浏览 3 评论 0原文

我需要使用 xuggler 将音频文件转换为 192 kbps 比特率的 mp3 格式。

addAudioStream 方法实现了 IWriter 接口,以 64 kbps 的速率写入音频文件。

如何设置比特率?

I need to convert audio files to mp3 format with a 192 kbps bitrate using xuggler.

The method addAudioStream, which implements the IWriter interface, is writing the audio files at 64 kbps.

How can I set the bit rate?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

长不大的小祸害 2024-12-22 19:17:01

获取音频流的 Stream Coder 并调用 setBitrate,如下所示:

getStreamCoder().setBitRate(192*1024);

Get the Stream Coder for the audio stream and call setBitrate like this:

getStreamCoder().setBitRate(192*1024);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文