2

I would like to know why ffmpeg stops naming my files with a sequence number (%03d) when using -strftime 1?

for example: filename_%Y-%m-%d_%03d.ts

I need to get filename_YEAR_MONTH_DAY_SEQUENCE#.ts

references:
What do the special characters in an ffmpeg file output format mean?
ffmpeg filename output format
http://man7.org/linux/man-pages/man3/strftime.3.html
http://en.wikibooks.org/wiki/FFMPEG_An_Intermediate_Guide/image_sequence

Community
  • 1
  • 1
user2030856
  • 77
  • 1
  • 6
  • Because the pattern is being passed to `strftime()` for expansion, in which %d is reserved for date. – Gyan Dec 05 '16 at 14:57

0 Answers0