mirror of
https://gitee.com/wanwujie/sub2api
synced 2026-04-27 09:54:47 +08:00
64 lines
1.6 KiB
Go
64 lines
1.6 KiB
Go
|
|
package sora
|
||
|
|
|
||
|
|
import (
|
||
|
|
"regexp"
|
||
|
|
"strings"
|
||
|
|
)
|
||
|
|
|
||
|
|
var storyboardRe = regexp.MustCompile(`\[(\d+(?:\.\d+)?)s\]`)
|
||
|
|
|
||
|
|
// IsStoryboardPrompt 检测是否为分镜提示词。
|
||
|
|
func IsStoryboardPrompt(prompt string) bool {
|
||
|
|
if strings.TrimSpace(prompt) == "" {
|
||
|
|
return false
|
||
|
|
}
|
||
|
|
return storyboardRe.MatchString(prompt)
|
||
|
|
}
|
||
|
|
|
||
|
|
// FormatStoryboardPrompt 将分镜提示词转换为 API 需要的格式。
|
||
|
|
func FormatStoryboardPrompt(prompt string) string {
|
||
|
|
prompt = strings.TrimSpace(prompt)
|
||
|
|
if prompt == "" {
|
||
|
|
return prompt
|
||
|
|
}
|
||
|
|
matches := storyboardRe.FindAllStringSubmatchIndex(prompt, -1)
|
||
|
|
if len(matches) == 0 {
|
||
|
|
return prompt
|
||
|
|
}
|
||
|
|
firstIdx := matches[0][0]
|
||
|
|
instructions := strings.TrimSpace(prompt[:firstIdx])
|
||
|
|
|
||
|
|
shotPattern := regexp.MustCompile(`\[(\d+(?:\.\d+)?)s\]\s*([^\[]+)`)
|
||
|
|
shotMatches := shotPattern.FindAllStringSubmatch(prompt, -1)
|
||
|
|
if len(shotMatches) == 0 {
|
||
|
|
return prompt
|
||
|
|
}
|
||
|
|
|
||
|
|
shots := make([]string, 0, len(shotMatches))
|
||
|
|
for i, sm := range shotMatches {
|
||
|
|
if len(sm) < 3 {
|
||
|
|
continue
|
||
|
|
}
|
||
|
|
duration := strings.TrimSpace(sm[1])
|
||
|
|
scene := strings.TrimSpace(sm[2])
|
||
|
|
shots = append(shots, "Shot "+itoa(i+1)+":\nduration: "+duration+"sec\nScene: "+scene)
|
||
|
|
}
|
||
|
|
|
||
|
|
timeline := strings.Join(shots, "\n\n")
|
||
|
|
if instructions != "" {
|
||
|
|
return "current timeline:\n" + timeline + "\n\ninstructions:\n" + instructions
|
||
|
|
}
|
||
|
|
return timeline
|
||
|
|
}
|
||
|
|
|
||
|
|
// ExtractRemixID 提取分享链接中的 remix ID。
|
||
|
|
func ExtractRemixID(text string) string {
|
||
|
|
text = strings.TrimSpace(text)
|
||
|
|
if text == "" {
|
||
|
|
return ""
|
||
|
|
}
|
||
|
|
re := regexp.MustCompile(`s_[a-f0-9]{32}`)
|
||
|
|
match := re.FindString(text)
|
||
|
|
return match
|
||
|
|
}
|