if you want it 1:1 you can turn that video into a spritesheet.
you’ll probably need to delete cut it a little bit, more size = less quality so keep it small.
after that you’ll need something to animate spritesheets. it generally isn’t that hard to do yourself all you do is calculate how big each frame/cell is and change the ImageRectSize to match the frame size, and move ImageRectOffset to each frame.
Increment the x offset by the width of a frame
When it reaches the end of the x axis on the sprite sheet increment the y offset by the height of a frame.
When it reaches the bottom (height) of the spritesheet, reset the offset back to 0,0
This should create an animated effect that will exactly be what is on the video.