💾 Archived View for elmau.net › notes › ffmpeg.gmi captured on 2021-11-30 at 20:18:30. Gemini links have been rewritten to link to archived content
-=-=-=-=-=-=-
1] Cortar un video
ffmpeg -i ENTRADA.mp4 -ss 00:00:00 -to 00:10:00 -c copy SALIDA.mp4 -ss = empezar en -to = terminar en
2] Descargar y fusionar un video desde un enlace m3u8, no debe estar encriptado.
ffmpeg -i "URL.m3u8" -c copy -bsf:a aac_adtstoasc output.mp4
3] Escalar un video a la mitad
ffmpeg -i input.mp4 -vcodec libx265 -crf 28 -vf "scale=iw/2:ih/2" output.mp4
4] Concatenar videos.
ffmpeg -f concat -safe 0 -i files.txt -c copy output.mp4
El archivo files.txt debe contener las rutas de los videos en el formato:
file 'path/video1.mp4' file 'path/video2.mp4'
5] Extraer el audio de un video
ffmpeg -i video.mp4 -q:a 0 -map a audio.ogg