I'm converting video with ffmpeg and after conversation duration is shown as 00:00:00.00. here is my passing arguments
"-i " + FileName + " -ar 22050 -b 500k -f flv -t " + Duration + " " + outputfile
Which is rendered by my code to
-i 1.mov -ar 22050 -b 500k -f flv -t 00:03:34.99 1.flv
what am I missing?