mirror of
https://github.com/langhuihui/monibuca.git
synced 2026-05-08 19:21:09 +08:00
17 lines
309 B
Go
17 lines
309 B
Go
package plugin_transcode
|
|
|
|
import (
|
|
"m7s.live/m7s/v5"
|
|
transcode "m7s.live/m7s/v5/plugin/transcode/pkg"
|
|
)
|
|
|
|
var (
|
|
//_ m7s.IListenPublishPlugin = (*TranscodePlugin)(nil)
|
|
_ = m7s.InstallPlugin[TranscodePlugin](transcode.NewTransform)
|
|
)
|
|
|
|
type TranscodePlugin struct {
|
|
m7s.Plugin
|
|
Rules []transcode.TransRule
|
|
}
|