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
help += "\tavprocessor CONFIG.TXT OUTPUT_FILE_NAME [--generate-black] [--verbose] [--help]\n";
100
+
help += "CONFIG.TXT\n";
101
+
help += "\tEach line will be one stream in the output.\n";
102
+
help += "\tPattern of each line is:\n";
103
+
help += "\t[inputFile]=STREAM_ID.[subStreamId]:[profileName]\n";
104
+
help += "\tNo inputFile: will generate black image / audio silence (audio by default)\n";
105
+
help += "\tNo subStreamId: will process of channels of the stream\n";
106
+
help += "\tNo profileName: will rewrap the stream\n";
107
+
help += "Command line options\n";
108
+
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";
109
+
help += "\t--help: display this help\n";
110
+
111
+
// List command line arguments
112
+
std::vector< std::string > arguments;
113
+
for( int argument = 1; argument < argc; ++argument )
0 commit comments