I am trying to see what the naming conventions are for FFMPEG. I am trying to take a video file and slice it up into images. I have it currently set to label them from 0 counting up, but was wondering if I could use the date and time instead of just a numerical representation.
Thanks in advance for any help.
ffmpeg will not do this
ffmpeg is only going to name decoded frames based on their index.
However, you could probably write a short shell script to take a set of files named 1-30.jpg and change their names to current-time+1-30.jpg. Not as direct, but not bad.