728x90 반응형 FFMPEG2 How to solve the problem of no sound when importing mkv file in DaVinci Resolve MKV files usually use H.264 for video and DTS for audio. So, we will use ffmpeg to change the video to H.264 and the audio to AAC. First, create an mp4 file using the mkv file as h.260 for video and mp3 for audio. ffmpeg -i The.Bourne.Legacy.2012.x264.DTS-WAF.mkv -ss 37:55 -to 40:28 -vcodec libx264 -acodec libmp3lame output.mp4 The above statement cut and converted only a specific section of the.. 2024. 1. 19. macOS에서 ffmpeg를 이용해서 동영상 화면 특정 구간 자르기 // 그림 1.과 같이 brew update 시 에러 발생 시 실행 필요 git -C /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core fetch --unshallow git -C /usr/local/Homebrew/Library/Taps/homebrew/homebrew-cask fetch --unshallow brew update // ffmpeg 설치 brew install ffmpeg 아래는 source.mp4 파일을 잘라서 output.mp4 파일을 만드는 명령문입니다. ffmpeg -i source.mp4 -ss 1:34:55 -to 1:55:28 -vcodec copy -acodec copy output.mp4 실제 작업을 해 보았습니다. 그림.. 2024. 1. 18. 이전 1 다음 728x90 반응형