|
@@ -3,7 +3,6 @@ package common
|
|
|
import (
|
|
import (
|
|
|
"errors"
|
|
"errors"
|
|
|
"fmt"
|
|
"fmt"
|
|
|
- "strconv"
|
|
|
|
|
"strings"
|
|
"strings"
|
|
|
"time"
|
|
"time"
|
|
|
|
|
|
|
@@ -552,41 +551,3 @@ func RemoveDisabledFields(jsonData []byte, channelOtherSettings dto.ChannelOther
|
|
|
}
|
|
}
|
|
|
return jsonDataAfter, nil
|
|
return jsonDataAfter, nil
|
|
|
}
|
|
}
|
|
|
-
|
|
|
|
|
-type OpenAIVideo struct {
|
|
|
|
|
- ID string `json:"id"`
|
|
|
|
|
- TaskID string `json:"task_id,omitempty"` //兼容旧接口 待废弃
|
|
|
|
|
- Object string `json:"object"`
|
|
|
|
|
- Model string `json:"model"`
|
|
|
|
|
- Status string `json:"status"`
|
|
|
|
|
- Progress int `json:"progress"`
|
|
|
|
|
- CreatedAt int64 `json:"created_at"`
|
|
|
|
|
- CompletedAt int64 `json:"completed_at,omitempty"`
|
|
|
|
|
- ExpiresAt int64 `json:"expires_at,omitempty"`
|
|
|
|
|
- Seconds string `json:"seconds,omitempty"`
|
|
|
|
|
- Size string `json:"size,omitempty"`
|
|
|
|
|
- RemixedFromVideoID string `json:"remixed_from_video_id,omitempty"`
|
|
|
|
|
- Error *OpenAIVideoError `json:"error,omitempty"`
|
|
|
|
|
- Metadata map[string]any `json:"metadata,omitempty"`
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
-func (m *OpenAIVideo) SetProgressStr(progress string) {
|
|
|
|
|
- progress = strings.TrimSuffix(progress, "%")
|
|
|
|
|
- m.Progress, _ = strconv.Atoi(progress)
|
|
|
|
|
-}
|
|
|
|
|
-func (m *OpenAIVideo) SetMetadata(k string, v any) {
|
|
|
|
|
- if m.Metadata == nil {
|
|
|
|
|
- m.Metadata = make(map[string]any)
|
|
|
|
|
- }
|
|
|
|
|
- m.Metadata[k] = v
|
|
|
|
|
-}
|
|
|
|
|
-func NewOpenAIVideo() *OpenAIVideo {
|
|
|
|
|
- return &OpenAIVideo{
|
|
|
|
|
- Object: "video",
|
|
|
|
|
- }
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
-type OpenAIVideoError struct {
|
|
|
|
|
- Message string `json:"message"`
|
|
|
|
|
- Code string `json:"code"`
|
|
|
|
|
-}
|
|
|