Video encryption while maintaining playability.
Project description
Sanzan
Sanzan is a simple encryption library to encrypt and decrypt videos while maintaining playability.
It uses NumPy and OpenCV to perform video frame manipulation, while using FFmpeg and Pydub for audio manipulation. Sanzan can be used either from the command line or in a Python program.
Encrypted Video
Decrypted Video:
Installation
Prerequisite
FFmpeg must be installed and in PATH
.
pip install sanzan
Usage
Encryption
sz original.mp4 -k <key> -e -o encrypted.mp4
On a stream
sz https://youtu.be/dQw4w9WgXcQ -k <key> -e -o encrypted.mp4
Decryption
sz encrypted.mp4 -k <key> -d -o decrypted.mp4
With preview
sz encrypted.mp4 -k <key> -d -o decrypted.mp4 -p
- Frames will be displayed as quickly as they are generated.
- Audio will only start playing after the whole stream has been processed.
More Usage
Omit the -k
argument to encrypt using randomly generated keyfiles.
Use the -m
argument to specify mode: audio
, video
or full
(default).
Use the -q
flag for quiet mode.
Audio options
Use the -a
argument to specify output audio format: mp3
, wav
(default), flac
, etc.
Use the -l
flag to use light encryption/decryption.
Use the -dn
flag to apply denoising to the output audio.
Use the -pp
flag to disable audio padding.
Video options
Use the -s
argument to specify scramble method: rows
(default), cols
, full
.
Use the -f
flag to generate a different scramble order every frame.
Python Usage
Alternatively, Sanzan provides a Python interface to programmatically access its functionality.
Encryption
from sanzan import Sanzan
if __name__ == "__main__":
s = Sanzan("original.mp4")
s.set_password("1234")
s.encrypt("encrypted.mp4")
Decryption
from sanzan import Sanzan
if __name__ == "__main__":
s = Sanzan("encrypted.mp4")
s.set_password("1234")
s.decrypt("decrypted.mp4", preview=True, denoise=True)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file Sanzan-2.0.5.tar.gz
.
File metadata
- Download URL: Sanzan-2.0.5.tar.gz
- Upload date:
- Size: 7.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c4078c4c6351941a95db9cc409aff8b598b4c8326e60b31de42fdab0f6c8fcd1 |
|
MD5 | 3a80e10529dfa75870f756cb6953d92a |
|
BLAKE2b-256 | a5b53ba4e629ddb2b03ade0443a1ba33f4235a02e60fdc543a977d2ed8331d37 |
File details
Details for the file Sanzan-2.0.5-py3-none-any.whl
.
File metadata
- Download URL: Sanzan-2.0.5-py3-none-any.whl
- Upload date:
- Size: 8.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5431bac9fa46a6d3f151ed28e60f42f27511df3655d8842de2a93e65d7e36474 |
|
MD5 | a988e0772bd82163c93d5a6d42aa56f8 |
|
BLAKE2b-256 | b62747229818c05e4c4b1743eb3b2791ad7a6e4cf8771e57ba162e80549680e1 |