We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d853c8c commit 7f1077fCopy full SHA for 7f1077f
app/avMeta/avMeta.cpp
@@ -1,5 +1,5 @@
1
#include <AvTranscoder/file/InputFile.hpp>
2
-#include <AvTranscoder/progress/NoDisplayProgress.hpp>
+#include <AvTranscoder/progress/ConsoleProgress.hpp>
3
4
#include <iostream>
5
@@ -43,8 +43,8 @@ int main(int argc, char** argv)
43
44
// analyse inputFile
45
avtranscoder::InputFile input(argv[1]);
46
- avtranscoder::NoDisplayProgress p;
47
- input.analyse(p, avtranscoder::eAnalyseLevelFirstGop);
+ avtranscoder::ConsoleProgress p;
+ input.analyse(p, avtranscoder::eAnalyseLevelFull);
48
49
// display file properties
50
if(toJson)
0 commit comments