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.

13 lines
209B

  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. }