How can I control the speed of the animation? I would like the frames to pass one value per second, in others words, one frame per second. Is there any function that controls this output?
g = Graphics[Table[{ Text[ Style[#, FontSize -> 40, Bold, Red], {0, 0}]}, 1]] & /@ Range[10]
Export["C:\\Users\\JohnPeter\\Desktop\\Count.gif", g]



Export["count.gif", g, "DisplayDurations" -> 1]– Jason B. Oct 06 '16 at 16:53"DisplayDurations"ofExport.See thisref/format/GIF->Elements– yode Oct 06 '16 at 16:55Importelements, not saying anything aboutExport– Jason B. Oct 06 '16 at 16:56