EncryptedMediaTest: Support setting MediaKeys after play() |
||||
Issue descriptionToday we always setMediaKeys before we play(). https://cs.chromium.org/chromium/src/media/test/data/eme_player.html?rcl=0&l=148 It would be nice to also support the other way: setting MediaKeys after play().
,
Jan 3 2017
Re #1: We have a bug to remove this restriction. See issue 597443 .
,
Feb 12 2017
,
Nov 16 2017
,
Apr 12 2018
,
Aug 7
Removing milestone as this is a low priority issue. |
||||
►
Sign in to add a comment |
||||
Comment 1 by masterwa...@gmail.com
, Dec 22 2016Good idea, this can improve DRM video loading speed when some DRM videos which starts with clear content. However, it seems that we disallow video encryption config change from unencrypted => encrypted: In SourceBufferStream::UpdateVideoConfig if (!video_configs_[0].encryption_scheme().Matches( config.encryption_scheme())) { MEDIA_LOG(ERROR, media_log_) << "Video encryption changes not allowed."; return false; }