Go-based FM stereo transmitter with RDS, Windows-first and cross-platform
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

66 行
1.2KB

  1. {
  2. "audio": {
  3. "inputPath": "",
  4. "gain": 1.0,
  5. "toneLeftHz": 1000,
  6. "toneRightHz": 1600,
  7. "toneAmplitude": 0.4
  8. },
  9. "rds": {
  10. "enabled": true,
  11. "pi": "1234",
  12. "ps": "FMRTX",
  13. "radioText": "fm-rds-tx example config",
  14. "pty": 0
  15. },
  16. "fm": {
  17. "frequencyMHz": 100.0,
  18. "stereoEnabled": true,
  19. "pilotLevel": 0.1,
  20. "rdsInjection": 0.05,
  21. "preEmphasisTauUS": 50,
  22. "outputDrive": 0.5,
  23. "compositeRateHz": 228000,
  24. "maxDeviationHz": 75000,
  25. "limiterEnabled": true,
  26. "limiterCeiling": 1.0,
  27. "fmModulationEnabled": true
  28. },
  29. "backend": {
  30. "kind": "file",
  31. "device": "",
  32. "outputPath": "build/out/composite.f32",
  33. "deviceSampleRateHz": 0
  34. },
  35. "control": {
  36. "listenAddress": "127.0.0.1:8088"
  37. },
  38. "runtime": {
  39. "frameQueueCapacity": 3
  40. },
  41. "ingest": {
  42. "kind": "none",
  43. "prebufferMs": 1500,
  44. "stallTimeoutMs": 3000,
  45. "reconnect": {
  46. "enabled": true,
  47. "initialBackoffMs": 1000,
  48. "maxBackoffMs": 15000
  49. },
  50. "stdin": {
  51. "sampleRateHz": 44100,
  52. "channels": 2,
  53. "format": "s16le"
  54. },
  55. "httpRaw": {
  56. "sampleRateHz": 44100,
  57. "channels": 2,
  58. "format": "s16le"
  59. },
  60. "icecast": {
  61. "url": "",
  62. "decoder": "auto"
  63. }
  64. }
  65. }