|
- package license
-
- import _ "embed"
-
- // jingleWAV holds the fm-rds-tx station identification jingle.
- // Replace jingle.wav with your actual jingle before shipping.
- // Requirements: 16-bit PCM WAV, stereo, 44100 Hz, max ~30 seconds.
- //
- //go:embed jingle.wav
- var jingleWAV []byte
-
- // JingleWAV returns the raw embedded jingle WAV bytes.
- func JingleWAV() []byte { return jingleWAV }
|