20 lines
559 B
Go
20 lines
559 B
Go
package bmp
|
|
|
|
import encoder2 "git.kor-elf.net/kor-elf/gui-for-ffmpeg/encoder"
|
|
|
|
func NewEncoder() encoder2.EncoderContract {
|
|
parameters := map[string]encoder2.ParameterContract{}
|
|
getParams := func(parameters map[string]encoder2.ParameterContract) []string {
|
|
return []string{"-c:v", "bmp"}
|
|
}
|
|
|
|
return encoder2.NewEncoder("bmp", parameters, getParams)
|
|
}
|
|
|
|
func NewData() encoder2.EncoderDataContract {
|
|
title := "bmp"
|
|
formats := []string{"bmp"}
|
|
fileType := encoder2.FileType(encoder2.Image)
|
|
return encoder2.NewData(title, formats, fileType, NewEncoder)
|
|
}
|