Cut/split videos using ffmpeg

ffmpeg -y -i "in.mp4" -ss 00:00:08 -to 00:00:37 -c copy
    -max_muxing_queue_size 1024 -avoid_negative_ts make_zero "out.mp4"

Source: https://varhowto.com/cut-videos-ffmpeg/