We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 772e22e + 39b7f60 commit 5e4d168Copy full SHA for 5e4d168
apps/record/src/ffmpeg.ts
@@ -87,7 +87,7 @@ const thumbnailArgs = (dirPath: string, roomId: string) => {
87
'-i',
88
'pipe:0', // SDP를 파이프로 전달
89
'-vf',
90
- 'fps=1/10,scale=1280:720', // 10초마다 한 프레임을 캡처하고 해상도 조정
+ 'fps=1/15', // 10초마다 한 프레임을 캡처
91
'-f',
92
'image2', // 이미지 출력 포맷 명시
93
'-update',
@@ -111,13 +111,13 @@ const recordArgs = (dirPath: string, roomId: string) => {
111
'-c:v',
112
'libx264', // 비디오 코덱
113
'-preset',
114
- 'slow',
+ 'superfast',
115
'-profile:v',
116
'high', // H.264 High 프로필
117
'-level:v',
118
'4.1', // H.264 레벨 설정 (4.1)
119
'-crf',
120
- '1', // 비디오 품질 설정
+ '23', // 비디오 품질 설정
121
'-c:a',
122
'libmp3lame', // 오디오 코덱
123
'-b:a',
0 commit comments