Added the ability to convert files to different extensions.

This commit is contained in:
2024-03-07 22:18:35 +05:00
parent 1eb7ea4a93
commit 1ece1e443d
45 changed files with 1735 additions and 48 deletions

21
encoder/gif/encoder.go Normal file
View File

@@ -0,0 +1,21 @@
package gif
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", "gif"}
}
func NewData() encoder2.EncoderDataContract {
title := "gif"
formats := []string{"gif"}
fileType := encoder2.FileType(encoder2.Image)
return encoder2.NewData(title, formats, fileType, NewEncoder)
}