Skip to content

Commit

Permalink
higher quality videos and filesize for dialogue
Browse files Browse the repository at this point in the history
  • Loading branch information
skuqre committed Dec 23, 2023
1 parent d3f0072 commit 15070b9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/scripts/dialogue.js
Original file line number Diff line number Diff line change
Expand Up @@ -1393,8 +1393,9 @@ function downloadVideo() {

encoder.width = canvas.width % 2 == 0 ? canvas.width : canvas.width + 1;
encoder.height = canvas.height % 2 == 0 ? canvas.height : canvas.height + 1;
encoder.quantizationParameter = 15;
encoder.frameRate = 30;
encoder.initialize();
// encoder.frameRate = 30;

let wasArrowOn = arrowOn;

Expand Down

0 comments on commit 15070b9

Please sign in to comment.