Skip to content

Commit

Permalink
[fix] sql 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
jainefer committed Feb 15, 2024
1 parent a178078 commit 24f418b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions .ebextensions/permission.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
files:
"/opt/elasticbeanstalk/hooks/appdeploy/post/99_change_permissions.sh":
mode: "000755"
owner: root
group: root
content: |
#!/bin/bash
chmod -R 755 /var/tempMP3
2 changes: 1 addition & 1 deletion src/services/translateToMP3.service.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { path as FFmpegPath} from '@ffmpeg-installer/ffmpeg';
const desktopPath = path.join(__dirname, '..', '..');

// tempMP3 폴더 경로
const outputPath = path.join(desktopPath, 'tempMp3');
const outputPath = path.join(desktopPath, 'app');


export const convertVideoToAudio = async (videoId) => {
Expand Down

0 comments on commit 24f418b

Please sign in to comment.