Skip to content

Instantly share code, notes, and snippets.

View nina-alin's full-sized avatar
drinking coffee

Nina Alin nina-alin

drinking coffee
  • France
  • 05:52 (UTC +01:00)
View GitHub Profile
@anton-vlasenko
anton-vlasenko / melody.php
Last active October 13, 2025 08:13
Creating music with PHP; more info here: 24daysindecember.net/2022/12/12/creating-music-with-php/
<?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;