Created
February 7, 2026 15:55
-
-
Save jorarmarfin/2966c37b9653ef5f63c634238524a5ad to your computer and use it in GitHub Desktop.
Comandos utiles para usar ffmpeg
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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