Skip to content

Commit

Permalink
feat: 파일 저장을 위한 키를 .mp4에서 .webm으로 변경 (#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
quiet-honey authored Nov 16, 2023
1 parent f7167ae commit 2139bac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BE/src/video/service/video.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export class VideoService {
const content = await this.getQuestionContent(
createPreSignedUrlRequest.questionId,
);
const key = `${member.nickname}_${content}_${uuidv4()}.mp4`;
const key = `${member.nickname}_${content}_${uuidv4()}.webm`;

const s3 = getIdriveS3Client();
try {
Expand Down

0 comments on commit 2139bac

Please sign in to comment.