fluent-ffmpeg / node-fluent-ffmpeg

A fluent API to FFMPEG (http://www.ffmpeg.org)
MIT License
7.63k stars 873 forks source link

ffprobe: how to return programs #1200

Open enricovittorini opened 1 year ago

enricovittorini commented 1 year ago

ffprobe seems to return only the list of streams. Is is possible to get the list of programs too?

Version information

Code to reproduce


ffmpeg.input(input)
.ffprobe(function(err,data) {
    console.log('metadata:');
    console.dir(data);
  });