Skip to content

Commit

Permalink
enhance(server): 動画サムネイルの縦の長さを最大422pxにする
Browse files Browse the repository at this point in the history
Related to #10149
Related to #10450
  • Loading branch information
tamaina committed Apr 2, 2023
1 parent bc5e457 commit a0c3ded
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/backend/src/core/VideoProcessingService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export class VideoProcessingService {
});
});

return await this.imageProcessingService.convertToWebp(`${dir}/out.png`, 498, 280);
return await this.imageProcessingService.convertToWebp(`${dir}/out.png`, 498, 422);
} finally {
cleanup();
}
Expand Down

0 comments on commit a0c3ded

Please sign in to comment.