My project is to record Desktop as video daily,
now i get to the point of record the desktop as images in *.jpeg
i need to combine them as video, i don't know much about ffmpeg
but i have seen this article, and i wonder if i can make all this as press of a button in C#, so i can combine the images then delete them on the form load or something
EDIT:
now i got the code: ffmpeg -f image2 -i foo-%03d.jpeg -r 12 -s WxH foo.avi
but i don't know where to type that in my project!