Waitrud Weber’s blog

things and reminders for memories

2022-09-01から1ヶ月間の記事一覧

sounds: windows-make: Microsoft LIST:

We can create LIST in a wave file. 52 49 46 46 FF FF FF FF 57 41 56 45 4C 49 53 54 FF FF FF FF 57 41 56 45:RIFFWAVELISTWAVE: LPMMCKINFO:MMCKINFO: https://learn.microsoft.com/en-us/windows/win32/api/mmiscapi/ns-mmiscapi-mmckinfo typ…

Sounds: windows-make: Open the wave as format.

data: thunder.wav52 49 46 46 98 80 04 00 57 41 56 45 66 6D 74 20 10 00 00 00 01 00 01 00 44 AC 00 00 88 58 01 00 02 00 10 00 64 61 74 61 74 | 80 04 00 00 | 00 B0 FF 5D FF 18 FF F2 FE F2 FE 17 FF 57 FF 9F FF DD FF 00 00 00 00 DC FF A0 FF 5B…

sounds: windows-make: Microsoft RIFF:

We can use the parameter and write the buffer in the file so that we could not use the audio file api but we use the audio format supported by microsoft because for the recoding, we use the microsoft format audio as a touch file cashed in …

sounds: windows-make: Add the part of sounds devise in a header file.

1: add a write devise open for the write of a wave file. if ((hFile = mmioOpen(".\\SAMPLE1.WAV", NULL, MMIO_WRITE)) != NULL) { // File opened successfully. MessageBox(hwndApp, "Failed to read data chunk.", NULL, MB_OK | MB_ICONEXCLAMATION)…

sounds: windows-make: The program is compiled well and does not open the device in source code files but does it in a header file.

*The program is compiled well and does not open the device in source code files but does it in a header file. wavewriter.cpp Sat Sep 17 15:45:43 2022 1 :#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers 2 :// Wi…

sounds: windows-make: We could save the wave file.

1: Grep fwrite:2: Code here on the text:3: Revisement the parameters: 1: Grep fwrite:C:\Users\Beneton\Documents\source\sounds\display-20220830 fwrite( copyof((char*)"\r\n"), sizeof(char), 2, wfp); fwrite( filename, sizeof(char), ac, wfp); …

sounds: windows-make: 001: fread 255:

We can read and print the buffer as number 255. .\Main.cpp Thu Sep 15 22:37:59 2022 1 :#include 2 :#include 3 :#include 4 :#include 5 : 6 :#include 7 : 8 :#include 9 : 10 :int main( int argc, char** argv ) { 11 : int i; 12 : FILE *rfp, *wf…

sounds: Print the file and the file pointer doesn't move.

Error:1: Compilation Error: https://github.com/WaitrudWeber/source_zip/blob/master/wavefile_20220815-001.zip 2:3:4:5: *We are going to struggle with the sounds effects by overcomming the hardness. * 1: Open the wav file.2: Create the wav f…