Reverse audio

Solution

ffmpeg \
    -i input_file \
    -filter:a "areverse" \
    -c:a pcm_s24le \
    output_file

2024-09-06