22 lines
477 B
Go
22 lines
477 B
Go
package libvpx_vp9
|
|
|
|
import encoder2 "git.kor-elf.net/kor-elf/gui-for-ffmpeg/encoder"
|
|
|
|
type encoder struct {
|
|
}
|
|
|
|
func NewEncoder() encoder2.EncoderContract {
|
|
return &encoder{}
|
|
}
|
|
|
|
func (e encoder) GetParams() []string {
|
|
return []string{"-c:v", "libvpx-vp9"}
|
|
}
|
|
|
|
func NewData() encoder2.EncoderDataContract {
|
|
title := "libvpx-vp9"
|
|
formats := []string{"webm", "mkv"}
|
|
fileType := encoder2.FileType(encoder2.Video)
|
|
return encoder2.NewData(title, formats, fileType, NewEncoder)
|
|
}
|