This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| declare( strict_types=1 ); | |
| class WaveFile { | |
| private const RIFF = 'RIFF'; | |
| private const WAVE = 'WAVE'; | |
| private const FMT_CHUNK_MARKER = 'fmt '; | |
| private const FMT_CHUNK_SIZE = 16; | |
| private const FORMAT_TYPE = 1; // PCM | |
| private const CHANNELS = 1; |