File size: 369 Bytes
be492ad
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
async function generate() {
  let prompt = document.getElementById("prompt").value;

  let res = await fetch("/api/video", {
    method: "POST",
    headers: {"Content-Type":"application/json"},
    body: JSON.stringify({prompt})
  });

  let data = await res.json();

  alert("Job ID: " + data.job_id);

  document.getElementById("video").src = "/static/output.mp4";
}