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
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.
You can call ffmpeg.exe from your c# code to accomplish this. There are also some libraries that are available to accomplish this.
These two articles can probably point you in the right direction:
Stephen Toub's DVR-MS article.
Covers reading but also splitting and joining. The splitting and joining stuff can probably be applied to any DirectShow filter, not just DVR-MS files.
Managed Encoding with Windows Media Foundation
Really awesome sample put out by the WMF team. I'd recommend checking out all the other samples they've posted as well, as those cover things like dubbing etc.
Hope this helps!