mirror of
https://github.com/n00mkrad/flowframes.git
synced 2025-12-16 16:37:48 +01:00
Fixed broken ffmpeg frame count command
This commit is contained in:
@@ -215,7 +215,7 @@ namespace Flowframes
|
||||
|
||||
public static async Task<int> ReadFrameCountFfmpegAsync(string filePath)
|
||||
{
|
||||
string args = $" -loglevel panic -stats {filePath.Wrap()} -i {filePath.Wrap()} -map 0:v:0 -c copy -f null - ";
|
||||
string args = $" -loglevel panic -stats -i {filePath.Wrap()} -map 0:v:0 -c copy -f null - ";
|
||||
string info = await RunFfmpeg(args, LogMode.Hidden);
|
||||
try
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user