Media
Convertisseur GIF vers WebM
Convertir les images GIF au format vidéo WebM avec compression moderne et optimisation web
file· Résultat fichier
Démarrage rapide
Appelez cet outil depuis votre code en trois langages.
cURL
# 1) Upload each file first → returns { filePath }
curl -X POST 'https://api.elysiatools.com/upload/gif-to-webm' \
-F 'file=@/path/to/gifFile.ext'
# 2) Call the tool with the returned filePath values
curl -X POST 'https://api.elysiatools.com/fr/api/tools/gif-to-webm' \
-F 'gifFile=/path/to/file.ext' \
-F 'multiFrameHandling=preserve-animation' \
-F 'resolution=original' \
-F 'customWidth=0' \
-F 'customHeight=0' \
-F 'fps=30' \
-F 'quality=high' \
-F 'backgroundColor=transparent' \
-F 'customBackgroundColor=#ffffff' \
-F 'videoCodec=libvpx-vp9' \
-F 'audioCodec=none' \
-F 'pixelFormat=yuv420p' \
-F 'loopCount=0' \
-F 'optimizeForWeb=true'