在 WinForms 应用程序中分割 wmv/wav 文件
我有一个 Windows 窗体应用程序,并且使用 Windows Media Player 的实例(通过 WMPLib)来播放一些音频/视频文件(wmv 或 wav 格式)。我当前需要做的是分割原始文件并从中“提取”一个或多个剪辑,比方说从文件的特定时间点提取 3-4 秒。
有什么想法如何做到这一点?
第三方库也可以,只要不是那么贵
I have a Windows Forms application, and I use an instance of Windows Media Player (via WMPLib) to play some audio/video files, either wmv or wav format. What I currently need to do is split the original file and "extract" one ore more clips from it, let's say 3-4 seconds from a specific point in time of the file.
Any ideas how to do this?
Third party libraries are ok, as long as they are not all that expensive
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看 Windows媒体编码器 SDK。像这样的东西:
应该有效。
Have a look at the Windows Media Encoder SDK. Something like this:
should work.