diff options
author | Tomer <11458759+tomer8007@users.noreply.github.com> | 2020-10-18 19:43:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-18 19:43:50 +0200 |
commit | 6f033b9f3d9af127666ab2997091b7555ac6af35 (patch) | |
tree | cf75b6ef62c6215014864a1f6b4fa55d9bacbc9e /README.md | |
parent | Added gitignore file (diff) | |
download | widevine-l3-decryptor-6f033b9f3d9af127666ab2997091b7555ac6af35.tar widevine-l3-decryptor-6f033b9f3d9af127666ab2997091b7555ac6af35.tar.gz widevine-l3-decryptor-6f033b9f3d9af127666ab2997091b7555ac6af35.tar.bz2 widevine-l3-decryptor-6f033b9f3d9af127666ab2997091b7555ac6af35.tar.lz widevine-l3-decryptor-6f033b9f3d9af127666ab2997091b7555ac6af35.tar.xz widevine-l3-decryptor-6f033b9f3d9af127666ab2997091b7555ac6af35.tar.zst widevine-l3-decryptor-6f033b9f3d9af127666ab2997091b7555ac6af35.zip |
Diffstat (limited to '')
-rw-r--r-- | README.md | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -13,7 +13,9 @@ Keys will be logged in plaintext to the javascript console: `WidevineDecryptor: Found key: 100b6c20940f779a4589152b57d2dacb (KID=eb676abbcb345e96bbcf616630f1a3da)
`
-Decrypting the media itself is then just a matter of using a tool that can decrypt MPEG-CENC streams, like `ffmpeg`. e.g:
+Decrypting the media itself is then just a matter of using a tool that can decrypt MPEG-CENC streams, like `ffmpeg`.
+
+e.g:
`ffmpeg -decryption_key 100b6c20940f779a4589152b57d2dacb -i encrypted_media.mp4 -codec copy decrypted_media.mp4`
|