forked from 77media/video-flow
视频比例 传参问题
This commit is contained in:
parent
444335436b
commit
b41ff70ccd
@ -1,3 +1,5 @@
|
|||||||
|
import { AspectRatioValue } from '@/components/ChatInputBox/AspectRatioSelector'
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 图片故事AI分析返回DTO
|
* 图片故事AI分析返回DTO
|
||||||
*/
|
*/
|
||||||
@ -107,7 +109,7 @@ export interface CreateMovieProjectV2Request {
|
|||||||
/** 图片URL */
|
/** 图片URL */
|
||||||
image_url: string;
|
image_url: string;
|
||||||
/** 画面比例(横/竖屏) */
|
/** 画面比例(横/竖屏) */
|
||||||
aspect_ratio?: "16:9" | "9:16";
|
aspect_ratio?: AspectRatioValue;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -252,7 +254,7 @@ export interface CreateMovieProjectV3Request {
|
|||||||
photo_url: string;
|
photo_url: string;
|
||||||
}[];
|
}[];
|
||||||
/** 画面比例(横/竖屏) */
|
/** 画面比例(横/竖屏) */
|
||||||
aspect_ratio?: "16:9" | "9:16";
|
aspect_ratio?: AspectRatioValue;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -14,6 +14,7 @@ import {
|
|||||||
CreateMovieProjectResponse,
|
CreateMovieProjectResponse,
|
||||||
} from "@/api/DTO/movie_start_dto";
|
} from "@/api/DTO/movie_start_dto";
|
||||||
import { MovieProjectService, MovieProjectMode } from "./MovieProjectService";
|
import { MovieProjectService, MovieProjectMode } from "./MovieProjectService";
|
||||||
|
import { AspectRatioValue } from '@/components/ChatInputBox/AspectRatioSelector'
|
||||||
|
|
||||||
interface UseImageStoryService {
|
interface UseImageStoryService {
|
||||||
/** 当前图片故事数据 */
|
/** 当前图片故事数据 */
|
||||||
@ -58,7 +59,7 @@ interface UseImageStoryService {
|
|||||||
mode?: "auto" | "manual",
|
mode?: "auto" | "manual",
|
||||||
resolution?: "720p" | "1080p" | "4k",
|
resolution?: "720p" | "1080p" | "4k",
|
||||||
language?: string,
|
language?: string,
|
||||||
aspectRatio?: "16:9" | "9:16"
|
aspectRatio?: AspectRatioValue
|
||||||
) => Promise<{ project_id: string } | undefined>;
|
) => Promise<{ project_id: string } | undefined>;
|
||||||
/** 设置角色分析 */
|
/** 设置角色分析 */
|
||||||
setCharactersAnalysis: Dispatch<SetStateAction<CharacterAnalysis[]>>;
|
setCharactersAnalysis: Dispatch<SetStateAction<CharacterAnalysis[]>>;
|
||||||
@ -459,7 +460,7 @@ export const useImageStoryServiceHook = (): UseImageStoryService => {
|
|||||||
mode: "auto" | "manual" = "auto",
|
mode: "auto" | "manual" = "auto",
|
||||||
resolution: "720p" | "1080p" | "4k" = "720p",
|
resolution: "720p" | "1080p" | "4k" = "720p",
|
||||||
language: string = "English",
|
language: string = "English",
|
||||||
aspectRatio?: "16:9" | "9:16"
|
aspectRatio?: AspectRatioValue
|
||||||
) => {
|
) => {
|
||||||
try {
|
try {
|
||||||
if (hasAnalyzed) {
|
if (hasAnalyzed) {
|
||||||
|
|||||||
@ -6,6 +6,7 @@ import { useState, useCallback, useMemo } from "react";
|
|||||||
import { generateTextToImage } from "@/api/movie_start";
|
import { generateTextToImage } from "@/api/movie_start";
|
||||||
import { MovieProjectService, MovieProjectMode } from "./MovieProjectService";
|
import { MovieProjectService, MovieProjectMode } from "./MovieProjectService";
|
||||||
import { CreateMovieProjectV3Request } from "@/api/DTO/movie_start_dto";
|
import { CreateMovieProjectV3Request } from "@/api/DTO/movie_start_dto";
|
||||||
|
import { AspectRatioValue } from '@/components/ChatInputBox/AspectRatioSelector'
|
||||||
|
|
||||||
interface UseTemplateStoryService {
|
interface UseTemplateStoryService {
|
||||||
/** 模板列表 */
|
/** 模板列表 */
|
||||||
@ -29,7 +30,7 @@ interface UseTemplateStoryService {
|
|||||||
mode: "auto" | "manual",
|
mode: "auto" | "manual",
|
||||||
resolution: "720p" | "1080p" | "4k",
|
resolution: "720p" | "1080p" | "4k",
|
||||||
language: string,
|
language: string,
|
||||||
aspectRatio?: "16:9" | "9:16"
|
aspectRatio?: AspectRatioValue
|
||||||
) => Promise<string | undefined>;
|
) => Promise<string | undefined>;
|
||||||
/** 设置选中的模板 */
|
/** 设置选中的模板 */
|
||||||
setSelectedTemplate: (template: StoryTemplateEntity | null) => void;
|
setSelectedTemplate: (template: StoryTemplateEntity | null) => void;
|
||||||
@ -252,7 +253,7 @@ export const useTemplateStoryServiceHook = (): UseTemplateStoryService => {
|
|||||||
mode: "auto" | "manual" = "auto",
|
mode: "auto" | "manual" = "auto",
|
||||||
resolution: "720p" | "1080p" | "4k" = "720p",
|
resolution: "720p" | "1080p" | "4k" = "720p",
|
||||||
language: string = "English",
|
language: string = "English",
|
||||||
aspectRatio?: "16:9" | "9:16"
|
aspectRatio?: AspectRatioValue
|
||||||
) => {
|
) => {
|
||||||
console.log('selectedTemplate', selectedTemplate)
|
console.log('selectedTemplate', selectedTemplate)
|
||||||
try {
|
try {
|
||||||
|
|||||||
@ -120,7 +120,7 @@ export const H5PhotoStoryDrawer = ({
|
|||||||
configOptions.mode as "auto" | "manual",
|
configOptions.mode as "auto" | "manual",
|
||||||
configOptions.resolution as "720p" | "1080p" | "4k",
|
configOptions.resolution as "720p" | "1080p" | "4k",
|
||||||
configOptions.language,
|
configOptions.language,
|
||||||
aspectUI === 'VIDEO_ASPECT_RATIO_LANDSCAPE' ? '16:9' : '9:16'
|
aspectUI as AspectRatioValue
|
||||||
);
|
);
|
||||||
if (!episodeResponse) return;
|
if (!episodeResponse) return;
|
||||||
const episodeId = episodeResponse.project_id;
|
const episodeId = episodeResponse.project_id;
|
||||||
|
|||||||
@ -123,7 +123,7 @@ export const H5TemplateDrawer = ({
|
|||||||
configOptions.mode,
|
configOptions.mode,
|
||||||
configOptions.resolution,
|
configOptions.resolution,
|
||||||
configOptions.language,
|
configOptions.language,
|
||||||
aspectUI === 'VIDEO_ASPECT_RATIO_LANDSCAPE' ? '16:9' : '9:16'
|
aspectUI as AspectRatioValue
|
||||||
);
|
);
|
||||||
|
|
||||||
if (projectId) {
|
if (projectId) {
|
||||||
|
|||||||
@ -106,7 +106,7 @@ export const PcPhotoStoryModal = ({
|
|||||||
configOptions.mode as "auto" | "manual",
|
configOptions.mode as "auto" | "manual",
|
||||||
configOptions.resolution as "720p" | "1080p" | "4k",
|
configOptions.resolution as "720p" | "1080p" | "4k",
|
||||||
configOptions.language,
|
configOptions.language,
|
||||||
aspectUI === 'VIDEO_ASPECT_RATIO_LANDSCAPE' ? '16:9' : '9:16'
|
aspectUI as AspectRatioValue
|
||||||
);
|
);
|
||||||
if (!episodeResponse) return;
|
if (!episodeResponse) return;
|
||||||
const episodeId = episodeResponse.project_id;
|
const episodeId = episodeResponse.project_id;
|
||||||
|
|||||||
@ -183,7 +183,7 @@ export const PcTemplateModal = ({
|
|||||||
configOptions.mode,
|
configOptions.mode,
|
||||||
configOptions.resolution,
|
configOptions.resolution,
|
||||||
configOptions.language,
|
configOptions.language,
|
||||||
aspectUI === 'VIDEO_ASPECT_RATIO_LANDSCAPE' ? '16:9' : '9:16'
|
aspectUI as AspectRatioValue
|
||||||
);
|
);
|
||||||
|
|
||||||
if (projectId) {
|
if (projectId) {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user