Skip to content

Commit 4ce92e4

Browse files
committed
docs: FFmpeg으로 오디오 병합 방법 글 추가
1 parent 2a4f8a0 commit 4ce92e4

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

_posts/2025-02-19-ffmpeg.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,26 @@ ffmpeg -f concat -safe 0 -i file_list.txt -c copy output.mp4
193193

194194
<img src="/assets/img/etc/ffmpeg/pic15.avif" alt="pic15" style="box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); border-radius: 0.5rem"/>
195195

196+
### 여러 개의 오디오 병합
197+
198+
먼저 오디오 파일 목록을 담은 텍스트 파일을 생성합니다.
199+
200+
```
201+
file 1-25.wav
202+
file 26-50.wav
203+
file 51-75.wav
204+
file 76-100.wav
205+
file 100-118.wav
206+
```
207+
208+
이후 다음 명령어를 입력하여 여러 개의 오디오를 병합할 수 있습니다.
209+
210+
```bash
211+
ffmpeg -f concat -safe 0 -i file_list.txt -c copy output.wav
212+
```
213+
214+
<img src="/assets/img/etc/ffmpeg/pic17.avif" alt="여러 개의 오디오 병합" style="box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); border-radius: 0.5rem"/>
215+
196216
### Windows에서 화면 녹화
197217

198218
```bash

assets/img/etc/ffmpeg/pic17.avif

73.3 KB
Binary file not shown.

0 commit comments

Comments
 (0)