Python modules for handling the Broadcast Wave Format and RF64 files.
Installing:
$ pip install wave-bwf-rf64
Basic example:
import contextlib
import wave_bwf_rf64
with contextlib.closing(wave_bwf_rf64.open("input.wav", "rb")) as f:
print("Num frames:", f.getnframes())
This package gives you the ability to work with both BWF and RF64 compatible WAV-files in Python.
Supported file IDs (first four bytes):
- RIFF
- RF64
Supported WAVE formats:
- PCM
Supported chunk types:
- ds64
- fmt
- data
- bext
- axml
- MD5
- levl
- chna
- r64m (only when reading)
This package's scope is limited to BWF and RF64 WAV files in the PCM format. Feature requests and pull requests for other types of (WAV) files are outside of this scope and would increase our maintenance burden if accepted. They will therefore not be considered. You are, however, more than welcome to publish such additions in a fork of your own.
This project requires Python version 3.10 or higher.
We use semantic versioning.
The Semantic Versioning Specification requires that we declare a public API. We may only introduce breaking changes to this public API if we simultaneously increment the major version. No such commitment is made for the parts of this project that are outside of the public API.
The public API is:
wave_bwf_rf64.open
wave_bwf_rf64.chunk.Chunk
wave_bwf_rf64.wave.
__all__
Error
WAVE_FORMAT_PCM
Bext
Chna
R64mMarker
R64m
Wave_read
Wave_write
open
- All methods and attributes of any classes mentioned above, where the method or attribute name does not start with an underscore (
!= _*
) - All methods and attributes of any classes mentioned above, where the method or attribute name is a system-defined name, i.e. their name starts and ends with two underscores (
== __*__
)
This project is licensed under the GNU General Public License version 3 or later. See LICENSE for details.
wave-bwf-rf64
is a modified version of BBC's wave-bwf
project.
The latter is, to the best of our knowledge, no longer available.
See the changelog for the history of this project, which spans back to 2014/2015.
- There is no rendered documentation for the
open
function and the classes it may return - The
open
function does not acceptpathlib.Path
objects - The object returned by
open
is not a context manager, so it cannot be used with awith
statement directly - Issues where the size in the RIFF file header is too small or equal to 0, as may be the case when a recording was abruptly stopped or is accessed mid-recording, are not handled gracefully
- The project is lacking quality control
- The project is missing type annotations, so type checkers and IDEs may not help you so much
- Primary specification: Recommendation ITU-R BS.2088-1
- Superseded specification containing information on the RF64 marker chunk (r64m): EBU-TECH 3306: MBWF/RF64: An extended File Format for Audio
The original Python module for handling RIFF chunks with extensions for handling RF64.
Extension of the Python Standard Library's wave module with BWF handling added (bext, chna, axml, md5 and levl chunks).
Thank you to:
- The Python Standard Library authors and contributors for the original
wave
andchunk
modules - David Marston (BBC) for the Broadcast Wave File support
- Tormod Værvågen (NRK) for the RF64 support and support for the
MD5
andlevl
chunks - John Arne Johnsen (NRK) for conversion to Python 3 and the addition of BEXT coding history field
- Thorben Werner Sjøstrøm Dahl (NRK) for the support for the
r64m
chunk (when reading) and preparations before publication
- Incorporate changes made to the chunk and wave modules in the Python Standard Library after this fork was made
- Adapt tests from the Python Standard Library and expand them with tests for the added functionality
- Adapt documentation from the Python Standard Library and expand it with descriptions of the added functionality
- Run tests and other quality control tools automatically
- Set up automatic release pipeline
- Refactor the user-facing API for easier use
- Refactor the internals, so that type checking works and the code is more readable