Reputation: 49
I have a website where users upload videos. I would like a library or control set to splice two videos into one. Does anyone have such a thing, or a different strategy?
Upvotes: 3
Views: 3606
Reputation: 2042
Maybe too late for the original poster, but for other people who want to do something alike I can recommend the Splicer library : http://splicer.codeplex.com/
Upvotes: 2
Reputation: 32333
If you're working with .flv
videos I can recommend flvbinder command-line utility. The only thing it can do is to bind several .flv
videos into one. But it is very quick and free.
I used it in my last project through running it in a separate process (System.Diagnostics.Process
).
Upvotes: 3
Reputation: 40641
A command line tool like ffmpeg would probably be the way i'd go. Anything C# would likely be too slow for video editing.
Upvotes: 2