yao/kb/providers/converters/video.go
Max eb1bf43d61 Refactor provider schemas to utilize bindata for enhanced localization support
- Updated Schema methods for various providers (OpenAI, Fastembed, MCP, OCR, Office, UTF8, Video, Vision, Whisper) to retrieve schemas from bindata, improving localization capabilities.
- Removed outdated JSON files for embedding, extractor, and fetcher providers, streamlining the data structure.
- Enhanced the overall provider management by ensuring schemas are dynamically loaded based on locale, facilitating better multi-language support.
2025-08-10 15:51:34 +08:00

195 lines
6.3 KiB
Go

package converters
import (
"fmt"
"strings"
"github.com/yaoapp/gou/graphrag/converter"
"github.com/yaoapp/gou/graphrag/types"
"github.com/yaoapp/yao/kb/providers/factory"
kbtypes "github.com/yaoapp/yao/kb/types"
)
// Video is a converter provider for video files
type Video struct {
Autodetect []string `json:"autodetect" yaml:"autodetect"` // Optional, default is empty, if not set, will not use autodetect
MatchPriority int `json:"match_priority" yaml:"match_priority"` // Optional, default is 0, the higher the number, the higher the priority
}
// Make creates a new Video converter
func (video *Video) Make(option *kbtypes.ProviderOption) (types.Converter, error) {
// Start with default values
videoOption := converter.VideoOption{
AudioConverter: nil, // Will be set from option if provided
VisionConverter: nil, // Will be set from option if provided
KeyframeInterval: 10.0, // Default 10 seconds
MaxKeyframes: 20, // Default max 20 keyframes
TempDir: "", // Use system temp
CleanupTemp: true, // Default cleanup
MaxConcurrency: 4, // Default 4 concurrent processes
TextOptimization: true, // Default enable text optimization
DeduplicationRatio: 0.8, // Default deduplication ratio
}
// Use global FFmpeg configuration as defaults if available
if globalFFmpeg := kbtypes.GetGlobalFFmpeg(); globalFFmpeg != nil {
// Set FFmpeg paths
if globalFFmpeg.FFmpegPath != "" {
videoOption.FFmpegPath = globalFFmpeg.FFmpegPath
}
if globalFFmpeg.FFprobePath != "" {
videoOption.FFprobePath = globalFFmpeg.FFprobePath
}
// Set concurrency settings
if globalFFmpeg.MaxProcesses > 0 {
videoOption.MaxConcurrency = globalFFmpeg.MaxProcesses
}
if globalFFmpeg.MaxThreads > 0 {
videoOption.MaxThreads = &globalFFmpeg.MaxThreads
}
// Set GPU settings
videoOption.EnableGPU = &globalFFmpeg.EnableGPU
if globalFFmpeg.GPUIndex >= -1 { // -1 is valid (auto-detect)
videoOption.GPUIndex = &globalFFmpeg.GPUIndex
}
}
// Extract values from Properties map to override defaults
if option != nil && option.Properties != nil {
if keyframeInterval, ok := option.Properties["keyframe_interval"]; ok {
if intervalFloat, ok := keyframeInterval.(float64); ok {
videoOption.KeyframeInterval = intervalFloat
} else if intervalInt, ok := keyframeInterval.(int); ok {
videoOption.KeyframeInterval = float64(intervalInt)
}
}
if maxKeyframes, ok := option.Properties["max_keyframes"]; ok {
if maxInt, ok := maxKeyframes.(int); ok {
videoOption.MaxKeyframes = maxInt
} else if maxFloat, ok := maxKeyframes.(float64); ok {
videoOption.MaxKeyframes = int(maxFloat)
}
}
if tempDir, ok := option.Properties["temp_dir"]; ok {
if tempDirStr, ok := tempDir.(string); ok {
videoOption.TempDir = tempDirStr
}
}
if cleanupTemp, ok := option.Properties["cleanup_temp"]; ok {
if cleanupBool, ok := cleanupTemp.(bool); ok {
videoOption.CleanupTemp = cleanupBool
}
}
if maxConcurrency, ok := option.Properties["max_concurrency"]; ok {
if maxInt, ok := maxConcurrency.(int); ok {
videoOption.MaxConcurrency = maxInt
} else if maxFloat, ok := maxConcurrency.(float64); ok {
videoOption.MaxConcurrency = int(maxFloat)
}
}
if textOptimization, ok := option.Properties["text_optimization"]; ok {
if optimizationBool, ok := textOptimization.(bool); ok {
videoOption.TextOptimization = optimizationBool
}
}
if deduplicationRatio, ok := option.Properties["deduplication_ratio"]; ok {
if ratioFloat, ok := deduplicationRatio.(float64); ok {
videoOption.DeduplicationRatio = ratioFloat
} else if ratioInt, ok := deduplicationRatio.(int); ok {
videoOption.DeduplicationRatio = float64(ratioInt)
}
}
// FFmpeg-specific property overrides
if ffmpegPath, ok := option.Properties["ffmpeg_path"]; ok {
if pathStr, ok := ffmpegPath.(string); ok {
videoOption.FFmpegPath = pathStr
}
}
if ffprobePath, ok := option.Properties["ffprobe_path"]; ok {
if pathStr, ok := ffprobePath.(string); ok {
videoOption.FFprobePath = pathStr
}
}
if enableGPU, ok := option.Properties["enable_gpu"]; ok {
if gpuBool, ok := enableGPU.(bool); ok {
videoOption.EnableGPU = &gpuBool
}
}
if gpuIndex, ok := option.Properties["gpu_index"]; ok {
if indexInt, ok := gpuIndex.(int); ok {
videoOption.GPUIndex = &indexInt
} else if indexFloat, ok := gpuIndex.(float64); ok {
indexIntValue := int(indexFloat)
videoOption.GPUIndex = &indexIntValue
}
}
if maxThreads, ok := option.Properties["max_threads"]; ok {
if threadsInt, ok := maxThreads.(int); ok {
videoOption.MaxThreads = &threadsInt
} else if threadsFloat, ok := maxThreads.(float64); ok {
threadsIntValue := int(threadsFloat)
videoOption.MaxThreads = &threadsIntValue
}
}
// Handle nested vision converter
if vision, ok := option.Properties["vision"]; ok {
visionConverter, err := parseNestedConverter(vision)
if err != nil {
return nil, fmt.Errorf("failed to parse vision converter: %w", err)
}
videoOption.VisionConverter = visionConverter
}
// Handle nested audio converter
if audio, ok := option.Properties["audio"]; ok {
audioConverter, err := parseNestedConverter(audio)
if err != nil {
return nil, fmt.Errorf("failed to parse audio converter: %w", err)
}
videoOption.AudioConverter = audioConverter
}
}
return converter.NewVideo(videoOption)
}
// AutoDetect detects the converter based on the filename and content types
func (video *Video) AutoDetect(filename, contentTypes string) (bool, int, error) {
// If autodetect is empty, return false
if video.Autodetect == nil {
return false, 0, nil
}
// Check if the filename matches the autodetect
for _, autodetect := range video.Autodetect {
if strings.HasSuffix(filename, autodetect) {
return true, video.MatchPriority, nil
}
// Check if the content types matches the autodetect
if strings.Contains(contentTypes, autodetect) {
return true, video.MatchPriority, nil
}
}
return false, 0, nil
}
// Schema returns the schema for the Video converter
func (video *Video) Schema(provider *kbtypes.Provider, locale string) (*kbtypes.ProviderSchema, error) {
return factory.GetSchemaFromBindata(factory.ProviderTypeConverter, "video", locale)
}