ffmpeg にユーザー名とパスワードを提供して、ftp サーバーのフォルダーにデータを書き込むことができるようにするにはどうすればよいですか? フォルダーはパスワードで保護されており、可能であればそのパスワードを削除したくありません。それで、パスワードをffmpegに渡すだけでいいですか?または他の解決策はありますか?
ビデオファイルからサムネイルを作成するffmpegプロセスの例
string thumbpath, thumbname, videofile;
videofile = "Video Source path";
thumbpath = "thumbnail path";
thumbname = thumbpath + "20120910160600.mjpeg";
string thumbargs = "-i \"" + videofile + "\" -vframes 1 -s 60*30 -ss 00:00:00 -f image2 \"" + thumbname + "\"";
Process process = new Process();
process.StartInfo.FileName = Server.MapPath("~\\ffmpeg\\bin\\ffmpeg.exe");
process.StartInfo.Arguments = thumbargs;
process.StartInfo.UseShellExecute = false;
process.StartInfo.RedirectStandardOutput = true;
process.StartInfo.RedirectStandardInput = false;
process.StartInfo.RedirectStandardError = true;
process.StartInfo.CreateNoWindow = false;
process.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
新しい学習者、私を導いてください....