본문 바로가기
ffmpeg

ffmpeg로 영상 자르기/합치기

by treeCoder 2021. 8. 30.

1)      자르는 방법

ffmpeg -i %1 -ss  00:01:17 -to 00:01:31 A004.mp4
ffmpeg -i %1 -ss  00:01:37 -to 00:01:47 A005.mp4

2) 합치는 방법

mylist1.txt에 다음과 같은 내용이 있다고 가정한다.

  file   'A001.mp4'

  file   'A002.mp4'

  file   'A003.mp4'


ffmpeg -f concat -i mylist1.txt -c copy output.mp4

 

mylist2.txt에 다음과 같은 내용이 있다고 가정한다.

  A004.mp4

  A005.mp4

  A006.mp4

  A007.mp4


ffmpeg -f concat -safe 0 -i mylist2.txt -c copy output2.mp4

 

3) mp3 --> wav 변환하기

ffmpeg -i song.mp3 -acodec pcm_u8 -ar 22050 song.wav

 

ffmpeg.zip
1.75MB
ffmpeg.z02
10.00MB
ffmpeg.z01
10.00MB

'ffmpeg' 카테고리의 다른 글

ffmpeg으로 Single Picture Video만들기  (0) 2021.09.21

댓글