Go-based FM stereo transmitter with RDS, Windows-first and cross-platform
25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
|
- package ingest
-
- import "context"
-
- type Source interface {
- Descriptor() SourceDescriptor
- Start(ctx context.Context) error
- Stop() error
- Chunks() <-chan PCMChunk
- Errors() <-chan error
- Stats() SourceStats
- }
|