28 lines
1.1 KiB
C++
28 lines
1.1 KiB
C++
// Copyright 2014 Google Inc. All rights reserved.
|
|
//
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file or at
|
|
// https://developers.google.com/open-source/licenses/bsd
|
|
//
|
|
// Defines Muxer flags.
|
|
|
|
#include "app/muxer_flags.h"
|
|
|
|
DEFINE_string(stream,
|
|
"video",
|
|
"Add the specified stream to muxer. Allowed values, 'video' - "
|
|
"the first video stream; or 'audio' - the first audio stream; or "
|
|
"zero based stream id.");
|
|
DEFINE_string(output,
|
|
"",
|
|
"Output file path. If segment_template is not specified, "
|
|
"the muxer generates this single output file with all "
|
|
"segments concatenated; Otherwise, it specifies the "
|
|
"initialization segment name.");
|
|
DEFINE_string(segment_template,
|
|
"",
|
|
"Output segment name pattern for generated segments. It "
|
|
"can furthermore be configured using a subset of "
|
|
"SegmentTemplate identifiers: $Number$, $Bandwidth$ and "
|
|
"$Time$.");
|