ffmpeg 으로 video container 변경
FFmpeg download for windows
아래경로에서 ffmpeg 의 binary 를 다운로드 할 수 있다. 보통 .zip 으로 되어 있다. 이 안에 bin folder 에 ffmpeg.exe 가 있다.
video file 에서 transcoding 없이 container 만 변경할 때
03.mkv 를 03-01.mp4 로 변경하는 명령어이다. -c copy 를 하면 mkv 의 내용을 그냥 그대로 mp4 로 copy 한다.(transcoding 없이)
c:\..> ffmpeg.exe -i 03.mkv -c copy 03-01.mp4
다른 기능들
ref. 2 를 보면 아래와 같은 내용을 확인할 수 있다.
- 1. Cut video file into a smaller clip
- 2. Split a video into multiple parts
- 3. Convert video from one format to another
- 4. Join (concatenate) video files
- 5. Mute a video (Remove the audio component)
- 6. Extract the audio from video
- 7. Convert a video into animated GIF
- 8. Extract image frames from a video
- 9. Convert Video into Images
- 10. Merge an audio and video file
- 11. Resize a video
- 12. Create video slideshow from images
- 13. Add a poster image to audio
- 14. Convert a single image into a video
- 15. Add subtitles to a movie
- 16. Crop an audio file
- 17. Change the audio volume
- 18. Rotate a video
- 19. Speed up or Slow down the video
- 20. Speed up or Slow down the audio
References
- How to change the container of a video (without re-encoding) using FFmpeg command line - Quora
- Useful FFmpeg Commands For Converting Audio & Video Files
댓글 없음:
댓글 쓰기