DASH Media Packaging SDK
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator
packager_main.cc
1 // Copyright 2014 Google Inc. All rights reserved.
2 //
3 // Use of this source code is governed by a BSD-style
4 // license that can be found in the LICENSE file or at
5 // https://developers.google.com/open-source/licenses/bsd
6 
7 #include <gflags/gflags.h>
8 #include <iostream>
9 
10 #include "packager/app/fixed_key_encryption_flags.h"
11 #include "packager/app/hls_flags.h"
12 #include "packager/app/libcrypto_threading.h"
13 #include "packager/app/mpd_flags.h"
14 #include "packager/app/muxer_flags.h"
15 #include "packager/app/packager_util.h"
16 #include "packager/app/playready_key_encryption_flags.h"
17 #include "packager/app/stream_descriptor.h"
18 #include "packager/app/vlog_flags.h"
19 #include "packager/app/widevine_encryption_flags.h"
20 #include "packager/base/at_exit.h"
21 #include "packager/base/command_line.h"
22 #include "packager/base/files/file_path.h"
23 #include "packager/base/logging.h"
24 #include "packager/base/path_service.h"
25 #include "packager/base/strings/string_split.h"
26 #include "packager/base/strings/stringprintf.h"
27 #include "packager/base/threading/simple_thread.h"
28 #include "packager/base/time/clock.h"
29 #include "packager/hls/base/hls_notifier.h"
30 #include "packager/hls/base/simple_hls_notifier.h"
31 #include "packager/media/base/container_names.h"
32 #include "packager/media/base/demuxer.h"
33 #include "packager/media/base/fourccs.h"
34 #include "packager/media/base/key_source.h"
35 #include "packager/media/base/muxer_options.h"
36 #include "packager/media/base/muxer_util.h"
37 #include "packager/media/event/hls_notify_muxer_listener.h"
38 #include "packager/media/event/mpd_notify_muxer_listener.h"
39 #include "packager/media/event/vod_media_info_dump_muxer_listener.h"
40 #include "packager/media/file/file.h"
41 #include "packager/media/formats/mp2t/ts_muxer.h"
42 #include "packager/media/formats/mp4/mp4_muxer.h"
43 #include "packager/media/formats/webm/webm_muxer.h"
44 #include "packager/mpd/base/dash_iop_mpd_notifier.h"
45 #include "packager/mpd/base/media_info.pb.h"
46 #include "packager/mpd/base/mpd_builder.h"
47 #include "packager/mpd/base/simple_mpd_notifier.h"
48 #include "packager/version/version.h"
49 
50 #if defined(OS_WIN)
51 #include <codecvt>
52 #include <functional>
53 #include <locale>
54 #endif // defined(OS_WIN)
55 
56 DEFINE_bool(use_fake_clock_for_muxer,
57  false,
58  "Set to true to use a fake clock for muxer. With this flag set, "
59  "creation time and modification time in outputs are set to 0. "
60  "Should only be used for testing.");
61 DEFINE_bool(override_version,
62  false,
63  "Override packager version in the generated outputs with "
64  "--test_version if it is set to true. Should be used for "
65  "testing only.");
66 DEFINE_string(test_version,
67  "",
68  "Packager version for testing. Ignored if --override_version is "
69  "false. Should be used for testing only.");
70 
71 namespace shaka {
72 namespace media {
73 namespace {
74 
75 const char kUsage[] =
76  "%s [flags] <stream_descriptor> ...\n\n"
77  " stream_descriptor consists of comma separated field_name/value pairs:\n"
78  " field_name=value,[field_name=value,]...\n"
79  " Supported field names are as follows:\n"
80  " - input (in): Required input/source media file path or network stream\n"
81  " URL.\n"
82  " - stream_selector (stream): Required field with value 'audio',\n"
83  " 'video', or stream number (zero based).\n"
84  " - output (out): Required output file (single file) or initialization\n"
85  " file path (multiple file).\n"
86  " - segment_template (segment): Optional value which specifies the\n"
87  " naming pattern for the segment files, and that the stream should be\n"
88  " split into multiple files. Its presence should be consistent across\n"
89  " streams.\n"
90  " - bandwidth (bw): Optional value which contains a user-specified\n"
91  " content bit rate for the stream, in bits/sec. If specified, this\n"
92  " value is propagated to the $Bandwidth$ template parameter for\n"
93  " segment names. If not specified, its value may be estimated.\n"
94  " - language (lang): Optional value which contains a user-specified\n"
95  " language tag. If specified, this value overrides any language\n"
96  " metadata in the input track.\n"
97  " - output_format (format): Optional value which specifies the format\n"
98  " of the output files (MP4 or WebM). If not specified, it will be\n"
99  " derived from the file extension of the output file.\n"
100  " - hls_name: Required for audio when outputting HLS.\n"
101  " name of the output stream. This is not (necessarily) the same as\n"
102  " output. This is used as the NAME attribute for EXT-X-MEDIA\n"
103  " - hls_group_id: Required for audio when outputting HLS.\n"
104  " The group ID for the output stream. For HLS this is used as the\n"
105  " GROUP-ID attribute for EXT-X-MEDIA.\n"
106  " - playlist_name: Required for HLS output.\n"
107  " Name of the playlist for the stream. Usually ends with '.m3u8'.\n";
108 
109 const char kMediaInfoSuffix[] = ".media_info";
110 
111 enum ExitStatus {
112  kSuccess = 0,
113  kArgumentValidationFailed,
114  kPackagingFailed,
115  kInternalError,
116 };
117 
118 // TODO(rkuroiwa): Write TTML and WebVTT parser (demuxing) for a better check
119 // and for supporting live/segmenting (muxing). With a demuxer and a muxer,
120 // CreateRemuxJobs() shouldn't treat text as a special case.
121 std::string DetermineTextFileFormat(const std::string& file) {
122  std::string content;
123  if (!File::ReadFileToString(file.c_str(), &content)) {
124  LOG(ERROR) << "Failed to open file " << file
125  << " to determine file format.";
126  return "";
127  }
128  MediaContainerName container_name = DetermineContainer(
129  reinterpret_cast<const uint8_t*>(content.data()), content.size());
130  if (container_name == CONTAINER_WEBVTT) {
131  return "vtt";
132  } else if (container_name == CONTAINER_TTML) {
133  return "ttml";
134  }
135 
136  return "";
137 }
138 
139 FourCC GetProtectionScheme(const std::string& protection_scheme) {
140  if (protection_scheme == "cenc") {
141  return FOURCC_cenc;
142  } else if (protection_scheme == "cens") {
143  return FOURCC_cens;
144  } else if (protection_scheme == "cbc1") {
145  return FOURCC_cbc1;
146  } else if (protection_scheme == "cbcs") {
147  return FOURCC_cbcs;
148  } else {
149  LOG(ERROR) << "Unknown protection scheme: " << protection_scheme;
150  return FOURCC_NULL;
151  }
152 }
153 
154 } // namespace
155 
156 // A fake clock that always return time 0 (epoch). Should only be used for
157 // testing.
158 class FakeClock : public base::Clock {
159  public:
160  base::Time Now() override { return base::Time(); }
161 };
162 
163 // Demux, Mux(es) and worker thread used to remux a source file/stream.
164 class RemuxJob : public base::SimpleThread {
165  public:
166  RemuxJob(std::unique_ptr<Demuxer> demuxer)
167  : SimpleThread("RemuxJob"), demuxer_(std::move(demuxer)) {}
168 
169  ~RemuxJob() override {}
170 
171  void AddMuxer(std::unique_ptr<Muxer> mux) {
172  muxers_.push_back(std::move(mux));
173  }
174 
175  Demuxer* demuxer() { return demuxer_.get(); }
176  Status status() { return status_; }
177 
178  private:
179  void Run() override {
180  DCHECK(demuxer_);
181  status_ = demuxer_->Run();
182  }
183 
184  std::unique_ptr<Demuxer> demuxer_;
185  std::vector<std::unique_ptr<Muxer>> muxers_;
186  Status status_;
187 
188  DISALLOW_COPY_AND_ASSIGN(RemuxJob);
189 };
190 
191 bool StreamInfoToTextMediaInfo(const StreamDescriptor& stream_descriptor,
192  const MuxerOptions& stream_muxer_options,
193  MediaInfo* text_media_info) {
194  const std::string& language = stream_descriptor.language;
195  std::string format = DetermineTextFileFormat(stream_descriptor.input);
196  if (format.empty()) {
197  LOG(ERROR) << "Failed to determine the text file format for "
198  << stream_descriptor.input;
199  return false;
200  }
201 
202  if (!File::Copy(stream_descriptor.input.c_str(),
203  stream_muxer_options.output_file_name.c_str())) {
204  LOG(ERROR) << "Failed to copy the input file (" << stream_descriptor.input
205  << ") to output file (" << stream_muxer_options.output_file_name
206  << ").";
207  return false;
208  }
209 
210  text_media_info->set_media_file_name(stream_muxer_options.output_file_name);
211  text_media_info->set_container_type(MediaInfo::CONTAINER_TEXT);
212 
213  if (stream_muxer_options.bandwidth != 0) {
214  text_media_info->set_bandwidth(stream_muxer_options.bandwidth);
215  } else {
216  // Text files are usually small and since the input is one file; there's no
217  // way for the player to do ranged requests. So set this value to something
218  // reasonable.
219  text_media_info->set_bandwidth(256);
220  }
221 
222  MediaInfo::TextInfo* text_info = text_media_info->mutable_text_info();
223  text_info->set_format(format);
224  if (!language.empty())
225  text_info->set_language(language);
226 
227  return true;
228 }
229 
230 std::unique_ptr<Muxer> CreateOutputMuxer(const MuxerOptions& options,
231  MediaContainerName container) {
232  if (container == CONTAINER_WEBM) {
233  return std::unique_ptr<Muxer>(new webm::WebMMuxer(options));
234  } else if (container == CONTAINER_MPEG2TS) {
235  return std::unique_ptr<Muxer>(new mp2t::TsMuxer(options));
236  } else {
237  DCHECK_EQ(container, CONTAINER_MOV);
238  return std::unique_ptr<Muxer>(new mp4::MP4Muxer(options));
239  }
240 }
241 
242 bool CreateRemuxJobs(const StreamDescriptorList& stream_descriptors,
243  const MuxerOptions& muxer_options,
244  FakeClock* fake_clock,
245  KeySource* key_source,
246  MpdNotifier* mpd_notifier,
247  hls::HlsNotifier* hls_notifier,
248  std::vector<std::unique_ptr<RemuxJob>>* remux_jobs) {
249  // No notifiers OR (mpd_notifier XOR hls_notifier); which is NAND.
250  DCHECK(!(mpd_notifier && hls_notifier));
251  DCHECK(remux_jobs);
252 
253  std::string previous_input;
254  int stream_number = 0;
255  for (StreamDescriptorList::const_iterator
256  stream_iter = stream_descriptors.begin();
257  stream_iter != stream_descriptors.end();
258  ++stream_iter, ++stream_number) {
259  // Process stream descriptor.
260  MuxerOptions stream_muxer_options(muxer_options);
261  stream_muxer_options.output_file_name = stream_iter->output;
262  if (!stream_iter->segment_template.empty()) {
263  if (!ValidateSegmentTemplate(stream_iter->segment_template)) {
264  LOG(ERROR) << "ERROR: segment template with '"
265  << stream_iter->segment_template << "' is invalid.";
266  return false;
267  }
268  stream_muxer_options.segment_template = stream_iter->segment_template;
269  }
270  stream_muxer_options.bandwidth = stream_iter->bandwidth;
271 
272  // Handle text input.
273  if (stream_iter->stream_selector == "text") {
274  MediaInfo text_media_info;
275  if (!StreamInfoToTextMediaInfo(*stream_iter, stream_muxer_options,
276  &text_media_info)) {
277  return false;
278  }
279 
280  if (mpd_notifier) {
281  uint32_t unused;
282  if (!mpd_notifier->NotifyNewContainer(text_media_info, &unused)) {
283  LOG(ERROR) << "Failed to process text file " << stream_iter->input;
284  } else {
285  mpd_notifier->Flush();
286  }
287  } else if (FLAGS_output_media_info) {
289  text_media_info,
290  stream_muxer_options.output_file_name + kMediaInfoSuffix);
291  } else {
292  NOTIMPLEMENTED()
293  << "--mpd_output or --output_media_info flags are "
294  "required for text output. Skipping manifest related output for "
295  << stream_iter->input;
296  }
297  continue;
298  }
299 
300  if (stream_iter->input != previous_input) {
301  // New remux job needed. Create demux and job thread.
302  std::unique_ptr<Demuxer> demuxer(new Demuxer(stream_iter->input));
303  if (FLAGS_enable_widevine_decryption ||
304  FLAGS_enable_fixed_key_decryption) {
305  std::unique_ptr<KeySource> key_source(CreateDecryptionKeySource());
306  if (!key_source)
307  return false;
308  demuxer->SetKeySource(std::move(key_source));
309  }
310  Status status = demuxer->Initialize();
311  if (!status.ok()) {
312  LOG(ERROR) << "Demuxer failed to initialize: " << status.ToString();
313  return false;
314  }
315  if (FLAGS_dump_stream_info) {
316  printf("\nFile \"%s\":\n", stream_iter->input.c_str());
317  DumpStreamInfo(demuxer->streams());
318  if (stream_iter->output.empty())
319  continue; // just need stream info.
320  }
321  remux_jobs->emplace_back(new RemuxJob(std::move(demuxer)));
322  previous_input = stream_iter->input;
323  }
324  DCHECK(!remux_jobs->empty());
325 
326  std::unique_ptr<Muxer> muxer(
327  CreateOutputMuxer(stream_muxer_options, stream_iter->output_format));
328  if (FLAGS_use_fake_clock_for_muxer) muxer->set_clock(fake_clock);
329 
330  if (key_source) {
331  muxer->SetKeySource(key_source,
332  FLAGS_max_sd_pixels,
333  FLAGS_max_hd_pixels,
334  FLAGS_max_uhd1_pixels,
335  FLAGS_clear_lead,
336  FLAGS_crypto_period_duration,
337  GetProtectionScheme(FLAGS_protection_scheme));
338  }
339 
340  std::unique_ptr<MuxerListener> muxer_listener;
341  DCHECK(!(FLAGS_output_media_info && mpd_notifier));
342  if (FLAGS_output_media_info) {
343  const std::string output_media_info_file_name =
344  stream_muxer_options.output_file_name + kMediaInfoSuffix;
345  std::unique_ptr<VodMediaInfoDumpMuxerListener>
346  vod_media_info_dump_muxer_listener(
347  new VodMediaInfoDumpMuxerListener(output_media_info_file_name));
348  muxer_listener = std::move(vod_media_info_dump_muxer_listener);
349  }
350  if (mpd_notifier) {
351  std::unique_ptr<MpdNotifyMuxerListener> mpd_notify_muxer_listener(
352  new MpdNotifyMuxerListener(mpd_notifier));
353  muxer_listener = std::move(mpd_notify_muxer_listener);
354  }
355 
356  if (hls_notifier) {
357  // TODO(rkuroiwa): Do some smart stuff to group the audios, e.g. detect
358  // languages.
359  std::string group_id = stream_iter->hls_group_id;
360  std::string name = stream_iter->hls_name;
361  std::string hls_playlist_name = stream_iter->hls_playlist_name;
362  if (group_id.empty())
363  group_id = "audio";
364  if (name.empty())
365  name = base::StringPrintf("stream_%d", stream_number);
366  if (hls_playlist_name.empty())
367  hls_playlist_name = base::StringPrintf("stream_%d.m3u8", stream_number);
368 
369  muxer_listener.reset(new HlsNotifyMuxerListener(hls_playlist_name, name,
370  group_id, hls_notifier));
371  }
372 
373  if (muxer_listener)
374  muxer->SetMuxerListener(std::move(muxer_listener));
375 
376  if (!AddStreamToMuxer(remux_jobs->back()->demuxer()->streams(),
377  stream_iter->stream_selector,
378  stream_iter->language,
379  muxer.get())) {
380  return false;
381  }
382  remux_jobs->back()->AddMuxer(std::move(muxer));
383  }
384 
385  return true;
386 }
387 
388 Status RunRemuxJobs(const std::vector<std::unique_ptr<RemuxJob>>& remux_jobs) {
389  // Start the job threads.
390  for (const std::unique_ptr<RemuxJob>& job : remux_jobs)
391  job->Start();
392 
393  // Wait for all jobs to complete or an error occurs.
394  Status status;
395  bool all_joined;
396  do {
397  all_joined = true;
398  for (const std::unique_ptr<RemuxJob>& job : remux_jobs) {
399  if (job->HasBeenJoined()) {
400  status = job->status();
401  if (!status.ok())
402  break;
403  } else {
404  all_joined = false;
405  job->Join();
406  }
407  }
408  } while (!all_joined && status.ok());
409 
410  return status;
411 }
412 
413 bool RunPackager(const StreamDescriptorList& stream_descriptors) {
414  const FourCC protection_scheme = GetProtectionScheme(FLAGS_protection_scheme);
415  if (protection_scheme == FOURCC_NULL)
416  return false;
417 
418  if (FLAGS_output_media_info && !FLAGS_mpd_output.empty()) {
419  NOTIMPLEMENTED() << "ERROR: --output_media_info and --mpd_output do not "
420  "work together.";
421  return false;
422  }
423 
424  // Since there isn't a muxer listener that can output both MPD and HLS,
425  // disallow specifying both MPD and HLS flags.
426  if (!FLAGS_mpd_output.empty() && !FLAGS_hls_master_playlist_output.empty()) {
427  LOG(ERROR) << "Cannot output both MPD and HLS.";
428  return false;
429  }
430 
431  // Get basic muxer options.
432  MuxerOptions muxer_options;
433  if (!GetMuxerOptions(&muxer_options))
434  return false;
435 
436  DCHECK(!stream_descriptors.empty());
437  // On demand profile generates single file segment while live profile
438  // generates multiple segments specified using segment template.
439  const bool on_demand_dash_profile =
440  stream_descriptors.begin()->segment_template.empty();
441  for (const auto& stream_descriptor : stream_descriptors) {
442  if (on_demand_dash_profile != stream_descriptor.segment_template.empty()) {
443  LOG(ERROR) << "Inconsistent stream descriptor specification: "
444  "segment_template should be specified for none or all "
445  "stream descriptors.";
446  return false;
447  }
448  }
449  if (FLAGS_output_media_info && !on_demand_dash_profile) {
450  // TODO(rkuroiwa, kqyang): Support partial media info dump for live.
451  NOTIMPLEMENTED() << "ERROR: --output_media_info is only supported for "
452  "on-demand profile (not using segment_template).";
453  return false;
454  }
455 
456  MpdOptions mpd_options;
457  if (!GetMpdOptions(on_demand_dash_profile, &mpd_options))
458  return false;
459 
460  // Create encryption key source if needed.
461  std::unique_ptr<KeySource> encryption_key_source;
462  if (FLAGS_enable_widevine_encryption || FLAGS_enable_fixed_key_encryption ||
463  FLAGS_enable_playready_encryption) {
464  encryption_key_source = CreateEncryptionKeySource();
465  if (!encryption_key_source)
466  return false;
467  }
468 
469  std::unique_ptr<MpdNotifier> mpd_notifier;
470  if (!FLAGS_mpd_output.empty()) {
471  std::vector<std::string> base_urls = base::SplitString(
472  FLAGS_base_urls, ",", base::KEEP_WHITESPACE, base::SPLIT_WANT_NONEMPTY);
473  if (FLAGS_generate_dash_if_iop_compliant_mpd) {
474  mpd_notifier.reset(
475  new DashIopMpdNotifier(mpd_options, base_urls, FLAGS_mpd_output));
476  } else {
477  mpd_notifier.reset(
478  new SimpleMpdNotifier(mpd_options, base_urls, FLAGS_mpd_output));
479  }
480  if (!mpd_notifier->Init()) {
481  LOG(ERROR) << "MpdNotifier failed to initialize.";
482  return false;
483  }
484  }
485 
486  std::unique_ptr<hls::HlsNotifier> hls_notifier;
487  if (!FLAGS_hls_master_playlist_output.empty()) {
488  base::FilePath master_playlist_path(
489  base::FilePath::FromUTF8Unsafe(FLAGS_hls_master_playlist_output));
490  base::FilePath master_playlist_name = master_playlist_path.BaseName();
491 
492  hls_notifier.reset(new hls::SimpleHlsNotifier(
493  hls::HlsNotifier::HlsProfile::kOnDemandProfile, FLAGS_hls_base_url,
494  master_playlist_path.DirName().AsEndingWithSeparator().AsUTF8Unsafe(),
495  master_playlist_name.AsUTF8Unsafe()));
496  }
497 
498  std::vector<std::unique_ptr<RemuxJob>> remux_jobs;
499  FakeClock fake_clock;
500  if (!CreateRemuxJobs(stream_descriptors, muxer_options, &fake_clock,
501  encryption_key_source.get(), mpd_notifier.get(),
502  hls_notifier.get(), &remux_jobs)) {
503  return false;
504  }
505 
506  Status status = RunRemuxJobs(remux_jobs);
507  if (!status.ok()) {
508  LOG(ERROR) << "Packaging Error: " << status.ToString();
509  return false;
510  }
511 
512  if (hls_notifier) {
513  if (!hls_notifier->Flush())
514  return false;
515  }
516  if (mpd_notifier) {
517  if (!mpd_notifier->Flush())
518  return false;
519  }
520 
521  printf("Packaging completed successfully.\n");
522  return true;
523 }
524 
525 int PackagerMain(int argc, char** argv) {
526  base::AtExitManager exit;
527  // Needed to enable VLOG/DVLOG through --vmodule or --v.
528  base::CommandLine::Init(argc, argv);
529 
530  // Set up logging.
531  logging::LoggingSettings log_settings;
532  log_settings.logging_dest = logging::LOG_TO_SYSTEM_DEBUG_LOG;
533  CHECK(logging::InitLogging(log_settings));
534 
535  google::SetVersionString(GetPackagerVersion());
536  google::SetUsageMessage(base::StringPrintf(kUsage, argv[0]));
537  google::ParseCommandLineFlags(&argc, &argv, true);
538  if (argc < 2) {
539  google::ShowUsageWithFlags("Usage");
540  return kSuccess;
541  }
542 
545  return kArgumentValidationFailed;
546  }
547 
548  if (FLAGS_override_version)
549  SetPackagerVersionForTesting(FLAGS_test_version);
550 
551  LibcryptoThreading libcrypto_threading;
552  // TODO(tinskip): Make InsertStreamDescriptor a member of
553  // StreamDescriptorList.
554  StreamDescriptorList stream_descriptors;
555  for (int i = 1; i < argc; ++i) {
556  if (!InsertStreamDescriptor(argv[i], &stream_descriptors))
557  return kArgumentValidationFailed;
558  }
559  return RunPackager(stream_descriptors) ? kSuccess : kPackagingFailed;
560 }
561 
562 } // namespace media
563 } // namespace shaka
564 
565 #if defined(OS_WIN)
566 // Windows wmain, which converts wide character arguments to UTF-8.
567 int wmain(int argc, wchar_t* argv[], wchar_t* envp[]) {
568  std::unique_ptr<char* [], std::function<void(char**)>> utf8_argv(
569  new char*[argc], [argc](char** utf8_args) {
570  // TODO(tinskip): This leaks, but if this code is enabled, it crashes.
571  // Figure out why. I suspect gflags does something funny with the
572  // argument array.
573  // for (int idx = 0; idx < argc; ++idx)
574  // delete[] utf8_args[idx];
575  delete[] utf8_args;
576  });
577  std::wstring_convert<std::codecvt_utf8<wchar_t>> converter;
578  for (int idx = 0; idx < argc; ++idx) {
579  std::string utf8_arg(converter.to_bytes(argv[idx]));
580  utf8_arg += '\0';
581  utf8_argv[idx] = new char[utf8_arg.size()];
582  memcpy(utf8_argv[idx], &utf8_arg[0], utf8_arg.size());
583  }
584  return shaka::media::PackagerMain(argc, utf8_argv.get());
585 }
586 #else
587 int main(int argc, char** argv) {
588  return shaka::media::PackagerMain(argc, argv);
589 }
590 #endif // defined(OS_WIN)
static bool Copy(const char *from_file_name, const char *to_file_name)
Definition: file.cc:203
bool ValidateWidevineCryptoFlags()
static bool WriteMediaInfoToFile(const MediaInfo &media_info, const std::string &output_file_path)
static bool ReadFileToString(const char *file_name, std::string *contents)
Definition: file.cc:185
bool ValidateFixedCryptoFlags()