Skip to content

Instantly share code, notes, and snippets.

@jorarmarfin
Created February 7, 2026 15:55
Show Gist options
  • Select an option

  • Save jorarmarfin/2966c37b9653ef5f63c634238524a5ad to your computer and use it in GitHub Desktop.

Select an option

Save jorarmarfin/2966c37b9653ef5f63c634238524a5ad to your computer and use it in GitHub Desktop.
Comandos utiles para usar ffmpeg
# Extraer audio de un video
ffmpeg -i video.mp4 -q:a 0 -map a navidad.mp3
# unir imagen con mp3
ffmpeg -loop 1 -i caratula.png -i audio.mp3 -c:v libx264 -tune stillimage -c:a aac -b:a 192k -pix_fmt yuv420p -shortest resultado.mp4
# Subtitulos
ffmpeg -i video.mp4 -vf subtitles=subtitoli_italiano.srt video_final.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment