GetVideoThumbnailはConvertMediaを内部的に使用して、1つのフレームのみでMJPEG出力に特別な変換を実行するヘルパーメソッドです。
あなたは代わりに「GetVideoThumbnail」方法(とあなたが必要とする追加のffmpegのオプションを使用)を呼び出すの次のコードスニペットを使用することがあります。
Stream jpegOutputStream; // stream for thumbnail jpeg image output
var thumbSettings = new ConvertSettings() {
VideoFrameRate = 1, VideoFrameCount = 1, // extract exactly 1 frame
Seek = 0, // frame position in seconds
CustomOutputArgs = "" // any ffmpeg arguments that goes before output param
};
ffMpeg.ConvertMedia(pathToVideoFile, null, jpegOutputStream, "mjpeg", thumbSettings);
が、それは動作しますが、あなたに感謝します – Newyearnt