1

I want to create video thumbnails on my sites by using FFMpeg wrapper like Video Converter for .NET (C#) I am saving my video files in mp4 and wmv locally in video folder.if somebody know other wrapper please let me know and how can I use this

(new NReco.VideoConverter.FFMpegConverter()).GetVideoThumbnail(tmpFile, outputJpegStream);

Regards

Zahid Nisar
  • 47
  • 1
  • 1
  • 5
  • Maybe this can help you: http://stackoverflow.com/questions/15702031/get-thumbnail-image-of-video-file-in-c-sharp – Jamie Mar 12 '14 at 11:47

1 Answers1

0

User follow code:

var ffmpeg = new FFMpegConverter(); ffmpeg.GetVideoThumbnail(path, ThumbnailPath, second);

  • Welcome to Stack Overflow! While this code may answer the question, providing additional context regarding why and/or how this code answers the question improves its long-term value. – ryanyuyu Feb 26 '16 at 22:38