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

19 строки
410B

  1. package ingest
  2. import "context"
  3. type Source interface {
  4. Descriptor() SourceDescriptor
  5. Start(ctx context.Context) error
  6. Stop() error
  7. Chunks() <-chan PCMChunk
  8. Errors() <-chan error
  9. Stats() SourceStats
  10. }
  11. // StreamTitleSource is an optional extension for sources that expose
  12. // title/metadata updates (for example ICY StreamTitle).
  13. type StreamTitleSource interface {
  14. StreamTitleUpdates() <-chan string
  15. }