Split Video AVI con ffmpeg comandos
ffmpeg -i "2022-04-28 Clase Video 2 - sin e.avi" -ss 0 -to 25:00 -c copy part1.mp4
ffmpeg -i "2022-04-28 Clase Video 2 - sin e.avi" -ss 33:27 -c copy part3.mp4
https://superuser.com/questions/1229945/ffmpeg-split-video-and-merge-back
Si quisiera concatenar
Using concat
protocol
The above kind of file-level concatenation can be achieved using the concat
protocol as well, with the same kind of constraints as above (same codec, resolution, etc.):
ffmpeg -i "concat:part1.avi|part2.avi|part3.avi" -c copy output.mp4
No hay comentarios:
Publicar un comentario