![¿Parte en cámara rápida un video en cualquier lugar con Fmpeg?](https://rvso.com/image/1607106/%C2%BFParte%20en%20c%C3%A1mara%20r%C3%A1pida%20un%20video%20en%20cualquier%20lugar%20con%20Fmpeg%3F.png)
Estoy intentando usar el efecto de cámara rápida en mis videos. Encontré este comando:
ffmpeg -i input.mkv -filter_complex \
"[0:v]trim=0:10,setpts=PTS-STARTPTS[v1]; \
[0:v]trim=10:30,setpts=(PTS-STARTPTS)*2[v2]; \
[0:v]trim=start=30,setpts=PTS-STARTPTS[v3]; \
[0:a]atrim=0:10,asetpts=PTS-STARTPTS[a1]; \
[0:a]atrim=10:30,asetpts=PTS-STARTPTS,atempo=0.5[a2]; \
[0:a]atrim=start=30,asetpts=PTS-STARTPTS[a3]; \
[v1][a1][v2][a2][v3][a3]concat=n=3:v=1:a=1[v][a]" \
-map [v] -map [a] output.mp4
Digamos que tengo un video de 10 minutos de duración. Quiero aplicar la línea de comando anterior con videos. ¿Me puedes ayudar?