Can a flipbook have intervals longer then 1 sec?

Can I make animations that last longer than 1 second with flipbook?
I created a 2 second long animation that has 48 frames (24fps). I made a sprite of it and I feed it to flipbook.

Problem is that flipbook plays all 48 frames in one second.

I tried to slow it down with Time>Frac>Multyply functions. It slows down but it plays only half of the animation.

I want to make more animated textures for my Widgets but I don’t know if this is the best way

Can I use .mp4 file format or something similar to import animations and directly get the result I want?

I found the answer ages later. First Time is Multiplied directly with Constant (or Parameter)

NumberOfFrames / FrameRate = LengthOfTheSequence

(example: you have 120 frames at 24 fps → 120/24 = 5 seconds)

Your Parameter or Constant should be:

1 / LengthOfTheSequence = Const

(example: 1/5 = 0.2 → your Constant or Parameter should be 0.2)

Now You can speed-up or slow-down your Flipbook by increasing or decreasing your Constant or Parameter. Longer sequence = smaller number.