|
2 weeks ago | |
---|---|---|
docs | 1 month ago | |
fvid | 1 month ago | |
tests | 1 month ago | |
.gitignore | 2 months ago | |
.readthedocs.yml | 2 months ago | |
CHANGELOG.md | 2 months ago | |
LICENSE.md | 6 months ago | |
README.md | 6 months ago | |
requirements.txt | 1 month ago | |
setup.py | 2 weeks ago |
Demonstration/Explanation Video
fvid is a project that aims to encode any file as a video using 1-bit color images to survive compression algorithms for data retrieval.
Requires installation of FFmpeg and libmagic first, then install using pip3
Linux/macOS
pip3 install fvid
Windows
py -m pip install fvid
Encoding files as videos
Linux/OSX
fvid -i [input file] -e
fvid -i [input file] --framerate 1 -e
fvid -i [input file] --password "wow fvid is cool" -e
Windows
py -m fvid -i [input file] -e
py -m fvid -i [input file] --framerate 1 -e
py -m fvid -i [input file] --password "wow fvid is cool" -e
Retrieving data from videos
Linux/OSX
fvid -i [input video] -d
Windows
py -m fvid -i [input video] -d
If the file was encoded with a non-default password, it'll prompt you to enter the password upon decoding.