DASH Media Packaging SDK
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator
packager_util.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 "packager/app/packager_util.h"
8 
9 #include <gflags/gflags.h>
10 #include <iostream>
11 
12 #include "packager/app/fixed_key_encryption_flags.h"
13 #include "packager/app/mpd_flags.h"
14 #include "packager/app/muxer_flags.h"
15 #include "packager/app/widevine_encryption_flags.h"
16 #include "packager/base/logging.h"
17 #include "packager/base/strings/string_number_conversions.h"
18 #include "packager/media/base/fixed_key_source.h"
19 #include "packager/media/base/media_stream.h"
20 #include "packager/media/base/muxer.h"
21 #include "packager/media/base/muxer_options.h"
22 #include "packager/media/base/request_signer.h"
23 #include "packager/media/base/stream_info.h"
24 #include "packager/media/base/widevine_key_source.h"
25 #include "packager/media/file/file.h"
26 #include "packager/mpd/base/mpd_builder.h"
27 
28 DEFINE_bool(mp4_use_decoding_timestamp_in_timeline,
29  false,
30  "If set, decoding timestamp instead of presentation timestamp will "
31  "be used when generating media timeline, e.g. timestamps in sidx "
32  "and mpd. This is to workaround a Chromium bug that decoding "
33  "timestamp is used in buffered range, https://crbug.com/398130.");
34 DEFINE_bool(dump_stream_info, false, "Dump demuxed stream info.");
35 
36 namespace shaka {
37 namespace media {
38 
39 void DumpStreamInfo(const std::vector<std::unique_ptr<MediaStream>>& streams) {
40  printf("Found %zu stream(s).\n", streams.size());
41  for (size_t i = 0; i < streams.size(); ++i)
42  printf("Stream [%zu] %s\n", i, streams[i]->info()->ToString().c_str());
43 }
44 
45 std::unique_ptr<RequestSigner> CreateSigner() {
46  std::unique_ptr<RequestSigner> signer;
47 
48  if (!FLAGS_aes_signing_key.empty()) {
49  signer.reset(AesRequestSigner::CreateSigner(
50  FLAGS_signer, FLAGS_aes_signing_key, FLAGS_aes_signing_iv));
51  if (!signer) {
52  LOG(ERROR) << "Cannot create an AES signer object from '"
53  << FLAGS_aes_signing_key << "':'" << FLAGS_aes_signing_iv
54  << "'.";
55  return std::unique_ptr<RequestSigner>();
56  }
57  } else if (!FLAGS_rsa_signing_key_path.empty()) {
58  std::string rsa_private_key;
59  if (!File::ReadFileToString(FLAGS_rsa_signing_key_path.c_str(),
60  &rsa_private_key)) {
61  LOG(ERROR) << "Failed to read from '" << FLAGS_rsa_signing_key_path
62  << "'.";
63  return std::unique_ptr<RequestSigner>();
64  }
65  signer.reset(RsaRequestSigner::CreateSigner(FLAGS_signer, rsa_private_key));
66  if (!signer) {
67  LOG(ERROR) << "Cannot create a RSA signer object from '"
68  << FLAGS_rsa_signing_key_path << "'.";
69  return std::unique_ptr<RequestSigner>();
70  }
71  }
72  return signer;
73 }
74 
75 std::unique_ptr<KeySource> CreateEncryptionKeySource() {
76  std::unique_ptr<KeySource> encryption_key_source;
77  if (FLAGS_enable_widevine_encryption) {
78  std::unique_ptr<WidevineKeySource> widevine_key_source(
79  new WidevineKeySource(FLAGS_key_server_url, FLAGS_include_common_pssh));
80  if (!FLAGS_signer.empty()) {
81  std::unique_ptr<RequestSigner> request_signer(CreateSigner());
82  if (!request_signer)
83  return std::unique_ptr<KeySource>();
84  widevine_key_source->set_signer(std::move(request_signer));
85  }
86 
87  std::vector<uint8_t> content_id;
88  if (!base::HexStringToBytes(FLAGS_content_id, &content_id)) {
89  LOG(ERROR) << "Invalid content_id hex string specified.";
90  return std::unique_ptr<KeySource>();
91  }
92  Status status = widevine_key_source->FetchKeys(content_id, FLAGS_policy);
93  if (!status.ok()) {
94  LOG(ERROR) << "Widevine encryption key source failed to fetch keys: "
95  << status.ToString();
96  return std::unique_ptr<KeySource>();
97  }
98  encryption_key_source = std::move(widevine_key_source);
99  } else if (FLAGS_enable_fixed_key_encryption) {
100  encryption_key_source = FixedKeySource::CreateFromHexStrings(
101  FLAGS_key_id, FLAGS_key, FLAGS_pssh, FLAGS_iv);
102  }
103  return encryption_key_source;
104 }
105 
106 std::unique_ptr<KeySource> CreateDecryptionKeySource() {
107  std::unique_ptr<KeySource> decryption_key_source;
108  if (FLAGS_enable_widevine_decryption) {
109  std::unique_ptr<WidevineKeySource> widevine_key_source(
110  new WidevineKeySource(FLAGS_key_server_url, FLAGS_include_common_pssh));
111  if (!FLAGS_signer.empty()) {
112  std::unique_ptr<RequestSigner> request_signer(CreateSigner());
113  if (!request_signer)
114  return std::unique_ptr<KeySource>();
115  widevine_key_source->set_signer(std::move(request_signer));
116  }
117 
118  decryption_key_source = std::move(widevine_key_source);
119  } else if (FLAGS_enable_fixed_key_decryption) {
120  const char kNoPssh[] = "";
121  const char kNoIv[] = "";
122  decryption_key_source = FixedKeySource::CreateFromHexStrings(
123  FLAGS_key_id, FLAGS_key, kNoPssh, kNoIv);
124  }
125  return decryption_key_source;
126 }
127 
128 bool GetMuxerOptions(MuxerOptions* muxer_options) {
129  DCHECK(muxer_options);
130 
131  muxer_options->segment_duration = FLAGS_segment_duration;
132  muxer_options->fragment_duration = FLAGS_fragment_duration;
133  muxer_options->segment_sap_aligned = FLAGS_segment_sap_aligned;
134  muxer_options->fragment_sap_aligned = FLAGS_fragment_sap_aligned;
135  muxer_options->num_subsegments_per_sidx = FLAGS_num_subsegments_per_sidx;
136  muxer_options->webm_subsample_encryption = FLAGS_webm_subsample_encryption;
137  if (FLAGS_mp4_use_decoding_timestamp_in_timeline) {
138  LOG(WARNING) << "Flag --mp4_use_decoding_timestamp_in_timeline is set. "
139  "Note that it is a temporary hack to workaround Chromium "
140  "bug https://crbug.com/398130. The flag may be removed "
141  "when the Chromium bug is fixed.";
142  }
143  muxer_options->mp4_use_decoding_timestamp_in_timeline =
144  FLAGS_mp4_use_decoding_timestamp_in_timeline;
145 
146  muxer_options->temp_dir = FLAGS_temp_dir;
147  return true;
148 }
149 
150 bool GetMpdOptions(bool on_demand_profile, MpdOptions* mpd_options) {
151  DCHECK(mpd_options);
152 
153  mpd_options->dash_profile =
154  on_demand_profile ? DashProfile::kOnDemand : DashProfile::kLive;
155  mpd_options->mpd_type =
156  (on_demand_profile || FLAGS_generate_static_mpd)
157  ? MpdType::kStatic
158  : MpdType::kDynamic;
159  mpd_options->availability_time_offset = FLAGS_availability_time_offset;
160  mpd_options->minimum_update_period = FLAGS_minimum_update_period;
161  mpd_options->min_buffer_time = FLAGS_min_buffer_time;
162  mpd_options->time_shift_buffer_depth = FLAGS_time_shift_buffer_depth;
163  mpd_options->suggested_presentation_delay =
164  FLAGS_suggested_presentation_delay;
165  mpd_options->default_language = FLAGS_default_language;
166  return true;
167 }
168 
169 MediaStream* FindFirstStreamOfType(
170  const std::vector<std::unique_ptr<MediaStream>>& streams,
171  StreamType stream_type) {
172  for (const std::unique_ptr<MediaStream>& stream : streams) {
173  if (stream->info()->stream_type() == stream_type)
174  return stream.get();
175  }
176  return nullptr;
177 }
178 MediaStream* FindFirstVideoStream(
179  const std::vector<std::unique_ptr<MediaStream>>& streams) {
180  return FindFirstStreamOfType(streams, kStreamVideo);
181 }
182 MediaStream* FindFirstAudioStream(
183  const std::vector<std::unique_ptr<MediaStream>>& streams) {
184  return FindFirstStreamOfType(streams, kStreamAudio);
185 }
186 
187 bool AddStreamToMuxer(const std::vector<std::unique_ptr<MediaStream>>& streams,
188  const std::string& stream_selector,
189  const std::string& language_override,
190  Muxer* muxer) {
191  DCHECK(muxer);
192 
193  MediaStream* stream = nullptr;
194  if (stream_selector == "video") {
195  stream = FindFirstVideoStream(streams);
196  } else if (stream_selector == "audio") {
197  stream = FindFirstAudioStream(streams);
198  } else {
199  // Expect stream_selector to be a zero based stream id.
200  size_t stream_id;
201  if (!base::StringToSizeT(stream_selector, &stream_id) ||
202  stream_id >= streams.size()) {
203  LOG(ERROR) << "Invalid argument --stream=" << stream_selector << "; "
204  << "should be 'audio', 'video', or a number within [0, "
205  << streams.size() - 1 << "].";
206  return false;
207  }
208  stream = streams[stream_id].get();
209  DCHECK(stream);
210  }
211 
212  // This could occur only if stream_selector=audio|video and the corresponding
213  // stream does not exist in the input.
214  if (!stream) {
215  LOG(ERROR) << "No " << stream_selector << " stream found in the input.";
216  return false;
217  }
218 
219  if (!language_override.empty()) {
220  stream->info()->set_language(language_override);
221  }
222 
223  muxer->AddStream(stream);
224  return true;
225 }
226 
227 } // namespace media
228 } // namespace shaka
static RsaRequestSigner * CreateSigner(const std::string &signer_name, const std::string &pkcs1_rsa_key)
static AesRequestSigner * CreateSigner(const std::string &signer_name, const std::string &aes_key_hex, const std::string &iv_hex)
static std::unique_ptr< FixedKeySource > CreateFromHexStrings(const std::string &key_id_hex, const std::string &key_hex, const std::string &pssh_boxes_hex, const std::string &iv_hex)
static bool ReadFileToString(const char *file_name, std::string *contents)
Definition: file.cc:185