mirror of
https://github.com/livepeer/lpms
synced 2025-10-01 05:52:42 +08:00
6 lines
93 B
Go
6 lines
93 B
Go
package transcoder
|
|
|
|
type Transcoder interface {
|
|
Transcode(fname string) ([][]byte, error)
|
|
}
|