Skip to content

Commit

Permalink
fix : s3Client update file name
Browse files Browse the repository at this point in the history
  • Loading branch information
sycuuui committed May 21, 2024
1 parent d019012 commit 6d158e6
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -208,10 +208,9 @@ public String getContentType() {
return "video/mp4"; // 동영상의 MIME 타입을 video/mp4로 설정
}
};

// S3에 파일 업데이트
s3Client.update(folderName + "/" + videoReq.videoName(), multipartFile);
return VideoRes.of(folderName, videoReq.videoName(), null);
s3Client.update(folderName + "/" + videoReq.videoName()+"_mosaic", multipartFile);
return VideoRes.of(folderName, videoReq.videoName()+"_mosaic", null);
}

//flask에 이미지, 동영상 보내기 test
Expand Down

0 comments on commit 6d158e6

Please sign in to comment.