It's not possible with SFML only.
If you really want/need to use animated gifs, there must be code/libraries out there to load gifs into memory (I don't remember of any atm, just search
). You can get their frames data separately and load them into images with loadFromPixels. Finally build your own animation class with those images and the timing for each frame (which you should get from the gif somehow too).