Shaka Packager SDK
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/ad_cue_generator_flags.h"
11 #include "packager/app/crypto_flags.h"
12 #include "packager/app/hls_flags.h"
13 #include "packager/app/manifest_flags.h"
14 #include "packager/app/mpd_flags.h"
15 #include "packager/app/muxer_flags.h"
16 #include "packager/app/packager_util.h"
17 #include "packager/app/playready_key_encryption_flags.h"
18 #include "packager/app/protection_system_flags.h"
19 #include "packager/app/raw_key_encryption_flags.h"
20 #include "packager/app/stream_descriptor.h"
21 #include "packager/app/vlog_flags.h"
22 #include "packager/app/widevine_encryption_flags.h"
23 #include "packager/base/command_line.h"
24 #include "packager/base/logging.h"
25 #include "packager/base/optional.h"
26 #include "packager/base/strings/string_number_conversions.h"
27 #include "packager/base/strings/string_split.h"
28 #include "packager/base/strings/string_util.h"
29 #include "packager/base/strings/stringprintf.h"
30 #include "packager/file/file.h"
31 #include "packager/packager.h"
32 #include "packager/tools/license_notice.h"
33 
34 #if defined(OS_WIN)
35 #include <codecvt>
36 #include <functional>
37 #include <locale>
38 #endif // defined(OS_WIN)
39 
40 DEFINE_bool(dump_stream_info, false, "Dump demuxed stream info.");
41 DEFINE_bool(licenses, false, "Dump licenses.");
42 DEFINE_bool(use_fake_clock_for_muxer,
43  false,
44  "Set to true to use a fake clock for muxer. With this flag set, "
45  "creation time and modification time in outputs are set to 0. "
46  "Should only be used for testing.");
47 DEFINE_string(test_packager_version,
48  "",
49  "Packager version for testing. Should be used for testing only.");
50 
51 namespace shaka {
52 namespace {
53 
54 const char kUsage[] =
55  "%s [flags] <stream_descriptor> ...\n\n"
56  " stream_descriptor consists of comma separated field_name/value pairs:\n"
57  " field_name=value,[field_name=value,]...\n"
58  " Supported field names are as follows (names in parenthesis are alias):\n"
59  " - input (in): Required input/source media file path or network stream\n"
60  " URL.\n"
61  " - stream_selector (stream): Required field with value 'audio',\n"
62  " 'video', 'text', or stream number (zero based).\n"
63  " - output (out,init_segment): Required output file (single file) or\n"
64  " initialization file path (multiple file).\n"
65  " - segment_template (segment): Optional value which specifies the\n"
66  " naming pattern for the segment files, and that the stream should be\n"
67  " split into multiple files. Its presence should be consistent across\n"
68  " streams.\n"
69  " - bandwidth (bw): Optional value which contains a user-specified\n"
70  " maximum bit rate for the stream, in bits/sec. If specified, this\n"
71  " value is propagated to (HLS) EXT-X-STREAM-INF:BANDWIDTH or (DASH)\n"
72  " Representation@bandwidth and the $Bandwidth$ template parameter for\n"
73  " segment names. If not specified, the bandwidth value is estimated\n"
74  " from content bitrate. Note that it only affects the generated\n"
75  " manifests/playlists; it has no effect on the media content itself.\n"
76  " - language (lang): Optional value which contains a user-specified\n"
77  " language tag. If specified, this value overrides any language\n"
78  " metadata in the input stream.\n"
79  " - output_format (format): Optional value which specifies the format\n"
80  " of the output files (MP4 or WebM). If not specified, it will be\n"
81  " derived from the file extension of the output file.\n"
82  " - skip_encryption=0|1: Optional. Defaults to 0 if not specified. If\n"
83  " it is set to 1, no encryption of the stream will be made.\n"
84  " - drm_label: Optional value for custom DRM label, which defines the\n"
85  " encryption key applied to the stream. Typical values include AUDIO,\n"
86  " SD, HD, UHD1, UHD2. For raw key, it should be a label defined in\n"
87  " --keys. If not provided, the DRM label is derived from stream type\n"
88  " (video, audio), resolution, etc.\n"
89  " Note that it is case sensitive.\n"
90  " - trick_play_factor (tpf): Optional value which specifies the trick\n"
91  " play, a.k.a. trick mode, stream sampling rate among key frames.\n"
92  " If specified, the output is a trick play stream.\n"
93  " - hls_name: Used for HLS audio to set the NAME attribute for\n"
94  " EXT-X-MEDIA. Defaults to the base of the playlist name.\n"
95  " - hls_group_id: Used for HLS audio to set the GROUP-ID attribute for\n"
96  " EXT-X-MEDIA. Defaults to 'audio' if not specified.\n"
97  " - playlist_name: The HLS playlist file to create. Usually ends with\n"
98  " '.m3u8', and is relative to --hls_master_playlist_output. If\n"
99  " unspecified, defaults to something of the form 'stream_0.m3u8',\n"
100  " 'stream_1.m3u8', 'stream_2.m3u8', etc.\n"
101  " - iframe_playlist_name: The optional HLS I-Frames only playlist file\n"
102  " to create. Usually ends with '.m3u8', and is relative to\n"
103  " hls_master_playlist_output. Should only be set for video streams. If\n"
104  " unspecified, no I-Frames only playlist is created.\n"
105  " - hls_characteristics (charcs): Optional colon/semicolon separated\n"
106  " list of values for the CHARACTERISTICS attribute for EXT-X-MEDIA.\n"
107  " See CHARACTERISTICS attribute in http://bit.ly/2OOUkdB for details.\n";
108 
109 // Labels for parameters in RawKey key info.
110 const char kDrmLabelLabel[] = "label";
111 const char kKeyIdLabel[] = "key_id";
112 const char kKeyLabel[] = "key";
113 
114 enum ExitStatus {
115  kSuccess = 0,
116  kArgumentValidationFailed,
117  kPackagingFailed,
118  kInternalError,
119 };
120 
121 bool GetWidevineSigner(WidevineSigner* signer) {
122  signer->signer_name = FLAGS_signer;
123  if (!FLAGS_aes_signing_key_bytes.empty()) {
124  signer->signing_key_type = WidevineSigner::SigningKeyType::kAes;
125  signer->aes.key = FLAGS_aes_signing_key_bytes;
126  signer->aes.iv = FLAGS_aes_signing_iv_bytes;
127  } else if (!FLAGS_rsa_signing_key_path.empty()) {
128  signer->signing_key_type = WidevineSigner::SigningKeyType::kRsa;
129  if (!File::ReadFileToString(FLAGS_rsa_signing_key_path.c_str(),
130  &signer->rsa.key)) {
131  LOG(ERROR) << "Failed to read from '" << FLAGS_rsa_signing_key_path
132  << "'.";
133  return false;
134  }
135  }
136  return true;
137 }
138 
139 bool GetHlsPlaylistType(const std::string& playlist_type,
140  HlsPlaylistType* playlist_type_enum) {
141  if (base::ToUpperASCII(playlist_type) == "VOD") {
142  *playlist_type_enum = HlsPlaylistType::kVod;
143  } else if (base::ToUpperASCII(playlist_type) == "LIVE") {
144  *playlist_type_enum = HlsPlaylistType::kLive;
145  } else if (base::ToUpperASCII(playlist_type) == "EVENT") {
146  *playlist_type_enum = HlsPlaylistType::kEvent;
147  } else {
148  LOG(ERROR) << "Unrecognized playlist type " << playlist_type;
149  return false;
150  }
151  return true;
152 }
153 
154 bool GetProtectionScheme(uint32_t* protection_scheme) {
155  if (FLAGS_protection_scheme == "cenc") {
156  *protection_scheme = EncryptionParams::kProtectionSchemeCenc;
157  return true;
158  }
159  if (FLAGS_protection_scheme == "cbc1") {
160  *protection_scheme = EncryptionParams::kProtectionSchemeCbc1;
161  return true;
162  }
163  if (FLAGS_protection_scheme == "cbcs") {
164  *protection_scheme = EncryptionParams::kProtectionSchemeCbcs;
165  return true;
166  }
167  if (FLAGS_protection_scheme == "cens") {
168  *protection_scheme = EncryptionParams::kProtectionSchemeCens;
169  return true;
170  }
171  LOG(ERROR) << "Unrecognized protection_scheme " << FLAGS_protection_scheme;
172  return false;
173 }
174 
175 bool ParseKeys(const std::string& keys, RawKeyParams* raw_key) {
176  for (const std::string& key_data : base::SplitString(
177  keys, ",", base::TRIM_WHITESPACE, base::SPLIT_WANT_NONEMPTY)) {
178  base::StringPairs string_pairs;
179  base::SplitStringIntoKeyValuePairs(key_data, '=', ':', &string_pairs);
180 
181  std::map<std::string, std::string> value_map;
182  for (const auto& string_pair : string_pairs)
183  value_map[string_pair.first] = string_pair.second;
184  const std::string drm_label = value_map[kDrmLabelLabel];
185  if (raw_key->key_map.find(drm_label) != raw_key->key_map.end()) {
186  LOG(ERROR) << "Seeing duplicated DRM label '" << drm_label << "'.";
187  return false;
188  }
189  auto& key_info = raw_key->key_map[drm_label];
190  if (value_map[kKeyIdLabel].empty() ||
191  !base::HexStringToBytes(value_map[kKeyIdLabel], &key_info.key_id)) {
192  LOG(ERROR) << "Empty key id or invalid hex string for key id: "
193  << value_map[kKeyIdLabel];
194  return false;
195  }
196  if (value_map[kKeyLabel].empty() ||
197  !base::HexStringToBytes(value_map[kKeyLabel], &key_info.key)) {
198  LOG(ERROR) << "Empty key or invalid hex string for key: "
199  << value_map[kKeyLabel];
200  return false;
201  }
202  }
203  return true;
204 }
205 
206 bool GetRawKeyParams(RawKeyParams* raw_key) {
207  raw_key->iv = FLAGS_iv_bytes;
208  raw_key->pssh = FLAGS_pssh_bytes;
209  if (!FLAGS_keys.empty()) {
210  if (!ParseKeys(FLAGS_keys, raw_key)) {
211  LOG(ERROR) << "Failed to parse --keys " << FLAGS_keys;
212  return false;
213  }
214  } else {
215  // An empty StreamLabel specifies the default key info.
216  RawKeyParams::KeyInfo& key_info = raw_key->key_map[""];
217  key_info.key_id = FLAGS_key_id_bytes;
218  key_info.key = FLAGS_key_bytes;
219  }
220  return true;
221 }
222 
223 bool ParseAdCues(const std::string& ad_cues, std::vector<Cuepoint>* cuepoints) {
224  // Track if optional field is supplied consistently across all cue points.
225  size_t duration_count = 0;
226 
227  for (const std::string& ad_cue : base::SplitString(
228  ad_cues, ";", base::TRIM_WHITESPACE, base::SPLIT_WANT_NONEMPTY)) {
229  Cuepoint cuepoint;
230  auto split_ad_cue = base::SplitString(ad_cue, ",", base::TRIM_WHITESPACE,
231  base::SPLIT_WANT_NONEMPTY);
232  if (split_ad_cue.size() > 2) {
233  LOG(ERROR) << "Failed to parse --ad_cues " << ad_cues
234  << " Each ad cue must contain no more than 2 components.";
235  }
236  if (!base::StringToDouble(split_ad_cue.front(),
237  &cuepoint.start_time_in_seconds)) {
238  LOG(ERROR) << "Failed to parse --ad_cues " << ad_cues
239  << " Start time component must be of type double.";
240  return false;
241  }
242  if (split_ad_cue.size() > 1) {
243  duration_count++;
244  if (!base::StringToDouble(split_ad_cue[1],
245  &cuepoint.duration_in_seconds)) {
246  LOG(ERROR) << "Failed to parse --ad_cues " << ad_cues
247  << " Duration component must be of type double.";
248  return false;
249  }
250  }
251  cuepoints->push_back(cuepoint);
252  }
253 
254  if (duration_count > 0 && duration_count != cuepoints->size()) {
255  LOG(ERROR) << "Failed to parse --ad_cues " << ad_cues
256  << " Duration component is optional. However if it is supplied,"
257  << " it must be supplied consistently across all cuepoints.";
258  return false;
259  }
260  return true;
261 }
262 
263 bool ParseProtectionSystems(
264  const std::string& protection_systems_str,
265  std::vector<EncryptionParams::ProtectionSystem>* protection_systems) {
266  protection_systems->clear();
267 
268  std::map<std::string, EncryptionParams::ProtectionSystem> mapping = {
269  {"common", EncryptionParams::ProtectionSystem::kCommonSystem},
270  {"commonsystem", EncryptionParams::ProtectionSystem::kCommonSystem},
271  {"fairplay", EncryptionParams::ProtectionSystem::kFairPlay},
272  {"marlin", EncryptionParams::ProtectionSystem::kMarlin},
273  {"playready", EncryptionParams::ProtectionSystem::kPlayReady},
274  {"widevine", EncryptionParams::ProtectionSystem::kWidevine},
275  };
276 
277  for (const std::string& protection_system :
278  base::SplitString(base::ToLowerASCII(protection_systems_str), ",",
279  base::TRIM_WHITESPACE, base::SPLIT_WANT_NONEMPTY)) {
280  auto iter = mapping.find(protection_system);
281  if (iter == mapping.end()) {
282  LOG(ERROR) << "Seeing unrecognized protection system: "
283  << protection_system;
284  return false;
285  }
286  protection_systems->push_back(iter->second);
287  }
288  return true;
289 }
290 
291 base::Optional<PackagingParams> GetPackagingParams() {
292  PackagingParams packaging_params;
293 
294  packaging_params.temp_dir = FLAGS_temp_dir;
295 
296  AdCueGeneratorParams& ad_cue_generator_params =
297  packaging_params.ad_cue_generator_params;
298  if (!ParseAdCues(FLAGS_ad_cues, &ad_cue_generator_params.cue_points)) {
299  return base::nullopt;
300  }
301 
302  ChunkingParams& chunking_params = packaging_params.chunking_params;
303  chunking_params.segment_duration_in_seconds = FLAGS_segment_duration;
304  chunking_params.subsegment_duration_in_seconds = FLAGS_fragment_duration;
305  chunking_params.segment_sap_aligned = FLAGS_segment_sap_aligned;
306  chunking_params.subsegment_sap_aligned = FLAGS_fragment_sap_aligned;
307 
308  int num_key_providers = 0;
309  EncryptionParams& encryption_params = packaging_params.encryption_params;
310  if (FLAGS_enable_widevine_encryption) {
311  encryption_params.key_provider = KeyProvider::kWidevine;
312  ++num_key_providers;
313  }
314  if (FLAGS_enable_playready_encryption) {
315  encryption_params.key_provider = KeyProvider::kPlayReady;
316  ++num_key_providers;
317  }
318  if (FLAGS_enable_raw_key_encryption) {
319  encryption_params.key_provider = KeyProvider::kRawKey;
320  ++num_key_providers;
321  }
322  if (num_key_providers > 1) {
323  LOG(ERROR) << "Only one of --enable_widevine_encryption, "
324  "--enable_playready_encryption, "
325  "--enable_raw_key_encryption can be enabled.";
326  return base::nullopt;
327  }
328 
329  if (!ParseProtectionSystems(FLAGS_protection_systems,
330  &encryption_params.protection_systems)) {
331  return base::nullopt;
332  }
333 
334  if (encryption_params.key_provider != KeyProvider::kNone) {
335  encryption_params.clear_lead_in_seconds = FLAGS_clear_lead;
336  if (!GetProtectionScheme(&encryption_params.protection_scheme))
337  return base::nullopt;
338  encryption_params.crypto_period_duration_in_seconds =
339  FLAGS_crypto_period_duration;
340  encryption_params.vp9_subsample_encryption = FLAGS_vp9_subsample_encryption;
341  encryption_params.stream_label_func = std::bind(
342  &Packager::DefaultStreamLabelFunction, FLAGS_max_sd_pixels,
343  FLAGS_max_hd_pixels, FLAGS_max_uhd1_pixels, std::placeholders::_1);
344  }
345  switch (encryption_params.key_provider) {
346  case KeyProvider::kWidevine: {
347  WidevineEncryptionParams& widevine = encryption_params.widevine;
348  widevine.key_server_url = FLAGS_key_server_url;
349 
350  widevine.content_id = FLAGS_content_id_bytes;
351  widevine.policy = FLAGS_policy;
352  widevine.group_id = FLAGS_group_id_bytes;
353  widevine.enable_entitlement_license = FLAGS_enable_entitlement_license;
354  if (!GetWidevineSigner(&widevine.signer))
355  return base::nullopt;
356  break;
357  }
358  case KeyProvider::kPlayReady: {
359  PlayReadyEncryptionParams& playready = encryption_params.playready;
360  playready.key_server_url = FLAGS_playready_server_url;
361  playready.program_identifier = FLAGS_program_identifier;
362  playready.ca_file = FLAGS_ca_file;
363  playready.client_cert_file = FLAGS_client_cert_file;
364  playready.client_cert_private_key_file =
365  FLAGS_client_cert_private_key_file;
366  playready.client_cert_private_key_password =
367  FLAGS_client_cert_private_key_password;
368  break;
369  }
370  case KeyProvider::kRawKey: {
371  if (!GetRawKeyParams(&encryption_params.raw_key))
372  return base::nullopt;
373  break;
374  }
375  case KeyProvider::kNone:
376  break;
377  }
378 
379  num_key_providers = 0;
380  DecryptionParams& decryption_params = packaging_params.decryption_params;
381  if (FLAGS_enable_widevine_decryption) {
382  decryption_params.key_provider = KeyProvider::kWidevine;
383  ++num_key_providers;
384  }
385  if (FLAGS_enable_raw_key_decryption) {
386  decryption_params.key_provider = KeyProvider::kRawKey;
387  ++num_key_providers;
388  }
389  if (num_key_providers > 1) {
390  LOG(ERROR) << "Only one of --enable_widevine_decryption, "
391  "--enable_raw_key_decryption can be enabled.";
392  return base::nullopt;
393  }
394  switch (decryption_params.key_provider) {
395  case KeyProvider::kWidevine: {
396  WidevineDecryptionParams& widevine = decryption_params.widevine;
397  widevine.key_server_url = FLAGS_key_server_url;
398  if (!GetWidevineSigner(&widevine.signer))
399  return base::nullopt;
400  break;
401  }
402  case KeyProvider::kRawKey: {
403  if (!GetRawKeyParams(&decryption_params.raw_key))
404  return base::nullopt;
405  break;
406  }
407  case KeyProvider::kPlayReady:
408  case KeyProvider::kNone:
409  break;
410  }
411 
412  Mp4OutputParams& mp4_params = packaging_params.mp4_output_params;
413  mp4_params.generate_sidx_in_media_segments =
414  FLAGS_generate_sidx_in_media_segments;
415  mp4_params.include_pssh_in_stream = FLAGS_mp4_include_pssh_in_stream;
416 
417  packaging_params.transport_stream_timestamp_offset_ms =
418  FLAGS_transport_stream_timestamp_offset_ms;
419 
420  packaging_params.output_media_info = FLAGS_output_media_info;
421 
422  MpdParams& mpd_params = packaging_params.mpd_params;
423  mpd_params.mpd_output = FLAGS_mpd_output;
424  mpd_params.base_urls = base::SplitString(
425  FLAGS_base_urls, ",", base::TRIM_WHITESPACE, base::SPLIT_WANT_NONEMPTY);
426  mpd_params.min_buffer_time = FLAGS_min_buffer_time;
427  mpd_params.minimum_update_period = FLAGS_minimum_update_period;
428  mpd_params.suggested_presentation_delay = FLAGS_suggested_presentation_delay;
429  mpd_params.time_shift_buffer_depth = FLAGS_time_shift_buffer_depth;
430  mpd_params.preserved_segments_outside_live_window =
431  FLAGS_preserved_segments_outside_live_window;
432 
433  if (!FLAGS_utc_timings.empty()) {
434  base::StringPairs pairs;
435  if (!base::SplitStringIntoKeyValuePairs(FLAGS_utc_timings, '=', ',',
436  &pairs)) {
437  LOG(ERROR) << "Invalid --utc_timings scheme_id_uri/value pairs.";
438  return base::nullopt;
439  }
440  for (const auto& string_pair : pairs) {
441  mpd_params.utc_timings.push_back({string_pair.first, string_pair.second});
442  }
443  }
444 
445  mpd_params.default_language = FLAGS_default_language;
446  mpd_params.default_text_language = FLAGS_default_text_language;
447  mpd_params.generate_static_live_mpd = FLAGS_generate_static_mpd;
448  mpd_params.generate_dash_if_iop_compliant_mpd =
449  FLAGS_generate_dash_if_iop_compliant_mpd;
450  mpd_params.allow_approximate_segment_timeline =
451  FLAGS_allow_approximate_segment_timeline;
452 
453  HlsParams& hls_params = packaging_params.hls_params;
454  if (!GetHlsPlaylistType(FLAGS_hls_playlist_type, &hls_params.playlist_type)) {
455  return base::nullopt;
456  }
457  hls_params.master_playlist_output = FLAGS_hls_master_playlist_output;
458  hls_params.base_url = FLAGS_hls_base_url;
459  hls_params.key_uri = FLAGS_hls_key_uri;
460  hls_params.time_shift_buffer_depth = FLAGS_time_shift_buffer_depth;
461  hls_params.preserved_segments_outside_live_window =
462  FLAGS_preserved_segments_outside_live_window;
463  hls_params.default_language = FLAGS_default_language;
464  hls_params.default_text_language = FLAGS_default_text_language;
465 
466  TestParams& test_params = packaging_params.test_params;
467  test_params.dump_stream_info = FLAGS_dump_stream_info;
468  test_params.inject_fake_clock = FLAGS_use_fake_clock_for_muxer;
469  if (!FLAGS_test_packager_version.empty())
470  test_params.injected_library_version = FLAGS_test_packager_version;
471 
472  return packaging_params;
473 }
474 
475 int PackagerMain(int argc, char** argv) {
476  // Needed to enable VLOG/DVLOG through --vmodule or --v.
477  base::CommandLine::Init(argc, argv);
478 
479  // Set up logging.
480  logging::LoggingSettings log_settings;
481  log_settings.logging_dest = logging::LOG_TO_SYSTEM_DEBUG_LOG;
482  CHECK(logging::InitLogging(log_settings));
483 
484  google::SetVersionString(shaka::Packager::GetLibraryVersion());
485  google::SetUsageMessage(base::StringPrintf(kUsage, argv[0]));
486  google::ParseCommandLineFlags(&argc, &argv, true);
487  if (FLAGS_licenses) {
488  for (const char* line : kLicenseNotice)
489  std::cout << line << std::endl;
490  return kSuccess;
491  }
492  if (argc < 2) {
493  google::ShowUsageWithFlags("Usage");
494  return kSuccess;
495  }
496 
499  return kArgumentValidationFailed;
500  }
501 
502  base::Optional<PackagingParams> packaging_params = GetPackagingParams();
503  if (!packaging_params)
504  return kArgumentValidationFailed;
505 
506  std::vector<StreamDescriptor> stream_descriptors;
507  for (int i = 1; i < argc; ++i) {
508  base::Optional<StreamDescriptor> stream_descriptor =
509  ParseStreamDescriptor(argv[i]);
510  if (!stream_descriptor)
511  return kArgumentValidationFailed;
512  stream_descriptors.push_back(stream_descriptor.value());
513  }
514  Packager packager;
515  Status status =
516  packager.Initialize(packaging_params.value(), stream_descriptors);
517  if (!status.ok()) {
518  LOG(ERROR) << "Failed to initialize packager: " << status.ToString();
519  return kArgumentValidationFailed;
520  }
521  status = packager.Run();
522  if (!status.ok()) {
523  LOG(ERROR) << "Packaging Error: " << status.ToString();
524  return kPackagingFailed;
525  }
526  printf("Packaging completed successfully.\n");
527  return kSuccess;
528 }
529 
530 } // namespace
531 } // namespace shaka
532 
533 #if defined(OS_WIN)
534 // Windows wmain, which converts wide character arguments to UTF-8.
535 int wmain(int argc, wchar_t* argv[], wchar_t* envp[]) {
536  std::unique_ptr<char* [], std::function<void(char**)>> utf8_argv(
537  new char*[argc], [argc](char** utf8_args) {
538  // TODO(tinskip): This leaks, but if this code is enabled, it crashes.
539  // Figure out why. I suspect gflags does something funny with the
540  // argument array.
541  // for (int idx = 0; idx < argc; ++idx)
542  // delete[] utf8_args[idx];
543  delete[] utf8_args;
544  });
545  std::wstring_convert<std::codecvt_utf8<wchar_t>> converter;
546  for (int idx = 0; idx < argc; ++idx) {
547  std::string utf8_arg(converter.to_bytes(argv[idx]));
548  utf8_arg += '\0';
549  utf8_argv[idx] = new char[utf8_arg.size()];
550  memcpy(utf8_argv[idx], &utf8_arg[0], utf8_arg.size());
551  }
552  return shaka::PackagerMain(argc, utf8_argv.get());
553 }
554 #else
555 int main(int argc, char** argv) {
556  return shaka::PackagerMain(argc, argv);
557 }
558 #endif // defined(OS_WIN)
static std::string DefaultStreamLabelFunction(int max_sd_pixels, int max_hd_pixels, int max_uhd1_pixels, const EncryptionParams::EncryptedStreamAttributes &stream_attributes)
Definition: packager.cc:1031
HlsPlaylistType
Definition: hls_params.h:16
base::Optional< StreamDescriptor > ParseStreamDescriptor(const std::string &descriptor_string)
static bool ReadFileToString(const char *file_name, std::string *contents)
Definition: file.cc:216
bool ValidateRawKeyCryptoFlags()
bool ValidateWidevineCryptoFlags()
All the methods that are virtual are virtual for mocking.
static std::string GetLibraryVersion()
Definition: packager.cc:1027
static constexpr uint32_t kProtectionSchemeCenc
The protection scheme: "cenc", "cens", "cbc1", "cbcs".