mirror of
https://github.com/fxkt-tech/liv
synced 2025-09-26 20:11:20 +08:00
12 lines
140 B
Go
12 lines
140 B
Go
package liv
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
type Transcoder interface {
|
|
Transcode(context.Context, *TranscodeParams) error
|
|
}
|
|
|
|
type VideoFilter any
|