The idea is to split a video into n
segments and process them separated and when the process is done to merge the segments into a full video.
I tried using the following approach:
```
// spliting
ffmpeg -i video.mp4 -c:v copy -c:a copy -ss 0 -t 10 video_0_10.mp4
ffmpeg -i video.mp4 -c:v copy -c:a copy -ss 10 -t 20 video_10_20.mp4
vim video_list.txt (with all files)
// joining (merging them)
ffmpeg -f concat -safe 0 -i video_list.txt -c:v copy -c:a copy new_video.mp4
```
But when I tried to play the new_video.mp4
it didn't play (using VLC) smooth, it froze seemly at the moment of the joining.
What's the best way to split a bigger video into several smaller, work on them and after joining the smaller into a new?