Archived
2
0

catch errors from gst pipeline.

This commit is contained in:
Miroslav Šedivý
2021-08-15 15:37:27 +02:00
parent 6708ce2caf
commit 9e466b08cc
7 changed files with 47 additions and 19 deletions

View File

@ -1,10 +1,10 @@
package types
type BroadcastManager interface {
Start()
Start() error
Stop()
IsActive() bool
Create(url string)
Create(url string) error
Destroy()
GetUrl() string
}