用于视频编辑的 .Net sdk,如 Windows Movie Marker
我目前正在开发 .net 应用程序,其中包含一个音频和一个音频。视频文件。 音频文件根据数据库条目分割成小部分。然后我们必须将这些文件合并到视频文件的特定位置。我们使用像 Windows Movie Maker 这样的东西,
如果有人为此建议一些基于 .net 的 sdk,那就太好了。
i am currently working on .net application which contains one audio & video file.
audio file is split as in to small section as per database entries. then we have to merge this files on video file at specific positions.we what something like windows movie maker
it will be nice if someone suggest some .net based sdk for this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 ffmpeg 来实现此目的。但您需要一个 .net 包装器才能使其在 C# 中可用。
您可以使用 ffmpeg-sharp 或 SolidFFMpeg。它是 FFmpeg 多媒体套件上的一个包装器库,提供易于在 C# 中使用的包装器。
You can use ffmpeg for this purpose. But you will need a .net wrapper to make it usable in C#.
You can use ffmpeg-sharp or SolidFFMpeg. its a a wrapper library over the FFmpeg multimedia suite that provides easy to use wrappers for use in C#.
Datastead Software 的 TVideoGrabber Video SDK 具有此功能。
“将多个视频剪辑和/或音频剪辑完整地或通过指定各自的开始时间和结束时间合并为一个视频剪辑和/或音频剪辑”
http://www.datastead.com/products/tvideograbber/features.html
Datastead Software's TVideoGrabber Video SDK has this feature.
"join several video clips and/or audio clips into a single one, in full or by specifying respective start times and end times"
http://www.datastead.com/products/tvideograbber/features.html
Windows Movie Maker 背后的引擎是 DirectShow 编辑服务。您可以通过 DirectShow.NET 使用它。
The engine behind Windows Movie Maker is DirectShow Editing Services. You can use it via DirectShow.NET.