2018-04-11 07:35:00 +00:00
|
|
|
package icecast_output
|
2018-04-10 15:51:03 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"git.icedream.tech/icedream/uplink/plugins"
|
|
|
|
)
|
|
|
|
|
|
|
|
var Plugin = &plugins.Plugin{
|
|
|
|
Descriptor: plugins.PluginDescriptor{
|
|
|
|
Name: "Icecast Output",
|
|
|
|
Description: "Allows for listeners to connect to the stream via HTTP and receive respective metadata.",
|
|
|
|
},
|
|
|
|
|
|
|
|
Run: func() plugins.PluginInstance {
|
|
|
|
return &pluginInstance{}
|
|
|
|
},
|
|
|
|
}
|