Split, encode and join video parts in C#
问题 It is possible to split file into many parts.Is it possible every part encode and after that join them again? The idea is to encode one video on more computers. In .NET Thank you 回答1: You can call ffmpeg.exe from your c# code to accomplish this. There are also some libraries that are available to accomplish this. 回答2: Take a look at DirectShow .NET - it has some functionality for video capture and editing, although you still need to be familiar with general processing algorithms and methods.