7 #include <gflags/gflags.h>
10 #include "packager/app/fixed_key_encryption_flags.h"
11 #include "packager/app/libcrypto_threading.h"
12 #include "packager/app/mpd_flags.h"
13 #include "packager/app/muxer_flags.h"
14 #include "packager/app/packager_util.h"
15 #include "packager/app/stream_descriptor.h"
16 #include "packager/app/vlog_flags.h"
17 #include "packager/app/widevine_encryption_flags.h"
18 #include "packager/base/at_exit.h"
19 #include "packager/base/command_line.h"
20 #include "packager/base/logging.h"
21 #include "packager/base/stl_util.h"
22 #include "packager/base/strings/string_split.h"
23 #include "packager/base/strings/stringprintf.h"
24 #include "packager/base/threading/simple_thread.h"
25 #include "packager/base/time/clock.h"
26 #include "packager/media/base/container_names.h"
27 #include "packager/media/base/demuxer.h"
28 #include "packager/media/base/encryption_modes.h"
29 #include "packager/media/base/key_source.h"
30 #include "packager/media/base/muxer_options.h"
31 #include "packager/media/base/muxer_util.h"
32 #include "packager/media/event/mpd_notify_muxer_listener.h"
33 #include "packager/media/event/vod_media_info_dump_muxer_listener.h"
34 #include "packager/media/file/file.h"
35 #include "packager/media/formats/mp4/mp4_muxer.h"
36 #include "packager/media/formats/webm/webm_muxer.h"
37 #include "packager/mpd/base/dash_iop_mpd_notifier.h"
38 #include "packager/mpd/base/media_info.pb.h"
39 #include "packager/mpd/base/mpd_builder.h"
40 #include "packager/mpd/base/simple_mpd_notifier.h"
41 #include "packager/version/version.h"
43 DEFINE_bool(use_fake_clock_for_muxer,
45 "Set to true to use a fake clock for muxer. With this flag set, "
46 "creation time and modification time in outputs are set to 0. "
47 "Should only be used for testing.");
51 "Packager driver program. Usage:\n\n"
52 "%s [flags] <stream_descriptor> ...\n"
53 "stream_descriptor consists of comma separated field_name/value pairs:\n"
54 "field_name=value,[field_name=value,]...\n"
55 "Supported field names are as follows:\n"
56 " - input (in): Required input/source media file path or network stream\n"
58 " - stream_selector (stream): Required field with value 'audio',\n"
59 " 'video', or stream number (zero based).\n"
60 " - output (out): Required output file (single file) or initialization\n"
61 " file path (multiple file).\n"
62 " - segment_template (segment): Optional value which specifies the\n"
63 " naming pattern for the segment files, and that the stream should be\n"
64 " split into multiple files. Its presence should be consistent across\n"
66 " - bandwidth (bw): Optional value which contains a user-specified\n"
67 " content bit rate for the stream, in bits/sec. If specified, this\n"
68 " value is propagated to the $Bandwidth$ template parameter for\n"
69 " segment names. If not specified, its value may be estimated.\n"
70 " - language (lang): Optional value which contains a user-specified\n"
71 " language tag. If specified, this value overrides any language\n"
72 " metadata in the input track.\n"
73 " - output_format (format): Optional value which specifies the format\n"
74 " of the output files (MP4 or WebM). If not specified, it will be\n"
75 " derived from the file extension of the output file.\n";
77 const char kMediaInfoSuffix[] =
".media_info";
81 kArgumentValidationFailed,
89 std::string DetermineTextFileFormat(
const std::string& file) {
92 LOG(ERROR) <<
"Failed to open file " << file
93 <<
" to determine file format.";
96 edash_packager::media::MediaContainerName container_name =
97 edash_packager::media::DetermineContainer(
98 reinterpret_cast<const uint8_t*>(content.data()), content.size());
99 if (container_name == edash_packager::media::CONTAINER_WEBVTT) {
101 }
else if (container_name == edash_packager::media::CONTAINER_TTML) {
108 edash_packager::media::EncryptionMode GetEncryptionMode(
109 const std::string& protection_scheme) {
110 if (protection_scheme ==
"cenc") {
111 return edash_packager::media::kEncryptionModeAesCtr;
112 }
else if (protection_scheme ==
"cbc1") {
113 return edash_packager::media::kEncryptionModeAesCbc;
115 LOG(ERROR) <<
"Protection scheme is unknown.";
116 return edash_packager::media::kEncryptionModeUnknown;
122 namespace edash_packager {
127 class FakeClock :
public base::Clock {
129 base::Time Now()
override {
return base::Time(); }
133 class RemuxJob :
public base::SimpleThread {
135 RemuxJob(scoped_ptr<Demuxer> demuxer)
136 : SimpleThread(
"RemuxJob"),
137 demuxer_(demuxer.Pass()) {}
139 ~RemuxJob()
override {
140 STLDeleteElements(&muxers_);
143 void AddMuxer(scoped_ptr<Muxer> mux) {
144 muxers_.push_back(mux.release());
147 Demuxer* demuxer() {
return demuxer_.get(); }
148 Status status() {
return status_; }
151 void Run()
override {
153 status_ = demuxer_->Run();
156 scoped_ptr<Demuxer> demuxer_;
157 std::vector<Muxer*> muxers_;
160 DISALLOW_COPY_AND_ASSIGN(RemuxJob);
163 bool StreamInfoToTextMediaInfo(
const StreamDescriptor& stream_descriptor,
164 const MuxerOptions& stream_muxer_options,
165 MediaInfo* text_media_info) {
166 const std::string& language = stream_descriptor.language;
167 std::string format = DetermineTextFileFormat(stream_descriptor.input);
168 if (format.empty()) {
169 LOG(ERROR) <<
"Failed to determine the text file format for "
170 << stream_descriptor.input;
174 if (!
File::Copy(stream_descriptor.input.c_str(),
175 stream_muxer_options.output_file_name.c_str())) {
176 LOG(ERROR) <<
"Failed to copy the input file (" << stream_descriptor.input
177 <<
") to output file (" << stream_muxer_options.output_file_name
182 text_media_info->set_media_file_name(stream_muxer_options.output_file_name);
183 text_media_info->set_container_type(MediaInfo::CONTAINER_TEXT);
185 if (stream_muxer_options.bandwidth != 0) {
186 text_media_info->set_bandwidth(stream_muxer_options.bandwidth);
191 text_media_info->set_bandwidth(256);
194 MediaInfo::TextInfo* text_info = text_media_info->mutable_text_info();
195 text_info->set_format(format);
196 if (!language.empty())
197 text_info->set_language(language);
202 scoped_ptr<Muxer> CreateOutputMuxer(
const MuxerOptions& options,
203 MediaContainerName container) {
204 if (container == CONTAINER_WEBM) {
205 return scoped_ptr<Muxer>(
new webm::WebMMuxer(options));
207 DCHECK_EQ(container, CONTAINER_MOV);
208 return scoped_ptr<Muxer>(
new mp4::MP4Muxer(options));
212 bool CreateRemuxJobs(
const StreamDescriptorList& stream_descriptors,
213 const MuxerOptions& muxer_options,
214 FakeClock* fake_clock,
215 KeySource* key_source,
216 MpdNotifier* mpd_notifier,
217 std::vector<RemuxJob*>* remux_jobs) {
220 std::string previous_input;
221 for (StreamDescriptorList::const_iterator stream_iter =
222 stream_descriptors.begin();
223 stream_iter != stream_descriptors.end();
226 MuxerOptions stream_muxer_options(muxer_options);
227 stream_muxer_options.output_file_name = stream_iter->output;
228 if (!stream_iter->segment_template.empty()) {
229 if (!ValidateSegmentTemplate(stream_iter->segment_template)) {
230 LOG(ERROR) <<
"ERROR: segment template with '"
231 << stream_iter->segment_template <<
"' is invalid.";
234 stream_muxer_options.segment_template = stream_iter->segment_template;
236 stream_muxer_options.bandwidth = stream_iter->bandwidth;
239 if (stream_iter->stream_selector ==
"text") {
240 MediaInfo text_media_info;
241 if (!StreamInfoToTextMediaInfo(*stream_iter, stream_muxer_options,
248 if (!mpd_notifier->NotifyNewContainer(text_media_info, &unused)) {
249 LOG(ERROR) <<
"Failed to process text file " << stream_iter->input;
251 mpd_notifier->Flush();
253 }
else if (FLAGS_output_media_info) {
256 stream_muxer_options.output_file_name + kMediaInfoSuffix);
259 <<
"--mpd_output or --output_media_info flags are "
260 "required for text output. Skipping manifest related output for "
261 << stream_iter->input;
266 if (stream_iter->input != previous_input) {
268 scoped_ptr<Demuxer> demuxer(
new Demuxer(stream_iter->input));
269 if (FLAGS_enable_widevine_decryption ||
270 FLAGS_enable_fixed_key_decryption) {
271 scoped_ptr<KeySource> key_source(CreateDecryptionKeySource());
274 demuxer->SetKeySource(key_source.Pass());
276 Status status = demuxer->Initialize();
278 LOG(ERROR) <<
"Demuxer failed to initialize: " << status.ToString();
281 if (FLAGS_dump_stream_info) {
282 printf(
"\nFile \"%s\":\n", stream_iter->input.c_str());
283 DumpStreamInfo(demuxer->streams());
284 if (stream_iter->output.empty())
287 remux_jobs->push_back(
new RemuxJob(demuxer.Pass()));
288 previous_input = stream_iter->input;
290 DCHECK(!remux_jobs->empty());
292 MediaContainerName output_format = stream_iter->output_format;
293 if (output_format == CONTAINER_UNKNOWN) {
295 DetermineContainerFromFileName(stream_muxer_options.output_file_name);
297 if (output_format == CONTAINER_UNKNOWN) {
298 LOG(ERROR) <<
"Unable to determine output format for file "
299 << stream_muxer_options.output_file_name;
304 scoped_ptr<Muxer> muxer(
305 CreateOutputMuxer(stream_muxer_options, output_format));
306 if (FLAGS_use_fake_clock_for_muxer) muxer->set_clock(fake_clock);
309 muxer->SetKeySource(key_source,
312 FLAGS_crypto_period_duration,
313 GetEncryptionMode(FLAGS_protection_scheme));
316 scoped_ptr<MuxerListener> muxer_listener;
317 DCHECK(!(FLAGS_output_media_info && mpd_notifier));
318 if (FLAGS_output_media_info) {
319 const std::string output_media_info_file_name =
320 stream_muxer_options.output_file_name + kMediaInfoSuffix;
321 scoped_ptr<VodMediaInfoDumpMuxerListener>
322 vod_media_info_dump_muxer_listener(
323 new VodMediaInfoDumpMuxerListener(output_media_info_file_name));
324 muxer_listener = vod_media_info_dump_muxer_listener.Pass();
327 scoped_ptr<MpdNotifyMuxerListener> mpd_notify_muxer_listener(
328 new MpdNotifyMuxerListener(mpd_notifier));
329 muxer_listener = mpd_notify_muxer_listener.Pass();
333 muxer->SetMuxerListener(muxer_listener.Pass());
335 if (!AddStreamToMuxer(remux_jobs->back()->demuxer()->streams(),
336 stream_iter->stream_selector,
337 stream_iter->language,
340 remux_jobs->back()->AddMuxer(muxer.Pass());
346 Status RunRemuxJobs(
const std::vector<RemuxJob*>& remux_jobs) {
348 for (std::vector<RemuxJob*>::const_iterator job_iter = remux_jobs.begin();
349 job_iter != remux_jobs.end();
351 (*job_iter)->Start();
359 for (std::vector<RemuxJob*>::const_iterator job_iter = remux_jobs.begin();
360 job_iter != remux_jobs.end();
362 if ((*job_iter)->HasBeenJoined()) {
363 status = (*job_iter)->status();
371 }
while (!all_joined && status.ok());
376 bool RunPackager(
const StreamDescriptorList& stream_descriptors) {
377 EncryptionMode encryption_mode = GetEncryptionMode(FLAGS_protection_scheme);
378 if (encryption_mode == kEncryptionModeUnknown)
381 if (!AssignFlagsFromProfile())
384 if (FLAGS_output_media_info && !FLAGS_mpd_output.empty()) {
385 NOTIMPLEMENTED() <<
"ERROR: --output_media_info and --mpd_output do not "
389 if (FLAGS_output_media_info && !FLAGS_single_segment) {
391 NOTIMPLEMENTED() <<
"ERROR: --output_media_info is only supported if "
392 "--single_segment is true.";
397 MuxerOptions muxer_options;
398 if (!GetMuxerOptions(&muxer_options))
401 MpdOptions mpd_options;
402 if (!GetMpdOptions(&mpd_options))
406 scoped_ptr<KeySource> encryption_key_source;
407 if (FLAGS_enable_widevine_encryption || FLAGS_enable_fixed_key_encryption) {
408 encryption_key_source = CreateEncryptionKeySource();
409 if (!encryption_key_source)
413 scoped_ptr<MpdNotifier> mpd_notifier;
414 if (!FLAGS_mpd_output.empty()) {
415 DashProfile profile =
416 FLAGS_single_segment ? kOnDemandProfile : kLiveProfile;
417 std::vector<std::string> base_urls;
418 base::SplitString(FLAGS_base_urls,
',', &base_urls);
419 if (FLAGS_generate_dash_if_iop_compliant_mpd) {
420 mpd_notifier.reset(
new DashIopMpdNotifier(profile, mpd_options, base_urls,
423 mpd_notifier.reset(
new SimpleMpdNotifier(profile, mpd_options, base_urls,
426 if (!mpd_notifier->Init()) {
427 LOG(ERROR) <<
"MpdNotifier failed to initialize.";
432 std::vector<RemuxJob*> remux_jobs;
433 STLElementDeleter<std::vector<RemuxJob*> > scoped_jobs_deleter(&remux_jobs);
434 FakeClock fake_clock;
435 if (!CreateRemuxJobs(stream_descriptors, muxer_options, &fake_clock,
436 encryption_key_source.get(), mpd_notifier.get(),
441 Status status = RunRemuxJobs(remux_jobs);
443 LOG(ERROR) <<
"Packaging Error: " << status.ToString();
447 printf(
"Packaging completed successfully.\n");
451 int PackagerMain(
int argc,
char** argv) {
452 base::AtExitManager exit;
454 base::CommandLine::Init(argc, argv);
455 CHECK(logging::InitLogging(logging::LoggingSettings()));
457 google::SetUsageMessage(base::StringPrintf(kUsage, argv[0]));
458 google::ParseCommandLineFlags(&argc, &argv,
true);
460 std::string version_string =
461 base::StringPrintf(
"edash-packager version %s", kPackagerVersion);
462 google::ShowUsageWithFlags(version_string.c_str());
467 return kArgumentValidationFailed;
472 StreamDescriptorList stream_descriptors;
473 for (
int i = 1; i < argc; ++i) {
474 if (!InsertStreamDescriptor(argv[i], &stream_descriptors))
475 return kArgumentValidationFailed;
477 return RunPackager(stream_descriptors) ? kSuccess : kPackagingFailed;
483 int main(
int argc,
char** argv) {
484 return edash_packager::media::PackagerMain(argc, argv);
bool ValidateFixedCryptoFlags()
bool ValidateWidevineCryptoFlags()