-
Notifications
You must be signed in to change notification settings - Fork 483
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Various MP4Decrypt fixes #420
base: master
Are you sure you want to change the base?
Conversation
@barbibulle can u update this? thank u man. |
} | ||
if (tenc != NULL) { | ||
const AP4_DataBuffer* key = m_KeyMap->GetKeyByKid(tenc->GetDefaultKid()); | ||
if (key != NULL) m_KeyMap->SetKey(trak->GetId(), key->GetData(), 16); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Writing to the key map from AP4_CencDecryptingProcessor breaks the constness of that map. It doesn't seem right. Can you explain why you need to write a key here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
mp4decrypt couldn't properly handle selecting the track based on key ID, it only seemed to work by track ID.
Any update on progress bar? |
Yes, please add this. It's been so long... |
This modified version has a progress bar: https://github.com/NanDesuKa-FR/mp4decrypt_mod_linux |
Any update on progress bar? |
@FugerZuer link is dead |
one day... |
Fixed MP4Decrypt so it can:
Fixes #368