Quiet Modem, to transmit data with sound
Project description
quiet.py
Python ctypes bindings for libquiet to transmit data with sound.
Usage
- Encode a message, and then decode it
from quiet import Encode, Decoder
def test():
encoder = Encoder()
decoder = Decoder()
for chunk in encoder.encode('hello, world'):
message = decoder.decode(chunk)
if message is not None:
print(message)
test()
- decode messages from recording in realtime
import sys
import pyaudio
from quiet import Encode, Decoder
def decode():
if sys.version_info[0] < 3:
import Queue as queue
else:
import queue
FORMAT = pyaudio.paFloat32
CHANNELS = 1
RATE = 44100
CHUNK = 16384 # int(RATE / 100)
p = pyaudio.PyAudio()
q = queue.Queue()
def callback(in_data, frame_count, time_info, status):
q.put(in_data)
return (None, pyaudio.paContinue)
stream = p.open(format=FORMAT,
channels=CHANNELS,
rate=RATE,
input=True,
frames_per_buffer=CHUNK,
stream_callback=callback)
count = 0
with Decoder(profile_name='ultrasonic-experimental') as decoder:
while True:
try:
audio = q.get()
audio = numpy.fromstring(audio, dtype='float32')
# audio = audio[::CHANNELS]
code = decoder.decode(audio)
if code is not None:
count += 1
print(code.tostring().decode('utf-8', 'ignore'))
except KeyboardInterrupt:
break
decode()
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 Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
File details
Details for the file quiet.py-0.1-py2.py3-none-linux_armv7l.whl
.
File metadata
- Download URL: quiet.py-0.1-py2.py3-none-linux_armv7l.whl
- Upload date:
- Size: 332.3 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.12.4 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.5.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e287fcdcc5fb3749e75e62d7005d5dd17b9ec54cd7a5d479924e2e93b56232bd |
|
MD5 | b6631d6fc761d685b3b44a090da71cab |
|
BLAKE2b-256 | 8578f2f37e8d7e8f6739bdeb862c30add732984076a96a4ea29ed0a2a06b46b3 |