DEV Community

Murahashi [Matt] Kenichi
Murahashi [Matt] Kenichi

Posted on

Split audio file and fade out by ffmpeg

Use first 60 seconds. Fade out from 57 seconds per 3 seconds.

ffmpeg -i source.mp3 -af "afade=t=out:st=57:d=3" -to 60 result.mp3
Enter fullscreen mode Exit fullscreen mode

References

Latest comments (0)