-
combining video files
I’m trying to combine some video clips. Using:
cat index_0.mp4 index_30.mp4 index_60.mp4| ffmpeg -i – -vcodec copy -acodec copy -f mp4 comp.mp4
gives me
Output file is empty, nothing was encoded (check -ss / -t / -frames parameters if used)
And the output is a file that will not play. Suggestions??
Pedro