videocryptor

1.0.2 • Public • Published

Installation

npm install videocryptor

Getting Started

To use video-cryptor, you need to import it into your Node.js project:

import videoCryptor from "videocryptor";
const video = new VideoCryptor();

Usage

To encrypt a video, you'll need the path to the video file, an encryption key, and the desired output file path. Here's how to use the library to encrypt a video:

const videoPath = "./demo.mp4";
const encryptionKey = "your-secret-key";
const encryptedFilePath = "encrypted-video";
video.videoEncrypt(videoPath, encryptionKey, encryptedFilePath);

Decrypting an Encrypted Video

Usage

To decrypt an encrypted video, you'll need the path to the encrypted video file, the encryption key used for encryption, and the desired output file path. Here's how to use the library to decrypt an encrypted video:

const encryptedFilePath = "encrypted-video";
const encryptionKey = "your-secret-key";
const decryptedVideoPath = "decrypted-video";
video.videoDecrypt(encryptedFilePath, encryptionKey, decryptedVideoPath);

Author

Ashish Singh (GitHub)

Dependencies (2)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i videocryptor

    Weekly Downloads

    1

    Version

    1.0.2

    License

    ISC

    Unpacked Size

    3.03 kB

    Total Files

    3

    Last publish

    Collaborators

    • hiddencaptain