作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 NReco 转换视频。我像下面这样声明转换器,并向 ConvertProgress 添加一个处理程序。
Dim vid_Convert As New FFMpegConverter
AddHandler vid_Convert.ConvertProgress, Sub(sender, e) vidConvertProgress(folder,fname,fext,fverdest,fint,fcount,fhost,e)
vid_Convert.ConvertMedia(file_temp, Nothing, file_dest, "mp4", cSettings)
Dim vid_Extract As New FFMpegConverter
vid_Extract.GetVideoThumbnail(inputFile, outputFile, extractposition)
最佳答案
我假设您使用 NReco.VideoConverter nuget 包,它嵌入了 ffmpeg.exe 并在首次使用时提取它。您很可能同时调用“ConvertMedia”和“GetVideoThumbnail”,这可能会导致 ffmpeg.exe 提取错误。
此问题的解决方法可能是调用 new FFMpegConverter().ExtractFFmpeg();
在应用程序启动时(在 Program.cs 中)以保证“ConvertMedia”和“GetVideoThumbnail”调用 ffmpeg 已被提取。
关于c# - NReco 错误 : "The specified executable is not a valid application for this OS platform",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51390259/
我是一名优秀的程序员,十分优秀!