What is the difference between bars, line and mirror style?
Bars draws 200 discrete rectangles, a classic histogram look. Line traces two separate curves (max on top, min on the bottom), leaving the centre hollow. Mirror uses the same max/min envelope but closes the path and fills it as one solid shape, the look most common in music players.
Why export as SVG and not just PNG?
PNG is a fixed pixel snapshot, at the exact size of the chosen preset (1280x720, for example). SVG describes the same waveform as a vector: it fits any page width without pixelating and can change colour just by editing a `fill` attribute in CSS, useful for reusing the same shape in a site's light and dark theme.
How many points does the tool use to draw the waveform?
The default is 200 points, adjustable in the interface. Each point summarizes a block of the original audio's samples into three numbers (min, max, RMS), so more points bring more temporal detail, and in bar style it also makes each individual bar thinner, since the width always adjusts to fit the canvas.