问题描述
- ffmpeg制作Gif动画遇到的问题 .net
-
.net将视频转成Gif动画
ProcessStartInfo startInfo = new ProcessStartInfo("f:/ffmpeg.exe");
startInfo.WindowStyle = ProcessWindowStyle.Normal;
startInfo.Arguments = "-i F:/001.flv -vframes 30 -y -f gif f:/12333.gif";
Process.Start(startInfo);
生产的gif文件是0字节。
时间: 2024-11-07 10:12:46