From 2192f4edcdb324090151594524642775f10fc416 Mon Sep 17 00:00:00 2001 From: TPD94 <> Date: Fri, 17 Nov 2023 00:36:50 -0500 Subject: [PATCH] Create README.md --- README.md | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..8e6df07 --- /dev/null +++ b/README.md @@ -0,0 +1,33 @@ + + +## Decrypting + +### Using MP4Decrypt +Download and extract [MP4Decrypt](https://www.bento4.com/downloads/ "MP4 Decrypt") + +Open a new command prompt as administrator and change directories to the MP4Decrypt bin folder. + +Place your encrpyted video and encrypted audio files in this bin folder as well + +Decrpyt the video / audio files by using `mp4decrypt.exe --key xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx:xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx inputfile outputfile` +> `inputfile` being the your encrypted video / audio file and `outputfile` can be named whatever you choose. + +> xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx:xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx is in KID:KEY format + +You should now have playable files. + +### Using FFmpeg + +Download and extract [FFmpeg](https://cdm-project.com/Download-Tools/FFmpeg-Builds "FFmpeg") + +Open a new command prompt as administrator and change directories to the FFmpeg bin folder. + +Place your encrpyted video and encrypted audio files in this bin folder as well + +Decrpyt the video / audio files by using `ffmpeg -decryption_key xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -i inputfile outputfile` + +> `inputfile` being the your encrypted video / audio file and `outputfile` can be named whatever you choose. + +> xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx is in KEY format + +You should now have playable files. \ No newline at end of file