Created
April 6, 2015 12:16
-
-
Save ese/2517db01f72f3e7ac102 to your computer and use it in GitHub Desktop.
This file contains 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
# Instalación | |
sudo add-apt-repository ppa:sunab/kdenlive-release | |
sudo apt-get update | |
sudo apt-get install x264 melt | |
# Analisis de movimiento | |
# smoothing | |
# description: Used during appication. Number of frames for lowpass filtering (2N + 1 frames) | |
# default=15 range: 0-100 | |
# | |
# shakiness | |
# description: Used during analysis. How shaky the video is. | |
# default: 4 range: 1-10 | |
melt VIDEO_ENTRADA.mp4 -filter vidstab shakiness=6 smoothing=16 accuracy=15 -consumer xml:descriptor.mlt all=1 | |
# Codificacion del video | |
melt descriptor.mlt -audio-track VIDEO_ENTRADA.mp4 -consumer avformat:VIDEO_SALIDA.mp4 vcodec=libx264 b=5000k acodec=aac ab=128k tune=film preset=slow |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment