ffmpeg

· WEB/Node.js
[Node.JS] ffmpeg 영상 코덱 변경 방법 fluent-ffmepg 를 이용해서 코덱 변환이 가능하다. 설치 $ npm install fluent-ffmpeg 예) h264 코덱으로 변경하여 영상 실행* h264으로 변경할 경우 libx264로 코덱을 적어주면 된다. const FfmpegCommand = require('fluent-ffmpeg'); const video = document.querySelector("#video"); let file = "test.mov" # 변경 전 파일 let convert = "output.mov" # 변경 후 파일 FfmpegCommand(file) .videoCodec('libx264') .format('mov') .on('error', functio..
S0PH1A
'ffmpeg' 태그의 글 목록