How do i access inputs that have been added to a command

Author: HaroldObasiCreated Mar 17, 2025Updated Mar 25, 2025

Hi, if i have added some inputs to a command is there a function, or an attribute to use and see them ?

javascript
import ffmpeg from "fluent-ffmpeg";
const command = ffmpeg()

videos.forEach((video) => {
  command.addInput(video)
})

// console.log( all the input i just passed to command ?)

Source: fluent-ffmpeg/node-fluent-ffmpeg