Re: [FFmpeg-devel] [PATCH] avformat/mov: add support for multiple decryption keys

2024-08-01 Thread Michael Niedermayer
On Thu, Aug 01, 2024 at 02:53:29AM +0200, Kacper Michajlow wrote: > On Mon, 13 Nov 2023 at 09:40, Adrien Guinet wrote: > > > > This commit introduces new options to support more than one decryption > > keys: > > * add a decryption_keys option to MOV, that supports a dictionnary of > > KID=>key (

Re: [FFmpeg-devel] [PATCH] avformat/mov: add support for multiple decryption keys

2024-07-31 Thread Kacper Michajlow
On Mon, 13 Nov 2023 at 09:40, Adrien Guinet wrote: > > This commit introduces new options to support more than one decryption > keys: > * add a decryption_keys option to MOV, that supports a dictionnary of > KID=>key (in hex), using AV_OPT_TYPE_DICT > * add the corresponding cenc_decryption_keys

[FFmpeg-devel] [PATCH] avformat/mov: add support for multiple decryption keys

2023-11-13 Thread Adrien Guinet
This commit introduces new options to support more than one decryption keys: * add a decryption_keys option to MOV, that supports a dictionnary of KID=>key (in hex), using AV_OPT_TYPE_DICT * add the corresponding cenc_decryption_keys option to DASH --- doc/demuxers.texi

Re: [FFmpeg-devel] [PATCH] avformat/mov: add support for multiple decryption keys

2023-11-13 Thread Adrien Guinet
On 11/12/23 18:18, Michael Niedermayer wrote: On Sun, Nov 12, 2023 at 06:06:01PM +0100, Adrien Guinet wrote: This commit introduces new options to support more than one decryption keys: * add a decryption_keys option to MOV, that supports a dictionnary of KID=>key (in hex), using AV_OPT_TYPE_

Re: [FFmpeg-devel] [PATCH] avformat/mov: add support for multiple decryption keys

2023-11-12 Thread Michael Niedermayer
On Sun, Nov 12, 2023 at 06:06:01PM +0100, Adrien Guinet wrote: > This commit introduces new options to support more than one decryption > keys: > * add a decryption_keys option to MOV, that supports a dictionnary of > KID=>key (in hex), using AV_OPT_TYPE_DICT > * add the corresponding cenc_decryp

[FFmpeg-devel] [PATCH] avformat/mov: add support for multiple decryption keys

2023-11-12 Thread Adrien Guinet
This commit introduces new options to support more than one decryption keys: * add a decryption_keys option to MOV, that supports a dictionnary of KID=>key (in hex), using AV_OPT_TYPE_DICT * add the corresponding cenc_decryption_keys option to DASH Signed-off-by: Adrien Guinet --- doc/demuxer