No project description provided
Project description
wav-chunk
Read or write INFO chunks from a RIFF WAV file.
Installation
$ pip install wavchunk
Dependencies
- Python 3.6 or higher
Usage
By default, wavchunk
adds or gets INFO chunk bytes after the WAV data
chunk.
Add INFO chunk
import wavchunk
with open("infile.wav", "rb") as in_file:
with open("outfile.wav", "wb") as out_file:
wavchunk.add_chunk(in_file, "my data".encode(), out_file=out_file)
Get INFO chunk
import wavchunk
with open("infile.wav", "rb") as in_file:
my_data = wavchunk.get_chunk(in_file).decode()
print(my_data)
Command-Line Interface
The wavchunk
module can also be used from the command-line.
By default, WAV data is expected on stdin and is written to stdout so that commands can be chained together in a pipe.
Add INFO chunk
$ python3 -m wavchunk add --data 'my data' < infile.wav > outfile.wav
Get INFO chunk
$ python3 -m wavchunk get --data - < infile.wav
<data from chunk>
Delete INFO chunk
$ python3 -m wavchunk get --delete --data mydata.bin < infile.wav > outfile.wav
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 Distribution
wavchunk-1.0.0.tar.gz
(5.5 kB
view details)
File details
Details for the file wavchunk-1.0.0.tar.gz
.
File metadata
- Download URL: wavchunk-1.0.0.tar.gz
- Upload date:
- Size: 5.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.6.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6922fcce00813c3ef924a7ad86c7394bdfa8ca49dc1334db3dff79d79b859d34 |
|
MD5 | 625db3d89fb9809358984b2ff059c15f |
|
BLAKE2b-256 | 53cf34a085df3bd443c676bd6c8fa216c1dc91182a9159ebcda9a7f21a7dcf62 |