Go-based FM stereo transmitter with RDS, Windows-first and cross-platform
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

14 рядки
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 }