forked from 77media/video-flow
Merge remote-tracking branch 'origin/dev' into dev
This commit is contained in:
commit
c942a04aa6
@ -43,7 +43,6 @@ export default function RootLayout({
|
||||
<head>
|
||||
<title>MovieFlow - AI Movie Studio</title>
|
||||
<meta name="description" content="Share your story, or just a few words, and our AI turns it into a great film. We remove the barriers to creation. At MovieFlow, everyone is a movie master." />
|
||||
<meta name="robots" content="noindex" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<link rel="icon" type="image/x-icon" sizes="16x16" href="/favicon.ico?v=1" />
|
||||
<link rel="icon" type="image/x-icon" sizes="32x32" href="/favicon.ico?v=1" />
|
||||
|
||||
@ -73,7 +73,7 @@ const VideoDurationOptions = [
|
||||
{ value: "8s", label: "8s" },
|
||||
{ value: "1min", label: "1min" },
|
||||
{ value: "2min", label: "2min" },
|
||||
{ value: "unlimited", label: "unlimited" },
|
||||
{ value: "unlimited", label: "auto" },
|
||||
];
|
||||
|
||||
// aspect ratio options moved to reusable component
|
||||
@ -464,7 +464,7 @@ export function ChatInputBox({ noData }: { noData: boolean }) {
|
||||
className={`flex items-center gap-1 text-white/80 transition-all duration-200 ${isMobile ? 'px-1' : 'px-2'} py-2`}
|
||||
>
|
||||
<Clock className={"w-4 h-4"} />
|
||||
<span className="text-sm">{isMobile ? (configOptions.videoDuration === 'unlimited' ? '∞' : configOptions.videoDuration.replace('min', 'm')) : configOptions.videoDuration}</span>
|
||||
<span className="text-sm">{configOptions.videoDuration === 'unlimited' ? 'auto' : (isMobile ? configOptions.videoDuration.replace('min', 'm') : configOptions.videoDuration)}</span>
|
||||
</button>
|
||||
</Dropdown>
|
||||
|
||||
|
||||
@ -471,7 +471,6 @@ Please process this video editing request.`;
|
||||
alt="final"
|
||||
className="w-full h-auto object-cover"
|
||||
/>
|
||||
<div className="text-xs text-white/80 text-center py-1">Final</div>
|
||||
</button>
|
||||
</div>
|
||||
)}
|
||||
|
||||
@ -417,7 +417,6 @@ export function H5MediaViewer({
|
||||
aria-label="Select final video"
|
||||
>
|
||||
<img src={getFirstFrame(taskObject.final.url)} alt="final" className="w-full h-auto object-contain" />
|
||||
<div className="text-[10px] text-white/80 text-center py-0.5">Final</div>
|
||||
</button>
|
||||
</div>
|
||||
)}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user