mirror of
https://github.com/livepeer/lpms
synced 2026-04-23 00:07:25 +08:00
6 lines
93 B
Go
6 lines
93 B
Go
package transcoder
|
|
|
|
type Transcoder interface {
|
|
Transcode(fname string) ([][]byte, error)
|
|
}
|