mirror of https://bitbucket.org/ausocean/av.git
dont set up http output
This commit is contained in:
parent
70a2058b9a
commit
34c8fcd98c
|
@ -228,11 +228,13 @@ func (r *revidInst) Start() {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
r.Log(Info, "Starting Revid!")
|
r.Log(Info, "Starting Revid!")
|
||||||
|
if r.setupOutput != nil {
|
||||||
err := r.setupOutput()
|
err := r.setupOutput()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
r.Log(Error, "Output setup didn't work!")
|
r.Log(Error, "Output setup didn't work!")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
}
|
||||||
go r.setupInput()
|
go r.setupInput()
|
||||||
go r.outputClips()
|
go r.outputClips()
|
||||||
r.isRunning = true
|
r.isRunning = true
|
||||||
|
|
Loading…
Reference in New Issue