标签:ts nodejs 媒体文件 TS ffprobe stderr error
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文件的时长,单位是秒。
标签:ts,
nodejs,
媒体文件,
TS,
ffprobe,
stderr,
error
From: https://www.cnblogs.com/sexintercourse/p/18560336