I use C# to start and stop 'ffmpeg' process, and I can easily name my output file like this:
"-f image2 -framerate 10 -i " + d + "\\%06d.jpeg -c:v libx264 -r 10
-crf 37 -pix_fmt yuv420p E:\" + DateTime.Now.ToString("dd_MM_yyyy_h_mm_ss_tt") + ".flv";
but I wonder if I can do it using only ffmpeg
to be some thing like this:
"ffmpeg -f dshow -i video="screen-capture-recorder" -c:v libx264 -r 10
-crf 37 -pix_fmt yuv420p E:\D_M_Y_H_M_S_T.flv"
this question is very close to what i need, one thing in deffrent i need all of it in cmd