Files
alfred-be/alfred/config/ffmpeg_config.go
2026-03-08 16:14:42 +05:30

14 lines
225 B
Go

package config
import "github.com/spf13/viper"
type FfmpegConfig struct {
Framerate int
}
func NewFfmpegConfig() *FfmpegConfig {
return &FfmpegConfig{
Framerate: viper.GetInt("ffmpeg.video.generation.framerate"),
}
}