I am using following command to encrypt the mp4 file having two video tracks and one audio track.
fmpeg -i 10M00S.mp4 -c copy -map 0:0 -map 0:1 -map 0:2 -encryption_scheme cenc-aes-ctr -encryption_key 76a6c65c5ea762046bd749a2e632ccbb -encryption_kid a7e61c373e219033c21091fa607bf3b8 10M00S.mp4_enc.mp4
How to decrypt the encrypted file and store it with some other name using ffmpeg?