使用 ffmpeg/ffprobe 获取视频长度无效
Getting the length of video using ffmpeg/ffprobe is not working
我正在努力使用 FFMPEG 获取视频的 length/duration。下面是我从 Google 获得的代码,但是当我 运行 方法时它 returns 空字符串。做了我能做的任何调整,但没有成功。谁能指导我这里出了什么问题?
private static void GetVideoDuration()
{
string basePath = Directory.GetCurrentDirectory() + Path.DirectorySeparatorChar;
string filePath = basePath + @"1.mp4";
string cmd = string.Format("-v error -select_streams v:0 -show_entries stream=duration -of default=noprint_wrappers=1:nokey=1 {0}", filePath);
Process proc = new Process();
proc.StartInfo.FileName = Path.Combine(basePath, @"ffprobe.exe");
proc.StartInfo.Arguments = cmd;
proc.StartInfo.RedirectStandardError = true;
proc.StartInfo.UseShellExecute = false;
if (!proc.Start())
{
Console.WriteLine("Error starting");
return;
}
StreamReader reader = proc.StandardError;
string line;
while ((line = reader.ReadToEnd()) != null)
{
Console.WriteLine(line);
}
proc.Close();
}
谢谢大家,我得到答案了
似乎 ffprobe 没有 return 使用
的输出
proc.StandardError;
但使用
proc.StandardOutput;
以上语句适用于 ffmpeg,但不适用于 ffprobe,下面的语句适用于 ffprobe。
这是工作示例,以备不时之需。
private static void GetVideoDuration()
{
string basePath = Directory.GetCurrentDirectory() + Path.DirectorySeparatorChar;
string filePath = basePath + @"1.mp4";
string cmd = string.Format("-v error -select_streams v:0 -show_entries stream=duration -sexagesimal -of default=noprint_wrappers=1:nokey=1 {0}", filePath);
Process proc = new Process();
proc.StartInfo.FileName = Path.Combine(basePath, @"ffprobe.exe");
proc.StartInfo.Arguments = cmd;
proc.StartInfo.CreateNoWindow = true;
proc.StartInfo.RedirectStandardOutput = true;
proc.StartInfo.RedirectStandardError = true;
proc.StartInfo.UseShellExecute = false;
proc.StartInfo.UseShellExecute = false;
if (!proc.Start())
{
Console.WriteLine("Error starting");
return;
}
string duration = proc.StandardOutput.ReadToEnd().Replace("\r\n", "");
// Remove the milliseconds
duration = duration.Substring(0, duration.LastIndexOf("."));
proc.WaitForExit();
proc.Close();
}
以上方法将 return 你的持续时间 hh:mm:ss.fff tt 格式,意味着包括毫秒,但如果你想要以秒为单位的持续时间,那么从命令中删除 -sexagesimal.
我正在努力使用 FFMPEG 获取视频的 length/duration。下面是我从 Google 获得的代码,但是当我 运行 方法时它 returns 空字符串。做了我能做的任何调整,但没有成功。谁能指导我这里出了什么问题?
private static void GetVideoDuration()
{
string basePath = Directory.GetCurrentDirectory() + Path.DirectorySeparatorChar;
string filePath = basePath + @"1.mp4";
string cmd = string.Format("-v error -select_streams v:0 -show_entries stream=duration -of default=noprint_wrappers=1:nokey=1 {0}", filePath);
Process proc = new Process();
proc.StartInfo.FileName = Path.Combine(basePath, @"ffprobe.exe");
proc.StartInfo.Arguments = cmd;
proc.StartInfo.RedirectStandardError = true;
proc.StartInfo.UseShellExecute = false;
if (!proc.Start())
{
Console.WriteLine("Error starting");
return;
}
StreamReader reader = proc.StandardError;
string line;
while ((line = reader.ReadToEnd()) != null)
{
Console.WriteLine(line);
}
proc.Close();
}
谢谢大家,我得到答案了
似乎 ffprobe 没有 return 使用
的输出proc.StandardError;
但使用
proc.StandardOutput;
以上语句适用于 ffmpeg,但不适用于 ffprobe,下面的语句适用于 ffprobe。 这是工作示例,以备不时之需。
private static void GetVideoDuration()
{
string basePath = Directory.GetCurrentDirectory() + Path.DirectorySeparatorChar;
string filePath = basePath + @"1.mp4";
string cmd = string.Format("-v error -select_streams v:0 -show_entries stream=duration -sexagesimal -of default=noprint_wrappers=1:nokey=1 {0}", filePath);
Process proc = new Process();
proc.StartInfo.FileName = Path.Combine(basePath, @"ffprobe.exe");
proc.StartInfo.Arguments = cmd;
proc.StartInfo.CreateNoWindow = true;
proc.StartInfo.RedirectStandardOutput = true;
proc.StartInfo.RedirectStandardError = true;
proc.StartInfo.UseShellExecute = false;
proc.StartInfo.UseShellExecute = false;
if (!proc.Start())
{
Console.WriteLine("Error starting");
return;
}
string duration = proc.StandardOutput.ReadToEnd().Replace("\r\n", "");
// Remove the milliseconds
duration = duration.Substring(0, duration.LastIndexOf("."));
proc.WaitForExit();
proc.Close();
}
以上方法将 return 你的持续时间 hh:mm:ss.fff tt 格式,意味着包括毫秒,但如果你想要以秒为单位的持续时间,那么从命令中删除 -sexagesimal.