File size: 55,715 Bytes
d9b2169 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 | import _ from "lodash";
import crypto from "crypto";
import fs from "fs";
import APIException from "@/lib/exceptions/APIException.ts";
import EX from "@/api/consts/exceptions.ts";
import util from "@/lib/util.ts";
import { getCredit, receiveCredit, request } from "./core.ts";
import logger from "@/lib/logger.ts";
const DEFAULT_ASSISTANT_ID = 513695;
export const DEFAULT_MODEL = "jimeng-video-3.0";
const DEFAULT_DRAFT_VERSION = "3.2.8";
const MODEL_DRAFT_VERSIONS: { [key: string]: string } = {
"jimeng-video-3.5-pro": "3.3.4",
"jimeng-video-3.0-pro": "3.2.8",
"jimeng-video-3.0": "3.2.8",
"jimeng-video-2.0": "3.2.8",
"jimeng-video-2.0-pro": "3.2.8",
// Seedance 模型
"seedance-2.0": "3.3.9",
"seedance-2.0-pro": "3.3.9",
};
const MODEL_MAP = {
"jimeng-video-3.5-pro": "dreamina_ic_generate_video_model_vgfm_3.5_pro",
"jimeng-video-3.0-pro": "dreamina_ic_generate_video_model_vgfm_3.0_pro",
"jimeng-video-3.0": "dreamina_ic_generate_video_model_vgfm_3.0",
"jimeng-video-2.0": "dreamina_ic_generate_video_model_vgfm_lite",
"jimeng-video-2.0-pro": "dreamina_ic_generate_video_model_vgfm1.0",
// Seedance 多图智能视频生成模型
"seedance-2.0": "dreamina_seedance_40_pro",
"seedance-2.0-pro": "dreamina_seedance_40_pro",
};
// Seedance 模型的 benefit_type 映射
const SEEDANCE_BENEFIT_TYPE_MAP: { [key: string]: string } = {
"seedance-2.0": "dreamina_video_seedance_20_pro",
"seedance-2.0-pro": "dreamina_video_seedance_20_pro",
};
// 判断是否为 Seedance 模型
export function isSeedanceModel(model: string): boolean {
return model.startsWith("seedance-");
}
// 视频支持的分辨率和比例配置
const VIDEO_RESOLUTION_OPTIONS: {
[resolution: string]: {
[ratio: string]: { width: number; height: number };
};
} = {
"480p": {
"1:1": { width: 480, height: 480 },
"4:3": { width: 640, height: 480 },
"3:4": { width: 480, height: 640 },
"16:9": { width: 854, height: 480 },
"9:16": { width: 480, height: 854 },
},
"720p": {
"1:1": { width: 720, height: 720 },
"4:3": { width: 960, height: 720 },
"3:4": { width: 720, height: 960 },
"16:9": { width: 1280, height: 720 },
"9:16": { width: 720, height: 1280 },
},
"1080p": {
"1:1": { width: 1080, height: 1080 },
"4:3": { width: 1440, height: 1080 },
"3:4": { width: 1080, height: 1440 },
"16:9": { width: 1920, height: 1080 },
"9:16": { width: 1080, height: 1920 },
},
};
// 解析视频分辨率参数
function resolveVideoResolution(
resolution: string = "720p",
ratio: string = "1:1"
): { width: number; height: number } {
const resolutionGroup = VIDEO_RESOLUTION_OPTIONS[resolution];
if (!resolutionGroup) {
const supportedResolutions = Object.keys(VIDEO_RESOLUTION_OPTIONS).join(", ");
throw new Error(`不支持的视频分辨率 "${resolution}"。支持的分辨率: ${supportedResolutions}`);
}
const ratioConfig = resolutionGroup[ratio];
if (!ratioConfig) {
const supportedRatios = Object.keys(resolutionGroup).join(", ");
throw new Error(`在 "${resolution}" 分辨率下,不支持的比例 "${ratio}"。支持的比例: ${supportedRatios}`);
}
return {
width: ratioConfig.width,
height: ratioConfig.height,
};
}
export function getModel(model: string) {
return MODEL_MAP[model] || MODEL_MAP[DEFAULT_MODEL];
}
// AWS4-HMAC-SHA256 签名生成函数(从 images.ts 复制)
function createSignature(
method: string,
url: string,
headers: { [key: string]: string },
accessKeyId: string,
secretAccessKey: string,
sessionToken?: string,
payload: string = ''
) {
const urlObj = new URL(url);
const pathname = urlObj.pathname || '/';
const search = urlObj.search;
// 创建规范请求
const timestamp = headers['x-amz-date'];
const date = timestamp.substr(0, 8);
const region = 'cn-north-1';
const service = 'imagex';
// 规范化查询参数
const queryParams: Array<[string, string]> = [];
const searchParams = new URLSearchParams(search);
searchParams.forEach((value, key) => {
queryParams.push([key, value]);
});
// 按键名排序
queryParams.sort(([a], [b]) => {
if (a < b) return -1;
if (a > b) return 1;
return 0;
});
const canonicalQueryString = queryParams
.map(([key, value]) => `${key}=${value}`)
.join('&');
// 规范化头部
const headersToSign: { [key: string]: string } = {
'x-amz-date': timestamp
};
if (sessionToken) {
headersToSign['x-amz-security-token'] = sessionToken;
}
let payloadHash = crypto.createHash('sha256').update('').digest('hex');
if (method.toUpperCase() === 'POST' && payload) {
payloadHash = crypto.createHash('sha256').update(payload, 'utf8').digest('hex');
headersToSign['x-amz-content-sha256'] = payloadHash;
}
const signedHeaders = Object.keys(headersToSign)
.map(key => key.toLowerCase())
.sort()
.join(';');
const canonicalHeaders = Object.keys(headersToSign)
.sort((a, b) => a.toLowerCase().localeCompare(b.toLowerCase()))
.map(key => `${key.toLowerCase()}:${headersToSign[key].trim()}\n`)
.join('');
const canonicalRequest = [
method.toUpperCase(),
pathname,
canonicalQueryString,
canonicalHeaders,
signedHeaders,
payloadHash
].join('\n');
// 创建待签名字符串
const credentialScope = `${date}/${region}/${service}/aws4_request`;
const stringToSign = [
'AWS4-HMAC-SHA256',
timestamp,
credentialScope,
crypto.createHash('sha256').update(canonicalRequest, 'utf8').digest('hex')
].join('\n');
// 生成签名
const kDate = crypto.createHmac('sha256', `AWS4${secretAccessKey}`).update(date).digest();
const kRegion = crypto.createHmac('sha256', kDate).update(region).digest();
const kService = crypto.createHmac('sha256', kRegion).update(service).digest();
const kSigning = crypto.createHmac('sha256', kService).update('aws4_request').digest();
const signature = crypto.createHmac('sha256', kSigning).update(stringToSign, 'utf8').digest('hex');
return `AWS4-HMAC-SHA256 Credential=${accessKeyId}/${credentialScope}, SignedHeaders=${signedHeaders}, Signature=${signature}`;
}
// 计算文件的CRC32值(从 images.ts 复制)
function calculateCRC32(buffer: ArrayBuffer): string {
const crcTable = [];
for (let i = 0; i < 256; i++) {
let crc = i;
for (let j = 0; j < 8; j++) {
crc = (crc & 1) ? (0xEDB88320 ^ (crc >>> 1)) : (crc >>> 1);
}
crcTable[i] = crc;
}
let crc = 0 ^ (-1);
const bytes = new Uint8Array(buffer);
for (let i = 0; i < bytes.length; i++) {
crc = (crc >>> 8) ^ crcTable[(crc ^ bytes[i]) & 0xFF];
}
return ((crc ^ (-1)) >>> 0).toString(16).padStart(8, '0');
}
// 视频专用图片上传功能(基于 images.ts 的 uploadImageFromUrl)
async function uploadImageForVideo(imageUrl: string, refreshToken: string): Promise<string> {
try {
logger.info(`开始上传视频图片: ${imageUrl}`);
// 第一步:获取上传令牌
const tokenResult = await request("post", "/mweb/v1/get_upload_token", refreshToken, {
data: {
scene: 2, // AIGC 图片上传场景
},
});
const { access_key_id, secret_access_key, session_token, service_id } = tokenResult;
if (!access_key_id || !secret_access_key || !session_token) {
throw new Error("获取上传令牌失败");
}
const actualServiceId = service_id || "tb4s082cfz";
logger.info(`获取上传令牌成功: service_id=${actualServiceId}`);
// 下载图片数据
const imageResponse = await fetch(imageUrl);
if (!imageResponse.ok) {
throw new Error(`下载图片失败: ${imageResponse.status}`);
}
const imageBuffer = await imageResponse.arrayBuffer();
const fileSize = imageBuffer.byteLength;
const crc32 = calculateCRC32(imageBuffer);
logger.info(`图片下载完成: 大小=${fileSize}字节, CRC32=${crc32}`);
// 第二步:申请图片上传权限
const now = new Date();
const timestamp = now.toISOString().replace(/[:\-]/g, '').replace(/\.\d{3}Z$/, 'Z');
const randomStr = Math.random().toString(36).substring(2, 12);
const applyUrl = `https://imagex.bytedanceapi.com/?Action=ApplyImageUpload&Version=2018-08-01&ServiceId=${actualServiceId}&FileSize=${fileSize}&s=${randomStr}`;
const requestHeaders = {
'x-amz-date': timestamp,
'x-amz-security-token': session_token
};
const authorization = createSignature('GET', applyUrl, requestHeaders, access_key_id, secret_access_key, session_token);
logger.info(`申请上传权限: ${applyUrl}`);
const applyResponse = await fetch(applyUrl, {
method: 'GET',
headers: {
'accept': '*/*',
'accept-language': 'zh-CN,zh;q=0.9',
'authorization': authorization,
'origin': 'https://jimeng.jianying.com',
'referer': 'https://jimeng.jianying.com/ai-tool/video/generate',
'sec-ch-ua': '"Not A(Brand";v="8", "Chromium";v="132", "Google Chrome";v="132"',
'sec-ch-ua-mobile': '?0',
'sec-ch-ua-platform': '"Windows"',
'sec-fetch-dest': 'empty',
'sec-fetch-mode': 'cors',
'sec-fetch-site': 'cross-site',
'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36',
'x-amz-date': timestamp,
'x-amz-security-token': session_token,
},
});
if (!applyResponse.ok) {
const errorText = await applyResponse.text();
throw new Error(`申请上传权限失败: ${applyResponse.status} - ${errorText}`);
}
const applyResult = await applyResponse.json();
if (applyResult?.ResponseMetadata?.Error) {
throw new Error(`申请上传权限失败: ${JSON.stringify(applyResult.ResponseMetadata.Error)}`);
}
logger.info(`申请上传权限成功`);
// 解析上传信息
const uploadAddress = applyResult?.Result?.UploadAddress;
if (!uploadAddress || !uploadAddress.StoreInfos || !uploadAddress.UploadHosts) {
throw new Error(`获取上传地址失败: ${JSON.stringify(applyResult)}`);
}
const storeInfo = uploadAddress.StoreInfos[0];
const uploadHost = uploadAddress.UploadHosts[0];
const auth = storeInfo.Auth;
const uploadUrl = `https://${uploadHost}/upload/v1/${storeInfo.StoreUri}`;
const imageId = storeInfo.StoreUri.split('/').pop();
logger.info(`准备上传图片: imageId=${imageId}, uploadUrl=${uploadUrl}`);
// 第三步:上传图片文件
const uploadResponse = await fetch(uploadUrl, {
method: 'POST',
headers: {
'Accept': '*/*',
'Accept-Language': 'zh-CN,zh;q=0.9',
'Authorization': auth,
'Connection': 'keep-alive',
'Content-CRC32': crc32,
'Content-Disposition': 'attachment; filename="undefined"',
'Content-Type': 'application/octet-stream',
'Origin': 'https://jimeng.jianying.com',
'Referer': 'https://jimeng.jianying.com/ai-tool/video/generate',
'Sec-Fetch-Dest': 'empty',
'Sec-Fetch-Mode': 'cors',
'Sec-Fetch-Site': 'cross-site',
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36',
'X-Storage-U': '704135154117550',
},
body: imageBuffer,
});
if (!uploadResponse.ok) {
const errorText = await uploadResponse.text();
throw new Error(`图片上传失败: ${uploadResponse.status} - ${errorText}`);
}
logger.info(`图片文件上传成功`);
// 第四步:提交上传
const commitUrl = `https://imagex.bytedanceapi.com/?Action=CommitImageUpload&Version=2018-08-01&ServiceId=${actualServiceId}`;
const commitTimestamp = new Date().toISOString().replace(/[:\-]/g, '').replace(/\.\d{3}Z$/, 'Z');
const commitPayload = JSON.stringify({
SessionKey: uploadAddress.SessionKey,
SuccessActionStatus: "200"
});
const payloadHash = crypto.createHash('sha256').update(commitPayload, 'utf8').digest('hex');
const commitRequestHeaders = {
'x-amz-date': commitTimestamp,
'x-amz-security-token': session_token,
'x-amz-content-sha256': payloadHash
};
const commitAuthorization = createSignature('POST', commitUrl, commitRequestHeaders, access_key_id, secret_access_key, session_token, commitPayload);
const commitResponse = await fetch(commitUrl, {
method: 'POST',
headers: {
'accept': '*/*',
'accept-language': 'zh-CN,zh;q=0.9',
'authorization': commitAuthorization,
'content-type': 'application/json',
'origin': 'https://jimeng.jianying.com',
'referer': 'https://jimeng.jianying.com/ai-tool/video/generate',
'sec-ch-ua': '"Not A(Brand";v="8", "Chromium";v="132", "Google Chrome";v="132"',
'sec-ch-ua-mobile': '?0',
'sec-ch-ua-platform': '"Windows"',
'sec-fetch-dest': 'empty',
'sec-fetch-mode': 'cors',
'sec-fetch-site': 'cross-site',
'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36',
'x-amz-date': commitTimestamp,
'x-amz-security-token': session_token,
'x-amz-content-sha256': payloadHash,
},
body: commitPayload,
});
if (!commitResponse.ok) {
const errorText = await commitResponse.text();
throw new Error(`提交上传失败: ${commitResponse.status} - ${errorText}`);
}
const commitResult = await commitResponse.json();
if (commitResult?.ResponseMetadata?.Error) {
throw new Error(`提交上传失败: ${JSON.stringify(commitResult.ResponseMetadata.Error)}`);
}
if (!commitResult?.Result?.Results || commitResult.Result.Results.length === 0) {
throw new Error(`提交上传响应缺少结果: ${JSON.stringify(commitResult)}`);
}
const uploadResult = commitResult.Result.Results[0];
if (uploadResult.UriStatus !== 2000) {
throw new Error(`图片上传状态异常: UriStatus=${uploadResult.UriStatus}`);
}
const fullImageUri = uploadResult.Uri;
// 验证图片信息
const pluginResult = commitResult.Result?.PluginResult?.[0];
if (pluginResult && pluginResult.ImageUri) {
logger.info(`视频图片上传完成: ${pluginResult.ImageUri}`);
return pluginResult.ImageUri;
}
logger.info(`视频图片上传完成: ${fullImageUri}`);
return fullImageUri;
} catch (error) {
logger.error(`视频图片上传失败: ${error.message}`);
throw error;
}
}
// 从Buffer上传视频图片
async function uploadImageBufferForVideo(buffer: Buffer, refreshToken: string): Promise<string> {
try {
logger.info(`开始从Buffer上传视频图片,大小: ${buffer.length}字节`);
// 第一步:获取上传令牌
const tokenResult = await request("post", "/mweb/v1/get_upload_token", refreshToken, {
data: {
scene: 2,
},
});
const { access_key_id, secret_access_key, session_token, service_id } = tokenResult;
if (!access_key_id || !secret_access_key || !session_token) {
throw new Error("获取上传令牌失败");
}
const actualServiceId = service_id || "tb4s082cfz";
logger.info(`获取上传令牌成功: service_id=${actualServiceId}`);
const fileSize = buffer.length;
const crc32 = calculateCRC32(buffer.buffer.slice(buffer.byteOffset, buffer.byteOffset + buffer.byteLength));
logger.info(`Buffer大小: ${fileSize}字节, CRC32=${crc32}`);
// 第二步:申请图片上传权限
const now = new Date();
const timestamp = now.toISOString().replace(/[:\-]/g, '').replace(/\.\d{3}Z$/, 'Z');
const randomStr = Math.random().toString(36).substring(2, 12);
const applyUrl = `https://imagex.bytedanceapi.com/?Action=ApplyImageUpload&Version=2018-08-01&ServiceId=${actualServiceId}&FileSize=${fileSize}&s=${randomStr}`;
const requestHeaders = {
'x-amz-date': timestamp,
'x-amz-security-token': session_token
};
const authorization = createSignature('GET', applyUrl, requestHeaders, access_key_id, secret_access_key, session_token);
const applyResponse = await fetch(applyUrl, {
method: 'GET',
headers: {
'accept': '*/*',
'accept-language': 'zh-CN,zh;q=0.9',
'authorization': authorization,
'origin': 'https://jimeng.jianying.com',
'referer': 'https://jimeng.jianying.com/ai-tool/video/generate',
'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36',
'x-amz-date': timestamp,
'x-amz-security-token': session_token,
},
});
if (!applyResponse.ok) {
const errorText = await applyResponse.text();
throw new Error(`申请上传权限失败: ${applyResponse.status} - ${errorText}`);
}
const applyResult = await applyResponse.json();
if (applyResult?.ResponseMetadata?.Error) {
throw new Error(`申请上传权限失败: ${JSON.stringify(applyResult.ResponseMetadata.Error)}`);
}
const uploadAddress = applyResult?.Result?.UploadAddress;
if (!uploadAddress || !uploadAddress.StoreInfos || !uploadAddress.UploadHosts) {
throw new Error(`获取上传地址失败: ${JSON.stringify(applyResult)}`);
}
const storeInfo = uploadAddress.StoreInfos[0];
const uploadHost = uploadAddress.UploadHosts[0];
const auth = storeInfo.Auth;
const uploadUrl = `https://${uploadHost}/upload/v1/${storeInfo.StoreUri}`;
// 第三步:上传图片文件
const uploadResponse = await fetch(uploadUrl, {
method: 'POST',
headers: {
'Accept': '*/*',
'Authorization': auth,
'Content-CRC32': crc32,
'Content-Disposition': 'attachment; filename="undefined"',
'Content-Type': 'application/octet-stream',
'Origin': 'https://jimeng.jianying.com',
'Referer': 'https://jimeng.jianying.com/ai-tool/video/generate',
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36',
},
body: buffer,
});
if (!uploadResponse.ok) {
const errorText = await uploadResponse.text();
throw new Error(`图片上传失败: ${uploadResponse.status} - ${errorText}`);
}
logger.info(`Buffer图片文件上传成功`);
// 第四步:提交上传
const commitUrl = `https://imagex.bytedanceapi.com/?Action=CommitImageUpload&Version=2018-08-01&ServiceId=${actualServiceId}`;
const commitTimestamp = new Date().toISOString().replace(/[:\-]/g, '').replace(/\.\d{3}Z$/, 'Z');
const commitPayload = JSON.stringify({
SessionKey: uploadAddress.SessionKey,
SuccessActionStatus: "200"
});
const payloadHash = crypto.createHash('sha256').update(commitPayload, 'utf8').digest('hex');
const commitRequestHeaders = {
'x-amz-date': commitTimestamp,
'x-amz-security-token': session_token,
'x-amz-content-sha256': payloadHash
};
const commitAuthorization = createSignature('POST', commitUrl, commitRequestHeaders, access_key_id, secret_access_key, session_token, commitPayload);
const commitResponse = await fetch(commitUrl, {
method: 'POST',
headers: {
'accept': '*/*',
'authorization': commitAuthorization,
'content-type': 'application/json',
'origin': 'https://jimeng.jianying.com',
'referer': 'https://jimeng.jianying.com/ai-tool/video/generate',
'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36',
'x-amz-date': commitTimestamp,
'x-amz-security-token': session_token,
'x-amz-content-sha256': payloadHash,
},
body: commitPayload,
});
if (!commitResponse.ok) {
const errorText = await commitResponse.text();
throw new Error(`提交上传失败: ${commitResponse.status} - ${errorText}`);
}
const commitResult = await commitResponse.json();
if (commitResult?.ResponseMetadata?.Error) {
throw new Error(`提交上传失败: ${JSON.stringify(commitResult.ResponseMetadata.Error)}`);
}
if (!commitResult?.Result?.Results || commitResult.Result.Results.length === 0) {
throw new Error(`提交上传响应缺少结果: ${JSON.stringify(commitResult)}`);
}
const uploadResult = commitResult.Result.Results[0];
if (uploadResult.UriStatus !== 2000) {
throw new Error(`图片上传状态异常: UriStatus=${uploadResult.UriStatus}`);
}
const fullImageUri = uploadResult.Uri;
const pluginResult = commitResult.Result?.PluginResult?.[0];
if (pluginResult && pluginResult.ImageUri) {
logger.info(`Buffer视频图片上传完成: ${pluginResult.ImageUri}`);
return pluginResult.ImageUri;
}
logger.info(`Buffer视频图片上传完成: ${fullImageUri}`);
return fullImageUri;
} catch (error) {
logger.error(`Buffer视频图片上传失败: ${error.message}`);
throw error;
}
}
/**
* 通过 get_local_item_list API 获取高质量视频下载URL
* 浏览器下载视频时使用此API获取高码率版本(~6297 vs 预览版 ~1152)
*
* @param itemId 视频项目ID
* @param refreshToken 刷新令牌
* @returns 高质量视频URL,失败时返回 null
*/
async function fetchHighQualityVideoUrl(itemId: string, refreshToken: string): Promise<string | null> {
try {
logger.info(`尝试获取高质量视频下载URL,item_id: ${itemId}`);
const result = await request("post", "/mweb/v1/get_local_item_list", refreshToken, {
data: {
item_id_list: [itemId],
pack_item_opt: {
scene: 1,
need_data_integrity: true,
},
is_for_video_download: true,
},
});
const responseStr = JSON.stringify(result);
logger.info(`get_local_item_list 响应大小: ${responseStr.length} 字符`);
// 策略1: 从结构化字段中提取视频URL
const itemList = result.item_list || result.local_item_list || [];
if (itemList.length > 0) {
const item = itemList[0];
const videoUrl =
item?.video?.transcoded_video?.origin?.video_url ||
item?.video?.download_url ||
item?.video?.play_url ||
item?.video?.url;
if (videoUrl) {
logger.info(`从get_local_item_list结构化字段获取到高清视频URL: ${videoUrl}`);
return videoUrl;
}
}
// 策略2: 正则匹配 dreamnia.jimeng.com 高质量URL
const hqUrlMatch = responseStr.match(/https:\/\/v[0-9]+-dreamnia\.jimeng\.com\/[^"\s\\]+/);
if (hqUrlMatch && hqUrlMatch[0]) {
logger.info(`正则提取到高质量视频URL (dreamnia): ${hqUrlMatch[0]}`);
return hqUrlMatch[0];
}
// 策略3: 匹配任何 jimeng.com 域名的视频URL
const jimengUrlMatch = responseStr.match(/https:\/\/v[0-9]+-[^"\\]*\.jimeng\.com\/[^"\s\\]+/);
if (jimengUrlMatch && jimengUrlMatch[0]) {
logger.info(`正则提取到jimeng视频URL: ${jimengUrlMatch[0]}`);
return jimengUrlMatch[0];
}
// 策略4: 匹配任何视频URL(兜底)
const anyVideoUrlMatch = responseStr.match(/https:\/\/v[0-9]+-[^"\\]*\.(vlabvod|jimeng)\.com\/[^"\s\\]+/);
if (anyVideoUrlMatch && anyVideoUrlMatch[0]) {
logger.info(`从get_local_item_list提取到视频URL: ${anyVideoUrlMatch[0]}`);
return anyVideoUrlMatch[0];
}
logger.warn(`未能从get_local_item_list响应中提取到视频URL`);
return null;
} catch (error) {
logger.warn(`获取高质量视频下载URL失败: ${error.message}`);
return null;
}
}
/**
* 生成视频
*
* @param _model 模型名称
* @param prompt 提示词
* @param options 选项
* @param refreshToken 刷新令牌
* @returns 视频URL
*/
export async function generateVideo(
_model: string,
prompt: string,
{
ratio = "1:1",
resolution = "720p",
duration = 5,
filePaths = [],
files = [],
}: {
ratio?: string;
resolution?: string;
duration?: number;
filePaths?: string[];
files?: any[];
},
refreshToken: string
) {
const model = getModel(_model);
// 解析分辨率参数获取实际的宽高
const { width, height } = resolveVideoResolution(resolution, ratio);
logger.info(`使用模型: ${_model} 映射模型: ${model} ${width}x${height} (${ratio}@${resolution}) 时长: ${duration}秒`);
// 检查积分
const { totalCredit } = await getCredit(refreshToken);
if (totalCredit <= 0)
await receiveCredit(refreshToken);
// 处理首帧和尾帧图片
let first_frame_image = undefined;
let end_frame_image = undefined;
// 处理上传的文件(multipart/form-data)
if (files && files.length > 0) {
let uploadIDs: string[] = [];
logger.info(`开始处理 ${files.length} 个上传文件用于视频生成`);
for (let i = 0; i < files.length; i++) {
const file = files[i];
if (!file || !file.filepath) {
logger.warn(`第 ${i + 1} 个文件无效,跳过`);
continue;
}
try {
logger.info(`开始上传第 ${i + 1} 个文件: ${file.originalFilename || file.filepath}`);
// 读取文件内容并上传
const buffer = fs.readFileSync(file.filepath);
const imageUri = await uploadImageBufferForVideo(buffer, refreshToken);
if (imageUri) {
uploadIDs.push(imageUri);
logger.info(`第 ${i + 1} 个文件上传成功: ${imageUri}`);
} else {
logger.error(`第 ${i + 1} 个文件上传失败: 未获取到 image_uri`);
}
} catch (error) {
logger.error(`第 ${i + 1} 个文件上传失败: ${error.message}`);
if (i === 0) {
logger.error(`首帧文件上传失败,停止视频生成以避免浪费积分`);
throw new APIException(EX.API_REQUEST_FAILED, `首帧文件上传失败: ${error.message}`);
} else {
logger.warn(`第 ${i + 1} 个文件上传失败,将跳过此文件继续处理`);
}
}
}
logger.info(`文件上传完成,成功上传 ${uploadIDs.length} 个文件`);
if (uploadIDs.length === 0) {
logger.error(`所有文件上传失败,停止视频生成以避免浪费积分`);
throw new APIException(EX.API_REQUEST_FAILED, '所有文件上传失败,请检查文件是否有效');
}
// 构建首帧图片对象
if (uploadIDs[0]) {
first_frame_image = {
format: "",
height: height,
id: util.uuid(),
image_uri: uploadIDs[0],
name: "",
platform_type: 1,
source_from: "upload",
type: "image",
uri: uploadIDs[0],
width: width,
};
logger.info(`设置首帧图片: ${uploadIDs[0]}`);
}
// 构建尾帧图片对象
if (uploadIDs[1]) {
end_frame_image = {
format: "",
height: height,
id: util.uuid(),
image_uri: uploadIDs[1],
name: "",
platform_type: 1,
source_from: "upload",
type: "image",
uri: uploadIDs[1],
width: width,
};
logger.info(`设置尾帧图片: ${uploadIDs[1]}`);
}
} else if (filePaths && filePaths.length > 0) {
let uploadIDs: string[] = [];
logger.info(`开始上传 ${filePaths.length} 张图片用于视频生成`);
for (let i = 0; i < filePaths.length; i++) {
const filePath = filePaths[i];
if (!filePath) {
logger.warn(`第 ${i + 1} 张图片路径为空,跳过`);
continue;
}
try {
logger.info(`开始上传第 ${i + 1} 张图片: ${filePath}`);
// 使用Amazon S3上传方式
const imageUri = await uploadImageForVideo(filePath, refreshToken);
if (imageUri) {
uploadIDs.push(imageUri);
logger.info(`第 ${i + 1} 张图片上传成功: ${imageUri}`);
} else {
logger.error(`第 ${i + 1} 张图片上传失败: 未获取到 image_uri`);
}
} catch (error) {
logger.error(`第 ${i + 1} 张图片上传失败: ${error.message}`);
// 图片上传失败时,停止视频生成避免浪费积分
if (i === 0) {
logger.error(`首帧图片上传失败,停止视频生成以避免浪费积分`);
throw new APIException(EX.API_REQUEST_FAILED, `首帧图片上传失败: ${error.message}`);
} else {
logger.warn(`第 ${i + 1} 张图片上传失败,将跳过此图片继续处理`);
}
}
}
logger.info(`图片上传完成,成功上传 ${uploadIDs.length} 张图片`);
// 如果没有成功上传任何图片,停止视频生成
if (uploadIDs.length === 0) {
logger.error(`所有图片上传失败,停止视频生成以避免浪费积分`);
throw new APIException(EX.API_REQUEST_FAILED, '所有图片上传失败,请检查图片URL是否有效');
}
// 构建首帧图片对象
if (uploadIDs[0]) {
first_frame_image = {
format: "",
height: height,
id: util.uuid(),
image_uri: uploadIDs[0],
name: "",
platform_type: 1,
source_from: "upload",
type: "image",
uri: uploadIDs[0],
width: width,
};
logger.info(`设置首帧图片: ${uploadIDs[0]}`);
}
// 构建尾帧图片对象
if (uploadIDs[1]) {
end_frame_image = {
format: "",
height: height,
id: util.uuid(),
image_uri: uploadIDs[1],
name: "",
platform_type: 1,
source_from: "upload",
type: "image",
uri: uploadIDs[1],
width: width,
};
logger.info(`设置尾帧图片: ${uploadIDs[1]}`);
} else if (filePaths.length > 1) {
logger.warn(`第二张图片上传失败或未提供,将仅使用首帧图片`);
}
} else {
logger.info(`未提供图片文件,将进行纯文本视频生成`);
}
const componentId = util.uuid();
const metricsExtra = JSON.stringify({
"enterFrom": "click",
"isDefaultSeed": 1,
"promptSource": "custom",
"isRegenerate": false,
"originSubmitId": util.uuid(),
});
// 获取当前模型的 draft 版本
const draftVersion = MODEL_DRAFT_VERSIONS[_model] || DEFAULT_DRAFT_VERSION;
// 计算视频宽高比
const gcd = (a: number, b: number): number => b === 0 ? a : gcd(b, a % b);
const divisor = gcd(width, height);
const aspectRatio = `${width / divisor}:${height / divisor}`;
// 构建请求参数
const { aigc_data } = await request(
"post",
"/mweb/v1/aigc_draft/generate",
refreshToken,
{
params: {
aigc_features: "app_lip_sync",
web_version: "6.6.0",
da_version: draftVersion,
},
data: {
"extend": {
"root_model": end_frame_image ? MODEL_MAP['jimeng-video-3.0'] : model,
"m_video_commerce_info": {
benefit_type: "basic_video_operation_vgfm_v_three",
resource_id: "generate_video",
resource_id_type: "str",
resource_sub_type: "aigc"
},
"m_video_commerce_info_list": [{
benefit_type: "basic_video_operation_vgfm_v_three",
resource_id: "generate_video",
resource_id_type: "str",
resource_sub_type: "aigc"
}]
},
"submit_id": util.uuid(),
"metrics_extra": metricsExtra,
"draft_content": JSON.stringify({
"type": "draft",
"id": util.uuid(),
"min_version": "3.0.5",
"is_from_tsn": true,
"version": draftVersion,
"main_component_id": componentId,
"component_list": [{
"type": "video_base_component",
"id": componentId,
"min_version": "1.0.0",
"metadata": {
"type": "",
"id": util.uuid(),
"created_platform": 3,
"created_platform_version": "",
"created_time_in_ms": Date.now(),
"created_did": ""
},
"generate_type": "gen_video",
"aigc_mode": "workbench",
"abilities": {
"type": "",
"id": util.uuid(),
"gen_video": {
"id": util.uuid(),
"type": "",
"text_to_video_params": {
"type": "",
"id": util.uuid(),
"model_req_key": model,
"priority": 0,
"seed": Math.floor(Math.random() * 100000000) + 2500000000,
"video_aspect_ratio": aspectRatio,
"video_gen_inputs": [{
duration_ms: duration * 1000,
first_frame_image: first_frame_image,
end_frame_image: end_frame_image,
fps: 24,
id: util.uuid(),
min_version: "3.0.5",
prompt: prompt,
resolution: resolution,
type: "",
video_mode: 2
}]
},
"video_task_extra": metricsExtra,
}
}
}],
}),
http_common_info: {
aid: DEFAULT_ASSISTANT_ID,
},
},
}
);
const historyId = aigc_data.history_record_id;
if (!historyId)
throw new APIException(EX.API_IMAGE_GENERATION_FAILED, "记录ID不存在");
// 轮询获取结果
let status = 20, failCode, item_list = [];
let retryCount = 0;
const maxRetries = 60; // 增加重试次数,支持约20分钟的总重试时间
// 首次查询前等待更长时间,让服务器有时间处理请求
await new Promise((resolve) => setTimeout(resolve, 5000));
logger.info(`开始轮询视频生成结果,历史ID: ${historyId},最大重试次数: ${maxRetries}`);
logger.info(`即梦官网API地址: https://jimeng.jianying.com/mweb/v1/get_history_by_ids`);
logger.info(`视频生成请求已发送,请同时在即梦官网查看: https://jimeng.jianying.com/ai-tool/video/generate`);
while (status === 20 && retryCount < maxRetries) {
try {
// 构建请求URL和参数
const requestUrl = "/mweb/v1/get_history_by_ids";
const requestData = {
history_ids: [historyId],
};
// 尝试两种不同的API请求方式
let result;
let useAlternativeApi = retryCount > 10 && retryCount % 2 === 0; // 在重试10次后,每隔一次尝试备用API
if (useAlternativeApi) {
// 备用API请求方式
logger.info(`尝试备用API请求方式,URL: ${requestUrl}, 历史ID: ${historyId}, 重试次数: ${retryCount + 1}/${maxRetries}`);
const alternativeRequestData = {
history_record_ids: [historyId],
};
result = await request("post", "/mweb/v1/get_history_records", refreshToken, {
data: alternativeRequestData,
});
logger.info(`备用API响应摘要: ${JSON.stringify(result).substring(0, 500)}...`);
} else {
// 标准API请求方式
logger.info(`发送请求获取视频生成结果,URL: ${requestUrl}, 历史ID: ${historyId}, 重试次数: ${retryCount + 1}/${maxRetries}`);
result = await request("post", requestUrl, refreshToken, {
data: requestData,
});
const responseStr = JSON.stringify(result);
logger.info(`标准API响应摘要: ${responseStr.substring(0, 300)}...`);
}
// 检查结果是否有效
let historyData;
if (useAlternativeApi && result.history_records && result.history_records.length > 0) {
// 处理备用API返回的数据格式
historyData = result.history_records[0];
logger.info(`从备用API获取到历史记录`);
} else if (result.history_list && result.history_list.length > 0) {
// 处理标准API返回的数据格式
historyData = result.history_list[0];
logger.info(`从标准API获取到历史记录`);
} else if (result[historyId]) {
// get_history_by_ids 返回数据以 historyId 为键(如 result["8918159809292"])
historyData = result[historyId];
logger.info(`从historyId键获取到历史记录`);
} else {
// 所有API都没有返回有效数据
logger.warn(`历史记录不存在,重试中 (${retryCount + 1}/${maxRetries})... 历史ID: ${historyId}`);
logger.info(`请同时在即梦官网检查视频是否已生成: https://jimeng.jianying.com/ai-tool/video/generate`);
retryCount++;
// 增加重试间隔时间,但设置上限为30秒
const waitTime = Math.min(2000 * (retryCount + 1), 30000);
logger.info(`等待 ${waitTime}ms 后进行第 ${retryCount + 1} 次重试`);
await new Promise((resolve) => setTimeout(resolve, waitTime));
continue;
}
// 记录获取到的结果详情
logger.info(`获取到历史记录结果: ${JSON.stringify(historyData)}`);
// 从历史数据中提取状态和结果
status = historyData.status;
failCode = historyData.fail_code;
item_list = historyData.item_list || [];
logger.info(`视频生成状态: ${status}, 失败代码: ${failCode || '无'}, 项目列表长度: ${item_list.length}`);
// 如果有视频URL,提前记录
let tempVideoUrl = item_list?.[0]?.video?.transcoded_video?.origin?.video_url;
if (!tempVideoUrl) {
// 尝试从其他可能的路径获取
tempVideoUrl = item_list?.[0]?.video?.play_url ||
item_list?.[0]?.video?.download_url ||
item_list?.[0]?.video?.url;
}
if (tempVideoUrl) {
logger.info(`检测到视频URL: ${tempVideoUrl}`);
}
if (status === 30) {
const error = failCode === 2038
? new APIException(EX.API_CONTENT_FILTERED, "内容被过滤")
: new APIException(EX.API_IMAGE_GENERATION_FAILED, `生成失败,错误码: ${failCode}`);
// 添加历史ID到错误对象,以便在chat.ts中显示
error.historyId = historyId;
throw error;
}
// 如果状态仍在处理中,等待后继续
if (status === 20) {
const waitTime = 2000 * (Math.min(retryCount + 1, 5)); // 随着重试次数增加等待时间,但最多10秒
logger.info(`视频生成中,状态码: ${status},等待 ${waitTime}ms 后继续查询`);
await new Promise((resolve) => setTimeout(resolve, waitTime));
}
} catch (error) {
logger.error(`轮询视频生成结果出错: ${error.message}`);
retryCount++;
await new Promise((resolve) => setTimeout(resolve, 2000 * (retryCount + 1)));
}
}
// 如果达到最大重试次数仍未成功
if (retryCount >= maxRetries && status === 20) {
logger.error(`视频生成超时,已尝试 ${retryCount} 次,总耗时约 ${Math.floor(retryCount * 2000 / 1000 / 60)} 分钟`);
const error = new APIException(EX.API_IMAGE_GENERATION_FAILED, "获取视频生成结果超时,请稍后在即梦官网查看您的视频");
// 添加历史ID到错误对象,以便在chat.ts中显示
error.historyId = historyId;
throw error;
}
// 尝试通过 get_local_item_list 获取高质量视频下载URL
const itemId = item_list?.[0]?.item_id
|| item_list?.[0]?.id
|| item_list?.[0]?.local_item_id
|| item_list?.[0]?.common_attr?.id;
if (itemId) {
try {
const hqVideoUrl = await fetchHighQualityVideoUrl(String(itemId), refreshToken);
if (hqVideoUrl) {
logger.info(`视频生成成功(高质量),URL: ${hqVideoUrl}`);
return hqVideoUrl;
}
} catch (error) {
logger.warn(`获取高质量视频URL失败,将使用预览URL作为回退: ${error.message}`);
}
} else {
logger.warn(`未能从item_list中提取item_id,将使用预览URL。item_list[0]键: ${item_list?.[0] ? Object.keys(item_list[0]).join(', ') : '无'}`);
}
// 回退:提取预览视频URL
let videoUrl = item_list?.[0]?.video?.transcoded_video?.origin?.video_url;
// 如果通过常规路径无法获取视频URL,尝试其他可能的路径
if (!videoUrl) {
// 尝试从item_list中的其他可能位置获取
if (item_list?.[0]?.video?.play_url) {
videoUrl = item_list[0].video.play_url;
logger.info(`从play_url获取到视频URL: ${videoUrl}`);
} else if (item_list?.[0]?.video?.download_url) {
videoUrl = item_list[0].video.download_url;
logger.info(`从download_url获取到视频URL: ${videoUrl}`);
} else if (item_list?.[0]?.video?.url) {
videoUrl = item_list[0].video.url;
logger.info(`从url获取到视频URL: ${videoUrl}`);
} else {
// 如果仍然找不到,记录错误并抛出异常
logger.error(`未能获取视频URL,item_list: ${JSON.stringify(item_list)}`);
const error = new APIException(EX.API_IMAGE_GENERATION_FAILED, "未能获取视频URL,请稍后在即梦官网查看");
// 添加历史ID到错误对象,以便在chat.ts中显示
error.historyId = historyId;
throw error;
}
}
logger.info(`视频生成成功,URL: ${videoUrl}`);
return videoUrl;
}
/**
* Seedance 2.0 多图智能视频生成
* 支持多张图片与文本混合生成视频
*
* @param _model 模型名称
* @param prompt 提示词(支持 @1 @2 等引用图片占位符)
* @param options 选项
* @param refreshToken 刷新令牌
* @returns 视频URL
*/
export async function generateSeedanceVideo(
_model: string,
prompt: string,
{
ratio = "4:3",
resolution = "720p",
duration = 4,
filePaths = [],
files = [],
}: {
ratio?: string;
resolution?: string;
duration?: number;
filePaths?: string[];
files?: any[];
},
refreshToken: string
) {
const model = getModel(_model);
const benefitType = SEEDANCE_BENEFIT_TYPE_MAP[_model] || "dreamina_video_seedance_20_pro";
// Seedance 2.0 默认时长为4秒
const actualDuration = duration || 4;
// 解析分辨率参数获取实际的宽高
const { width, height } = resolveVideoResolution(resolution, ratio);
logger.info(`Seedance 2.0 生成: 模型=${_model} 映射=${model} ${width}x${height} (${ratio}@${resolution}) 时长=${actualDuration}秒`);
// 检查积分
const { totalCredit } = await getCredit(refreshToken);
if (totalCredit <= 0)
await receiveCredit(refreshToken);
// 上传所有图片
let uploadedImages: Array<{uri: string, width: number, height: number}> = [];
// 处理上传的文件(multipart/form-data)
if (files && files.length > 0) {
logger.info(`Seedance: 开始处理 ${files.length} 个上传文件`);
for (let i = 0; i < files.length; i++) {
const file = files[i];
if (!file || !file.filepath) {
logger.warn(`Seedance: 第 ${i + 1} 个文件无效,跳过`);
continue;
}
try {
logger.info(`Seedance: 开始上传第 ${i + 1} 个文件: ${file.originalFilename || file.filepath}`);
const buffer = fs.readFileSync(file.filepath);
const imageUri = await uploadImageBufferForVideo(buffer, refreshToken);
if (imageUri) {
uploadedImages.push({ uri: imageUri, width, height });
logger.info(`Seedance: 第 ${i + 1} 个文件上传成功: ${imageUri}`);
}
} catch (error) {
logger.error(`Seedance: 第 ${i + 1} 个文件上传失败: ${error.message}`);
if (i === 0) {
throw new APIException(EX.API_REQUEST_FAILED, `首张图片上传失败: ${error.message}`);
}
}
}
} else if (filePaths && filePaths.length > 0) {
logger.info(`Seedance: 开始上传 ${filePaths.length} 张图片`);
for (let i = 0; i < filePaths.length; i++) {
const filePath = filePaths[i];
if (!filePath) continue;
try {
logger.info(`Seedance: 开始上传第 ${i + 1} 张图片: ${filePath}`);
const imageUri = await uploadImageForVideo(filePath, refreshToken);
if (imageUri) {
uploadedImages.push({ uri: imageUri, width, height });
logger.info(`Seedance: 第 ${i + 1} 张图片上传成功: ${imageUri}`);
}
} catch (error) {
logger.error(`Seedance: 第 ${i + 1} 张图片上传失败: ${error.message}`);
if (i === 0) {
throw new APIException(EX.API_REQUEST_FAILED, `首张图片上传失败: ${error.message}`);
}
}
}
}
if (uploadedImages.length === 0) {
throw new APIException(EX.API_REQUEST_FAILED, 'Seedance 2.0 需要至少一张图片');
}
logger.info(`Seedance: 成功上传 ${uploadedImages.length} 张图片`);
// 构建 material_list(所有图片)
const materialList = uploadedImages.map((img, index) => ({
type: "",
id: util.uuid(),
material_type: "image",
image_info: {
type: "image",
id: util.uuid(),
source_from: "upload",
platform_type: 1,
name: "",
image_uri: img.uri,
width: img.width,
height: img.height,
format: "",
uri: img.uri,
}
}));
// 解析 prompt 中的图片占位符(@1, @2 等)并构建 meta_list
const metaList = buildMetaListFromPrompt(prompt, uploadedImages.length);
const componentId = util.uuid();
const submitId = util.uuid();
const draftVersion = MODEL_DRAFT_VERSIONS[_model] || "3.3.9";
// 计算视频宽高比
const gcd = (a: number, b: number): number => b === 0 ? a : gcd(b, a % b);
const divisor = gcd(width, height);
const aspectRatio = `${width / divisor}:${height / divisor}`;
const metricsExtra = JSON.stringify({
isDefaultSeed: 1,
originSubmitId: submitId,
isRegenerate: false,
enterFrom: "click",
position: "page_bottom_box",
functionMode: "omni_reference",
sceneOptions: JSON.stringify([{
type: "video",
scene: "BasicVideoGenerateButton",
modelReqKey: model,
videoDuration: actualDuration,
reportParams: {
enterSource: "generate",
vipSource: "generate",
extraVipFunctionKey: model,
useVipFunctionDetailsReporterHoc: true
},
materialTypes: [1]
}])
});
// 构建 Seedance 2.0 专用请求
const { aigc_data } = await request(
"post",
"/mweb/v1/aigc_draft/generate",
refreshToken,
{
params: {
aigc_features: "app_lip_sync",
web_version: "7.5.0",
da_version: draftVersion,
},
data: {
extend: {
root_model: model,
m_video_commerce_info: {
benefit_type: benefitType,
resource_id: "generate_video",
resource_id_type: "str",
resource_sub_type: "aigc"
},
m_video_commerce_info_list: [{
benefit_type: benefitType,
resource_id: "generate_video",
resource_id_type: "str",
resource_sub_type: "aigc"
}]
},
submit_id: submitId,
metrics_extra: metricsExtra,
draft_content: JSON.stringify({
type: "draft",
id: util.uuid(),
min_version: draftVersion,
min_features: ["AIGC_Video_UnifiedEdit"],
is_from_tsn: true,
version: draftVersion,
main_component_id: componentId,
component_list: [{
type: "video_base_component",
id: componentId,
min_version: "1.0.0",
aigc_mode: "workbench",
metadata: {
type: "",
id: util.uuid(),
created_platform: 3,
created_platform_version: "",
created_time_in_ms: String(Date.now()),
created_did: ""
},
generate_type: "gen_video",
abilities: {
type: "",
id: util.uuid(),
gen_video: {
type: "",
id: util.uuid(),
text_to_video_params: {
type: "",
id: util.uuid(),
video_gen_inputs: [{
type: "",
id: util.uuid(),
min_version: draftVersion,
prompt: "", // Seedance 2.0 prompt 在 meta_list 中
video_mode: 2,
fps: 24,
duration_ms: actualDuration * 1000,
idip_meta_list: [],
unified_edit_input: {
type: "",
id: util.uuid(),
material_list: materialList,
meta_list: metaList
}
}],
video_aspect_ratio: aspectRatio,
seed: Math.floor(Math.random() * 1000000000),
model_req_key: model,
priority: 0
},
video_task_extra: metricsExtra
}
},
process_type: 1
}]
}),
http_common_info: {
aid: DEFAULT_ASSISTANT_ID,
},
},
}
);
const historyId = aigc_data.history_record_id;
if (!historyId)
throw new APIException(EX.API_IMAGE_GENERATION_FAILED, "记录ID不存在");
// 轮询获取结果(与普通视频相同的逻辑)
let status = 20, failCode, item_list = [];
let retryCount = 0;
const maxRetries = 60;
await new Promise((resolve) => setTimeout(resolve, 5000));
logger.info(`Seedance: 开始轮询视频生成结果,历史ID: ${historyId}`);
while (status === 20 && retryCount < maxRetries) {
try {
const result = await request("post", "/mweb/v1/get_history_by_ids", refreshToken, {
data: { history_ids: [historyId] },
});
const responseStr = JSON.stringify(result);
logger.info(`Seedance: 轮询响应摘要: ${responseStr.substring(0, 300)}...`);
// get_history_by_ids 返回的数据可能以 historyId 为键(如 result["8918159809292"]),
// 也可能在 result.history_list 数组中
let historyData = result.history_list?.[0] || result[historyId];
if (!historyData) {
retryCount++;
const waitTime = Math.min(2000 * (retryCount + 1), 30000);
await new Promise((resolve) => setTimeout(resolve, waitTime));
continue;
}
status = historyData.status;
failCode = historyData.fail_code;
item_list = historyData.item_list || [];
logger.info(`Seedance: 状态=${status}, 失败码=${failCode || '无'}`);
if (status === 30) {
const error = failCode === 2038
? new APIException(EX.API_CONTENT_FILTERED, "内容被过滤")
: new APIException(EX.API_IMAGE_GENERATION_FAILED, `生成失败,错误码: ${failCode}`);
error.historyId = historyId;
throw error;
}
if (status === 20) {
const waitTime = 2000 * Math.min(retryCount + 1, 5);
await new Promise((resolve) => setTimeout(resolve, waitTime));
}
retryCount++;
} catch (error) {
if (error instanceof APIException) throw error;
logger.error(`Seedance: 轮询出错: ${error.message}`);
retryCount++;
await new Promise((resolve) => setTimeout(resolve, 2000 * (retryCount + 1)));
}
}
if (retryCount >= maxRetries && status === 20) {
const error = new APIException(EX.API_IMAGE_GENERATION_FAILED, "视频生成超时");
error.historyId = historyId;
throw error;
}
// 尝试通过 get_local_item_list 获取高质量视频下载URL
const seedanceItemId = item_list?.[0]?.item_id
|| item_list?.[0]?.id
|| item_list?.[0]?.local_item_id
|| item_list?.[0]?.common_attr?.id;
if (seedanceItemId) {
try {
const hqVideoUrl = await fetchHighQualityVideoUrl(String(seedanceItemId), refreshToken);
if (hqVideoUrl) {
logger.info(`Seedance: 视频生成成功(高质量),URL: ${hqVideoUrl}`);
return hqVideoUrl;
}
} catch (error) {
logger.warn(`Seedance: 获取高质量视频URL失败,将使用预览URL作为回退: ${error.message}`);
}
} else {
logger.warn(`Seedance: 未能从item_list中提取item_id,将使用预览URL。item_list[0]键: ${item_list?.[0] ? Object.keys(item_list[0]).join(', ') : '无'}`);
}
// 回退:提取预览视频URL
let videoUrl = item_list?.[0]?.video?.transcoded_video?.origin?.video_url
|| item_list?.[0]?.video?.play_url
|| item_list?.[0]?.video?.download_url
|| item_list?.[0]?.video?.url;
if (!videoUrl) {
const error = new APIException(EX.API_IMAGE_GENERATION_FAILED, "未能获取视频URL");
error.historyId = historyId;
throw error;
}
logger.info(`Seedance: 视频生成成功,URL: ${videoUrl}`);
return videoUrl;
}
/**
* 解析 prompt 中的图片占位符并构建 meta_list
* 支持格式: "使用 @1 图片,@2 图片做动画" -> [text, image(0), text, image(1), text]
*/
function buildMetaListFromPrompt(prompt: string, imageCount: number): Array<{meta_type: string, text?: string, material_ref?: {material_idx: number}}> {
const metaList: Array<{meta_type: string, text?: string, material_ref?: {material_idx: number}}> = [];
// 匹配 @1, @2, @图1, @图2, @image1 等格式
const placeholderRegex = /@(?:图|image)?(\d+)/gi;
let lastIndex = 0;
let match;
while ((match = placeholderRegex.exec(prompt)) !== null) {
// 添加占位符前的文本
if (match.index > lastIndex) {
const textBefore = prompt.substring(lastIndex, match.index);
if (textBefore.trim()) {
metaList.push({ meta_type: "text", text: textBefore });
}
}
// 添加图片引用
const imageIndex = parseInt(match[1]) - 1; // @1 对应 index 0
if (imageIndex >= 0 && imageIndex < imageCount) {
metaList.push({
meta_type: "image",
text: "",
material_ref: { material_idx: imageIndex }
});
}
lastIndex = match.index + match[0].length;
}
// 添加剩余的文本
if (lastIndex < prompt.length) {
const remainingText = prompt.substring(lastIndex);
if (remainingText.trim()) {
metaList.push({ meta_type: "text", text: remainingText });
}
}
// 如果没有找到任何占位符,默认使用所有图片并附加整个prompt作为文本
if (metaList.length === 0) {
// 先添加所有图片引用
for (let i = 0; i < imageCount; i++) {
if (i === 0) {
metaList.push({ meta_type: "text", text: "使用" });
}
metaList.push({
meta_type: "image",
text: "",
material_ref: { material_idx: i }
});
if (i < imageCount - 1) {
metaList.push({ meta_type: "text", text: "和" });
}
}
// 添加描述文本
if (prompt && prompt.trim()) {
metaList.push({ meta_type: "text", text: `图片,${prompt}` });
} else {
metaList.push({ meta_type: "text", text: "图片生成视频" });
}
}
return metaList;
} |