Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# extract frames from part of a video file

Using AForge ffmpeg wrapper you can extract frames from a video using the VideoFileReader class and save it as a bitmap.

See this for the exemple: Extracting frames of a .avi file

My problem with that is that you cannot specified where to start reading the frames. It always starts from the beginning of the video file.

But what if i wanted to extract frames that are in the middle of a two hours long video file. Using that class you'd have to parse the whole first hour juste to get to those frames.

Does anyone know a way to achieve that?

like image 269
SiriusNik Avatar asked Feb 12 '15 23:02

SiriusNik


People also ask

What C is used for?

C programming language is a machine-independent programming language that is mainly used to create many types of applications and operating systems such as Windows, and other complicated programs such as the Oracle database, Git, Python interpreter, and games and is considered a programming foundation in the process of ...

What is the full name of C?

In the real sense it has no meaning or full form. It was developed by Dennis Ritchie and Ken Thompson at AT&T bell Lab. First, they used to call it as B language then later they made some improvement into it and renamed it as C and its superscript as C++ which was invented by Dr.

Is C language easy?

C is a general-purpose language that most programmers learn before moving on to more complex languages. From Unix and Windows to Tic Tac Toe and Photoshop, several of the most commonly used applications today have been built on C. It is easy to learn because: A simple syntax with only 32 keywords.

What is C language basics?

What is C? C is a general-purpose programming language created by Dennis Ritchie at the Bell Laboratories in 1972. It is a very popular language, despite being old. C is strongly associated with UNIX, as it was developed to write the UNIX operating system.


1 Answers

If you know where in the video you want to start reading, just skip the appropriate number of frames; there's no need to process any of them.

This assumes, of course, that you know the exact frame number you want to start reading from, which you can calculate by multiplying the framerate by the time at which you want to perform the extraction. In your example, if the video is two hours long and you want to extract frames from the middle...

VideoFileReader reader = new VideoFileReader();
reader.Open("file.avi");

// Jump to 1 hour into the video
int framesToSkip = reader.FrameRate * 3600;    // 1 hour = 3600 seconds
for (int i = 0; i < framesToSkip; i++)
    reader.ReadVideoFrame();

// Now the next time ReadVideoFrame() is called, we will get the frame at the 1 hour mark

This assumes that the .FrameRate property returns the value in frames per second. Unfortunately the documentation doesn't say, so I'm not sure how it handles video files with non-integral framerates (i.e. 29.97 is a common framerate.)

like image 88
Reticulated Spline Avatar answered Oct 17 '22 15:10

Reticulated Spline