How to cut a video and audio file from 00:15 to 01:00.
ffmpeg -ss 15 -i "input.webm" -t 45 -c copy "output.webm"

from 01:30 to end
ffmpeg -ss 90 -i "input.mp3" -c copy "output.mp3"