Go-based FM stereo transmitter with RDS, Windows-first and cross-platform
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
378B

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