How to cut a audio file in CLI

$ ffmpeg -i ORIGINAL_FILE.m4a -ss 00:00:17 -to 02:22:38 -c copy RESULTING_FILE.m4a


Original