nodejs获取ts媒体文件的时间长度

nodejs获取ts媒体文件的时间长度

在Node.js中,你可以使用ffprobe,这是FFmpeg套件中的一个工具,来获取TS媒体文件的时长。首先,确保你已经安装了FFmpeg,然后可以通过Node.js的child_process模块运行ffprobe命令。

以下是一个简单的Node.js脚本示例,它使用child_process执行ffprobe命令并解析输出来获取TS文件的时长:

 
 
const { exec } = require('child_process');
 
// TS文件的路径
const tsFilePath = 'path/to/your/file.ts';
 
// 构建ffprobe命令
const ffprobeCmd = `ffprobe -v error -show_entries format=duration -of default=noprint_wrappers=1:nokey=1 "${tsFilePath}"`;
 
// 执行ffprobe命令
exec(ffprobeCmd, (error, stdout, stderr) => {
if (error) {
console.error(`执行出错: ${error}`);
return;
}
if (stderr) {
console.error(`stderr: ${stderr}`);
return;
}
 
// 输出时长(单位:秒)
console.log(`时长: ${parseFloat(stdout).toFixed(2)}秒`);
});

确保你的系统环境变量中包含了ffprobe的路径,或者在执行脚本时直接指定ffprobe的完整路径。上述脚本会输出TS文件的时长,单位是秒。

posted on 2024-11-21 12:08  漫思  阅读(1)  评论(0编辑  收藏  举报

导航