How to create a video recording function?

c#chris

New member
Joined
Dec 10, 2024
Messages
4
Programming Experience
1-3
Hello, is it possible to code a video recording module für a c# program that saves the videos in mp4 format.
This should work without the need of any additional (licensed ) dll/assembly e.g. from nuget.
 
Likely doable if you are willing to write code that does P/Invoke to the Win32 Transcode API:
 
:) Yup, that technically satisfies the OP's request for no separate DLL or assembly from Nuget. Instead just need to install FFmpeg.exe instead. :)
 
Back
Top Bottom