使用 NAudio 修剪 mp3 文件
是否可以使用 NAudio 修剪 MP3 文件?我正在寻找一种方法来获取标准 mp3 文件并获取其中的一部分并将其制作为单独的 mp3。
Is it possible to trim a MP3 file using NAudio? I am looking for a way to take a standard mp3 file and take a part of it and make it a seperate mp3.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从 Nuget 安装 NAudio:
添加
using NAudio.Wave;
并使用此代码:Happy Trails。
Install NAudio from Nuget:
Add
using NAudio.Wave;
and use this code:Happy trails.
是的,MP3 文件是 MP3 帧的序列,因此您只需从开头或结尾删除帧即可修剪文件。 NAudio 可以解析 MP3 帧。
有关更多详细信息,请参阅此问题。
Yes, an MP3 file is a sequence of MP3 frames, so you can simply remove frames from the start or end to trim the file. NAudio can parse MP3 frames.
See this question for more details.