Logo Animation Export
Export the Nile Precious Metals logo as an animated video or SVG. The hexagonal design represents the company's core values with the inner chevron symbolizing the Nile river flow.
Preview
Color Presets
Size
Stroke Width
Export Formats
WebM Video
Animated video, works everywhere. Can be converted to GIF online.
Animated SVG
Scalable vector with SMIL animations. Perfect for web use.
SVG Frames
Individual frames for external GIF encoding (use with FFmpeg or similar).
How to Use
In React Components
import AnimatedLogoGif from "@/components/AnimatedLogoGif";
<AnimatedLogoGif
size={300}
color="#bda27e"
backgroundColor="#080808"
showControls={false}
/>Converting WebM to GIF
# Using FFmpeg ffmpeg -i logo.webm -vf "fps=30,scale=800:-1" logo.gif # With optimization ffmpeg -i logo.webm -vf "fps=30,scale=800:-1,split[s0][s1];[s0]palettegen[p];[s1][p]paletteuse" logo.gif