From 80152bf5b7a72e37413e919eba3e26f84cbd13bc Mon Sep 17 00:00:00 2001 From: Adam Stark Date: Mon, 18 Nov 2024 00:26:17 +0000 Subject: [PATCH] fix: wrong output file type in examples --- examples/examples.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/examples.cpp b/examples/examples.cpp index 6662839..7823520 100644 --- a/examples/examples.cpp +++ b/examples/examples.cpp @@ -141,6 +141,6 @@ namespace examples // 4. Write audio file to disk std::string outputFilePath = "quieter-audio-file.wav"; // change this to somewhere useful for you - a.save (outputFilePath, AudioFileFormat::Aiff); + a.save (outputFilePath, AudioFileFormat::Wave); } }