fofr/hunyuan-take-on-me

Hunyuan fine-tuned on 3s clips from A-ha's Take on Me music video, use TKONME trigger
Run fofr/hunyuan-take-on-me with an API
Use one of our client libraries to get started quickly.
Set the REPLICATE_API_TOKEN
environment variable
export REPLICATE_API_TOKEN=<paste-your-token-here>
Learn more about authentication
Install Replicate’s Node.js client library
npm install replicate
Run fofr/hunyuan-take-on-me using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
import { writeFile } from "fs/promises";
import Replicate from "replicate";
const replicate = new Replicate();
const input = {
prompt: "In the style of TKONME, this video sequence is a sketched animations depicting a young woman with hair in a bun and loose strands, she looks up.",
frame_rate: 24,
num_frames: 85,
lora_strength: 0.85
};
const output = await replicate.run("fofr/hunyuan-take-on-me:fe4347d905314abbcb3270b1abd5aa370dff6d61d769b59ea8a91961c40ba420", { input });
// To access the file URL:
console.log(output.url());
//=> "https://replicate.delivery/.../output.mp4"
// To write the file to disk:
await writeFile("output.mp4", output);
//=> output.mp4 written to disk