반응형
[Node.JS] ffmpeg 영상 코덱 변경 방법
설치
$ 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', function (err) { // 변경 도중 오류 발생 시 console.log('An error occurred: ' + err.message); }).on('end', function () { // 변경 완료 시 console.log("Processing finished !"); video.src = convert // 코덱이 변경된 파일 영상으로 실행. }).save(convert)
반응형
'WEB > Node.js' 카테고리의 다른 글
[NodeJS] 디렉토리 안에 디렉토리인 것만 찾기 (0) | 2019.05.22 |
---|---|
[NodeJS] 동기/비동기 (0) | 2019.04.18 |
[NodeJS] Popper.js 추가 오류 해결 방법 (0) | 2019.04.17 |
[Nodejs] 폴더 없으면 생성하도록 하는 방법 (0) | 2019.02.22 |
[Node.JS][ES6] Babel 설치 및 사용 방법 (0) | 2019.01.29 |