Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update spectrology.py #4

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 25 additions & 26 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,36 +1,35 @@
# spectrology
Images to audio files with corresponding spectrograms encoder.
# Spectrology
Скрипт для сокрытия изображения (BMP 24-bit) в спектрограмме звукового файла.
Главный репозиторий был заброшен и более не обновляется. В этом форке внесены необходимые правки для корректной работы скрипта.

## Usage
## Использование

```
usage: spectrology.py [-h] [-r] [-o OUTPUT] [-b BOTTOM] [-t TOP] [-p PIXELS]
[-s SAMPLING]
INPUT

positional arguments:
INPUT Name of the image to be convected.

optional arguments:
-h, --help show this help message and exit
-r, --rotate Rotate image 90 degrees.
-o OUTPUT, --output OUTPUT
Name of the output wav file. Default value: out.wav).
-b BOTTOM, --bottom BOTTOM
Bottom frequency range. Default value: 200.
-t TOP, --top TOP Top frequency range. Default value: 20000.
-p PIXELS, --pixels PIXELS
Pixels per second. Default value: 30.
-s SAMPLING, --sampling SAMPLING
Sampling rate. Default value: 44100.
Использование: spectrology.py [-h] [-r] [-o OUTPUT] [-b BOTTOM] [-t TOP] [-p PIXELS] [-s SAMPLING] INPUT

Позиционные аргументы:
INPUT Название избражения, которое будет сокрыто.

Необязательные аргументы:
-h, --help Показать это сообщение и выйти.
-r, --rotate Повернуть изображение на 90 градусов.
-o OUTPUT, --output OUTPUT Название выходного WAV файла. По умолчанию: out.wav.
-b BOTTOM, --bottom BOTTOM Нижнее значение диапазона частоты. По умолчанию: 200 Гц.
-t TOP, --top TOP Высшее значение диапазона частоты. По умолчанию: 20000 Гц.
-p PIXELS, --pixels PIXELS Пикселей за секунду. По умолчанию: 30 Пикселей.
-s SAMPLING, --sampling SAMPLING Частота дискретизации. По умолчанию: 44100 Гц.
```

## Пример

```
python spectrology.py test.bmp -b 13000 -t 19000
python spectrology.py test.bmp --bottom 13000 --top 19000
```
![spectrogram](https://solusipse.net/blog/img/posts/audio-samples/7.png)

For more informations on this techique, see this article: https://solusipse.net/blog/post/basic-methods-of-audio-steganography-spectrograms/.
## Полезное

Для получения дополнительной информации об этой технике, см. [эту статью](https://solusipse.net/blog/post/basic-methods-of-audio-steganography-spectrograms/) (eng).

## License
See `LICENSE`.
## Перевод и исправление
### [Digit4lSh4d0w](https://github.com/Digit4lSh4d0w)
2 changes: 1 addition & 1 deletion spectrology.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def convert(inpt, output, minfreq, maxfreq, pxs, wavrate, rotate, invert):
sys.stdout.write("Conversion progress: %d%% \r" % (float(x) / img.size[0]*100) )
sys.stdout.flush()

output.writeframes(data.tostring())
output.writeframes(data.tobytes())
output.close()

tms = timeit.default_timer()
Expand Down