divx.js 286 B

1234567891011121314
  1. /*jshint node:true */
  2. 'use strict';
  3. exports.load = function(ffmpeg) {
  4. ffmpeg
  5. .format('avi')
  6. .videoBitrate('1024k')
  7. .videoCodec('mpeg4')
  8. .size('720x?')
  9. .audioBitrate('128k')
  10. .audioChannels(2)
  11. .audioCodec('libmp3lame')
  12. .outputOptions(['-vtag DIVX']);
  13. };