Views
No views yet
| File | Role |
|---|---|
audioseal_generator_16bits.onnx | Embeds a 16-bit watermark into mono audio. |
audioseal_detector_16bits.onnx | Detects the watermark and recovers the 16-bit payload. |
[-1, 1]. Pad the audio length up to a
multiple of HOP = 320 before running each model, then trim the output back
to the original length.audio [1, 1, T] (float32) + message [1, 16] (int32
bits); output is the watermarked audio.audio [1, 1, T] (float32); outputs per-sample detection
probabilities + the recovered 16-bit message.audioseal PyPI package's PyTorch checkpoints via
torch.onnx (opset 17), with NO_TORCH_COMPILE=1 and a host-side
pad-to-320 / trim convention. Bit-exact 16-bit payload parity and matching
detection probabilities versus the PyTorch reference were verified.LICENSE.