How reversing a file works
This tool runs FFmpeg's areverse filter, which does one specific thing: it reads every audio sample in the file and writes them back out in the opposite order, from the last sample to the first. There are no other settings because there is nothing else to configure. A sound that started sharp and decayed now starts quiet and swells; a phrase of speech becomes an unfamiliar string of sounds rather than the same words said backwards on purpose.
Because the whole order of the file flips, the filter needs the entire file in memory before it can write anything out, unlike an effect that can process sample by sample as it streams. That is why a long podcast or a full album side takes noticeably longer to reverse than a ten-second clip, and it is also why trimming to just the part you need first, before reversing, is the fastest path for a short effect.