當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript fluent-ffmpeg類代碼示例

本文整理匯總了TypeScript中fluent-ffmpeg的典型用法代碼示例。如果您正苦於以下問題:TypeScript fluent-ffmpeg類的具體用法?TypeScript fluent-ffmpeg怎麽用?TypeScript fluent-ffmpeg使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了fluent-ffmpeg類的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1:

import * as ffmpeg from "fluent-ffmpeg";

let source: string;
let format: string;
let output: string;

ffmpeg({ source }).format(format).save(output);
開發者ID:danilobjr,項目名稱:DefinitelyTyped,代碼行數:7,代碼來源:fluent-ffmpeg-tests.ts

示例2: if

  return new Promise<void>(async (res, rej) => {
    const fps = await getVideoFileFPS(options.inputPath)

    let command = ffmpeg(options.inputPath)
                    .output(options.outputPath)
                    .videoCodec('libx264')
                    .outputOption('-threads ' + CONFIG.TRANSCODING.THREADS)
                    .outputOption('-movflags faststart')
                    // .outputOption('-crf 18')

    // Our player has some FPS limits
    if (fps > VIDEO_TRANSCODING_FPS.MAX) command = command.withFPS(VIDEO_TRANSCODING_FPS.MAX)
    else if (fps < VIDEO_TRANSCODING_FPS.MIN) command = command.withFPS(VIDEO_TRANSCODING_FPS.MIN)

    if (options.resolution !== undefined) {
      // '?x720' or '720x?' for example
      const size = options.isPortraitMode === true ? `${options.resolution}x?` : `?x${options.resolution}`
      command = command.size(size)
    }

    command
      .on('error', (err, stdout, stderr) => {
        logger.error('Error in transcoding job.', { stdout, stderr })
        return rej(err)
      })
      .on('end', res)
      .run()
  })
開發者ID:jiang263,項目名稱:PeerTube,代碼行數:28,代碼來源:ffmpeg-utils.ts

示例3: Promise

 return new Promise((resolve, reject) => {
   ffmpeg()
     .input(mediaFilePath)
     .output(outputFilePath)
     .outputOptions(overwriteOutput)
     .on('end', () => resolve(outputFilePath))
     .on('error', err => reject(err))
     .run(); // TODO Maybe add somewhere the fact that medium has been converted, to avoid to do it again
 });
開發者ID:sebthieti,項目名稱:jogplayer-online,代碼行數:9,代碼來源:media.service.ts

示例4: ffmpeg

 .on('finish', () => {
   ffmpeg()
     .input(ytdl(videoToDownload, { filter: format => format.itag === '299' }))
     .videoCodec('copy')
     .input(audioOutput)
     .audioCodec('copy')
     .save(mainOutput)
     .on('error', console.error)
     // .on('progress', progress => {
     //   process.stdout.write(progress.timemark);
     // })
     .on('end', () => {
       deleteFile(audioOutput);
       p.resolve();
     });
 });
開發者ID:JimmyBoh,項目名稱:pully,代碼行數:16,代碼來源:benchmark.ts

示例5: ffmpeg

 await new Promise<string>((res, rej) => {
   ffmpeg(fromPath)
     .on('error', rej)
     .on('end', () => res(imageName))
     .thumbnail(options)
 })
開發者ID:jiang263,項目名稱:PeerTube,代碼行數:6,代碼來源:ffmpeg-utils.ts


注:本文中的fluent-ffmpeg類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。