jbilcke-hf HF staff commited on
Commit
05b0023
1 Parent(s): d132f4a

switch to 16:9 instead of 2:1

Browse files
src/app/server/aitube/createClap.ts CHANGED
@@ -14,8 +14,10 @@ export async function createClap({
14
  prompt,
15
 
16
  // the vertical video look 🤳
 
 
17
  height: 1024,
18
- width: 512,
19
 
20
  token: await getToken()
21
  })
 
14
  prompt,
15
 
16
  // the vertical video look 🤳
17
+ // initially I used 1024x512 (a 2:1 ratio)
18
+ // but that is a bit too extreme, most phones only take 16:9
19
  height: 1024,
20
+ width: 576,
21
 
22
  token: await getToken()
23
  })