I reached a part where I can cut the video with
ffmpeg -i test.mp4 -filter_complex
'[0:v] trim=start=5:end=10,setpts=PTS-STARTPTS [cut]' -map [cut] output.mp4
And it successfully trims the video. However, it completely removes the audio. I'm trying to chain a couple of different filters, so I'd like to keep the similar syntax, just to somehow preserve the audio.