Skip to content

Commit 7f1077f

Browse files
author
Clement Champetier
committed
avMeta: use eAnalyseLevelFull level
And show the progress.
1 parent d853c8c commit 7f1077f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/avMeta/avMeta.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#include <AvTranscoder/file/InputFile.hpp>
2-
#include <AvTranscoder/progress/NoDisplayProgress.hpp>
2+
#include <AvTranscoder/progress/ConsoleProgress.hpp>
33

44
#include <iostream>
55

@@ -43,8 +43,8 @@ int main(int argc, char** argv)
4343

4444
// analyse inputFile
4545
avtranscoder::InputFile input(argv[1]);
46-
avtranscoder::NoDisplayProgress p;
47-
input.analyse(p, avtranscoder::eAnalyseLevelFirstGop);
46+
avtranscoder::ConsoleProgress p;
47+
input.analyse(p, avtranscoder::eAnalyseLevelFull);
4848

4949
// display file properties
5050
if(toJson)

0 commit comments

Comments
 (0)