Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/clarkfieseln/as4pgc
Hide small files inside audio files (MP3, OGG, FLAC, WAV).
https://github.com/clarkfieseln/as4pgc
audio audio-processing cli comand-line command-line-tool cryptography encryption ffmpeg flac mp3 ogg pypi pypi-package python python-3 python3 steganography steganography-algorithms steganography-library wav
Last synced: 4 days ago
JSON representation
Hide small files inside audio files (MP3, OGG, FLAC, WAV).
- Host: GitHub
- URL: https://github.com/clarkfieseln/as4pgc
- Owner: ClarkFieseln
- License: mit
- Created: 2021-08-16T18:29:05.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-04-14T11:13:52.000Z (7 months ago)
- Last Synced: 2024-08-09T13:26:45.445Z (3 months ago)
- Topics: audio, audio-processing, cli, comand-line, command-line-tool, cryptography, encryption, ffmpeg, flac, mp3, ogg, pypi, pypi-package, python, python-3, python3, steganography, steganography-algorithms, steganography-library, wav
- Language: Python
- Homepage:
- Size: 8.07 MB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Audit: audit/bandit_report.txt
Awesome Lists containing this project
README
# as4pgc
Hide files inside audio files.Use "Audio Steganography for Pretty Good Concealing" to compress, encrypt, and hide small files of any type inside compressed audio files (e.g. MP3, FLAC, OGG) or inside uncompressed .WAV files.
## Installation
```sh
pip install as4pgc
# if necessary, use:
pip install -r requirements.txt
# in linux:
sudo apt install ffmpeg
```
For Windows you can download ffmpeg from here:
https://www.ffmpeg.org/## How to use it?
Hide a file of any type inside an .mp3 file:
```sh
as4pgc -w secret.zip carrier.mp3
```
Use option -p to activate plots and track signal processing steps.Use option -v to output details.
Then recover the hidden file:
```sh
as4pgc -r stego.mp3
```Use the option -h for more information:
```sh
as4pgc -h
```Configuration settings can be adapted in config.ini.
For detailed documentation check the Article in Code Project. The link is provided further below.## PyPi Project
https://pypi.org/project/as4pgc/
## Article in Code Project
https://www.codeproject.com/Articles/5313626/Audio-Steganography-for-Pretty-Good-Concealing-AS4
## Article in GitHub
https://github.com/ClarkFieseln/AS4PGC
## License
(c) 2021 Clark Fieseln
This repository is licensed under the MIT license. See LICENSE for details.