Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
phsl
/
new-api
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
46c561ee
authored
Sep 15, 2025
by
IcedTangerine
Committed by
GitHub
Sep 15, 2025
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1805 from feitianbubu/pr/jimeng-video-3.0
feat: 支持即梦视频3.0,支持文生图, 图生图, 首尾帧生图
parents
9af65142
cf446438
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
4 deletions
+26
-4
relay/channel/task/jimeng/adaptor.go
+26
-4
No files found.
relay/channel/task/jimeng/adaptor.go
View file @
46c561ee
...
...
@@ -36,6 +36,7 @@ type requestPayload struct {
Prompt
string
`json:"prompt,omitempty"`
Seed
int64
`json:"seed"`
AspectRatio
string
`json:"aspect_ratio"`
Frames
int
`json:"frames,omitempty"`
}
type
responsePayload
struct
{
...
...
@@ -311,10 +312,15 @@ func hmacSHA256(key []byte, data []byte) []byte {
func
(
a
*
TaskAdaptor
)
convertToRequestPayload
(
req
*
relaycommon
.
TaskSubmitReq
)
(
*
requestPayload
,
error
)
{
r
:=
requestPayload
{
ReqKey
:
"jimeng_vgfm_i2v_l20"
,
Prompt
:
req
.
Prompt
,
AspectRatio
:
"16:9"
,
// Default aspect ratio
Seed
:
-
1
,
// Default to random
ReqKey
:
req
.
Model
,
Prompt
:
req
.
Prompt
,
}
switch
req
.
Duration
{
case
10
:
r
.
Frames
=
241
// 24*10+1 = 241
default
:
r
.
Frames
=
121
// 24*5+1 = 121
}
// Handle one-of image_urls or binary_data_base64
...
...
@@ -334,6 +340,22 @@ func (a *TaskAdaptor) convertToRequestPayload(req *relaycommon.TaskSubmitReq) (*
if
err
!=
nil
{
return
nil
,
errors
.
Wrap
(
err
,
"unmarshal metadata failed"
)
}
// 即梦视频3.0 ReqKey转换
// https://www.volcengine.com/docs/85621/1792707
if
strings
.
Contains
(
r
.
ReqKey
,
"jimeng_v30"
)
{
if
len
(
r
.
ImageUrls
)
>
1
{
// 多张图片:首尾帧生成
r
.
ReqKey
=
strings
.
Replace
(
r
.
ReqKey
,
"jimeng_v30"
,
"jimeng_i2v_first_tail_v30"
,
1
)
}
else
if
len
(
r
.
ImageUrls
)
==
1
{
// 单张图片:图生视频
r
.
ReqKey
=
strings
.
Replace
(
r
.
ReqKey
,
"jimeng_v30"
,
"jimeng_i2v_first_v30"
,
1
)
}
else
{
// 无图片:文生视频
r
.
ReqKey
=
strings
.
Replace
(
r
.
ReqKey
,
"jimeng_v30"
,
"jimeng_t2v_v30"
,
1
)
}
}
return
&
r
,
nil
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment