mirror of
https://github.com/langhuihui/monibuca.git
synced 2025-10-10 00:10:04 +08:00
16 lines
339 B
Go
16 lines
339 B
Go
package plugin_transcode
|
|
|
|
import (
|
|
m7s "m7s.live/v5"
|
|
"m7s.live/v5/plugin/transcode/pb"
|
|
transcode "m7s.live/v5/plugin/transcode/pkg"
|
|
)
|
|
|
|
var _ = m7s.InstallPlugin[TranscodePlugin](transcode.NewTransform, pb.RegisterApiHandler, &pb.Api_ServiceDesc)
|
|
|
|
type TranscodePlugin struct {
|
|
pb.UnimplementedApiServer
|
|
m7s.Plugin
|
|
LogToFile string
|
|
}
|