In the description of Media Processor, it says:
Quote:Media Processorâ„¢ can grab the necessary frame of a video file
The way that I read this, is that it is possible to create thumbnails of a specific frame of a video file? Am I wrong about this? If not, how do I do it. The code that I use at the moment to get the first non black frame is:
Code:' Create a thumbnail for the video
objMediaProcessor.LoadFromFile Server.MapPath(file_arr(i))
objMediaProcessor.SmoothFactor = 50
objMediaProcessor.OptimizationOn = True
objMediaProcessor.Quality = 100
objMediaProcessor.SaveToFileAsJpeg(Server.MapPath(file_arr(i)) & ".jpeg") ' Save to file
And if this is not a feature in the current version, then it would be a great feature in comming releases.