You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: app/avProcessor/avProcessor.cpp
+9-3Lines changed: 9 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -84,7 +84,7 @@ int main( int argc, char** argv )
84
84
{
85
85
std::string help;
86
86
help += "Usage\n";
87
-
help += "\tavprocessor CONFIG.TXT OUTPUT_FILE_NAME [--generate-black] [--verbose] [--help]\n";
87
+
help += "\tavprocessor CONFIG.TXT OUTPUT_FILE_NAME [--generate-black] [--verbose] [--logFile] [--help]\n";
88
88
help += "CONFIG.TXT\n";
89
89
help += "\tEach line will be one stream in the output.\n";
90
90
help += "\tPattern of each line is:\n";
@@ -94,6 +94,8 @@ int main( int argc, char** argv )
94
94
help += "\tNo profileName: will rewrap the stream\n";
95
95
help += "Command line options\n";
96
96
help += "\t--generate-black: stream which not referred to an input, will generate an output video stream with black images (by default generate audio stream with silence)\n";
97
+
help += "\t--verbose: set log level to AV_LOG_DEBUG\n";
98
+
help += "\t--logFile: put log in 'avtranscoder.log' file\n";
97
99
help += "\t--help: display this help\n";
98
100
99
101
// Preload FFmpeg context
@@ -113,14 +115,18 @@ int main( int argc, char** argv )
0 commit comments