golanggohlsrtmpwebrtcmedia-serverobs-studiortcprtmp-proxyrtmp-serverrtprtsprtsp-proxyrtsp-relayrtsp-serversrtstreamingwebrtc-proxy
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.
29 lines
707 B
29 lines
707 B
package defs |
|
|
|
import ( |
|
"context" |
|
|
|
"github.com/bluenviron/mediamtx/internal/conf" |
|
"github.com/bluenviron/mediamtx/internal/logger" |
|
) |
|
|
|
// StaticSource is a static source. |
|
type StaticSource interface { |
|
logger.Writer |
|
Run(StaticSourceRunParams) error |
|
APISourceDescribe() APIPathSourceOrReader |
|
} |
|
|
|
// StaticSourceParent is the parent of a static source. |
|
type StaticSourceParent interface { |
|
logger.Writer |
|
SetReady(req PathSourceStaticSetReadyReq) PathSourceStaticSetReadyRes |
|
SetNotReady(req PathSourceStaticSetNotReadyReq) |
|
} |
|
|
|
// StaticSourceRunParams is the set of params passed to Run(). |
|
type StaticSourceRunParams struct { |
|
Context context.Context |
|
Conf *conf.Path |
|
ReloadConf chan *conf.Path |
|
}
|
|
|