# PCM_Extractor **Repository Path**: kazzchen/PCM_Extractor ## Basic Information - **Project Name**: PCM_Extractor - **Description**: This program extract PCM code from a .wav file. - **Primary Language**: C++ - **License**: LGPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 4 - **Forks**: 0 - **Created**: 2021-12-02 - **Last Updated**: 2025-05-14 ## Categories & Tags **Categories**: multimedia **Tags**: None ## README # PCM Extractor > Platform: Qt 5.15.2 ## V1.0.0 1. This program extract PCM code as a C array from the selected wave file, and the exported array name is same as the exported data file name. ## V1.0.1 1. Add a check box, to enable a convertor that converts data form from signed 16 bits to unsigned 12 bits + PS: 16 bits data: Big-endian; 12 bits data: Big-endian + for example: [0x00, 0x00, 0xff, 0xff] as original data will be translated to : + [0x00, 0xf8, 0xff, 0xf7]