How to merge 2 video files together in C#?
问题 I need to merge multiple video files (.wmv) together to get a single wmv file. How can I do it? 回答1: You can do that easily Use Splicer, it free and open source in C# Simplify developing applications for editing and encoding audio and video using DirectShow Example: using Splicer; using Splicer.Timeline; using Splicer.Renderer; string firstVideoFilePath = @"C:\first.avi"; string secondVideoFilePath = @"C:\second.avi"; string outputVideoPath = @"C:\output.avi"; using (ITimeline timeline = new