Wav
Wav
is a Modulation
composed based on Wav files.
Install
cargo add autd3-modulation-audio-file
target_link_libraries(<TARGET> PRIVATE autd3::modulation::audio_file)
Included in the main library.
Included in the main library.
Included in the main library.
APIs
use autd3_modulation_audio_file::Wav;
fn main() -> Result<(), Box<dyn std::error::Error>> {
let _ =
Wav::new("path/to/foo.wav")?;
Ok(())
}
#include<autd3.hpp>
#include "autd3/modulation/audio_file.hpp"
int main() {
using namespace autd3;
modulation::audio_file::Wav("path/to/foo.wav");
return 0; }
using AUTD3Sharp.Modulation.AudioFile;
new Wav(path: "path/to/foo.wav");
import pathlib
from pyautd3.modulation.audio_file import Wav
Wav(path=pathlib.Path("path/to/foo.wav"))
Wav data supports mono, 8, 16, 24, 32-bit integers and 32-bit floating point data formats.
Each data value is converted to 8-bit unsigned integer modulation data through the following formulas. Here, represents the nearest integer.