mirror of
https://github.com/langhuihui/monibuca.git
synced 2025-12-24 13:48:04 +08:00
13 lines
219 B
Go
13 lines
219 B
Go
package plugin_transcode
|
|
|
|
import (
|
|
"m7s.live/m7s/v5"
|
|
transcode "m7s.live/m7s/v5/plugin/transcode/pkg"
|
|
)
|
|
|
|
var _ = m7s.InstallPlugin[TranscodePlugin](transcode.NewTransform)
|
|
|
|
type TranscodePlugin struct {
|
|
m7s.Plugin
|
|
}
|