🎉 live server seems to be working now

This commit is contained in:
2026-05-14 14:29:57 +02:00
commit d72e439fd9
181 changed files with 47406 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
// ABOUTME: Encoder interface definition
// ABOUTME: Common interface for all audio encoders
package encode
// Encoder encodes PCM int32 samples to various formats
type Encoder interface {
Encode(samples []int32) ([]byte, error)
Close() error
}