最佳答案
I'm using ffmpeg to get info about a video file and I don't want to save the info into a file. ffmpeg is returning all the video info, but it's returning as an error because I'm not specifying an output file. The command I'm using is:
ffmpeg -i C:\Test\3FA8D0E6-BD61-D160-98BB41304D63FAE3.mp4
The error I get is "At least one output file must be specified"
I'm calling this in ColdFusion using <cfexecute>
, and the output is being stored in a local variable, which is why I don't want to specify a file... I just don't need to store this in a file.
If it makes any difference, I'm running this on Windows.