Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

wmv to mp4 ffmpeg

ffmpeg -i input.wmv -c:v libx264 -crf 23 output.mp4
Comment

mp4 to ffmpeg

#MP4 - 1080p:
ffmpeg -i input.mov -preset slow -codec:a libfdk_aac -b:a 128k -codec:v libx264 -pix_fmt yuv420p -b:v 4500k -minrate 4500k -maxrate 9000k -bufsize 9000k -vf scale=-1:1080 output.mp4

#MP4 - 720p:
ffmpeg -i input.mov -preset slow -codec:a libfdk_aac -b:a 128k -codec:v libx264 -pix_fmt yuv420p -b:v 2500k -minrate 1500k -maxrate 4000k -bufsize 5000k -vf scale=-1:720 output.mp4

#MP4 - 480p:
ffmpeg -i input.mov -preset slow -codec:a libfdk_aac -b:a 128k -codec:v libx264 -pix_fmt yuv420p -b:v 1000k -minrate 500k -maxrate 2000k -bufsize 2000k -vf scale=854:480 output.mp4

#MP4 - 360p:
ffmpeg -i input.mov -preset slow -codec:a libfdk_aac -b:a 128k -codec:v libx264 -pix_fmt yuv420p -b:v 750k -minrate 400k -maxrate 1000k -bufsize 1500k -vf scale=-1:360 output.mp4
Comment

ffmpeg wmv to mp4

ffmpeg -i input.wmv -c:v libx264 -crf 23 -c:a aac -q:a 100 output.mp4
Comment

PREVIOUS NEXT
Code Example
Shell :: docker compose up specific yml 
Shell :: docker logs last few lines 
Shell :: git amend last commit message 
Shell :: install ssl ubuntu 
Shell :: awk if else statement 
Shell :: bash hide file 
Shell :: install docker on windows using powershell 
Shell :: how to reset back to commit id in git 
Shell :: git stash with message 
Shell :: install i18next-browser-languagedetector 
Shell :: git flow init 
Shell :: copy ssh remote server 
Shell :: how to remove untracked files in git 
Shell :: update git config username and email 
Shell :: npm install production only 
Shell :: ubuntu vim-plug install 
Shell :: upgrade seaborn version 
Shell :: How to import a particular version of uuid 
Shell :: The current branch master has no upstream branch. 
Shell :: git checkout tag 
Shell :: Ports are not available: listen tcp 0.0.0.0:61616: bind: An attempt was made to access a socket in a way forbidden by its access permissions. 
Shell :: npm install dev dependencies only 
Shell :: how to kill intellij process in linux 
Shell :: pod install not working bad interpreter: No such file or directory 
Shell :: how to add color in text github readme 
Shell :: install gatsby typography 
Shell :: grep count lines 
Shell :: ssh key pair github 
Shell :: windows where are pip packages installed 
Shell :: .gitignore not working 
ADD CONTENT
Topic
Content
Source link
Name
1+1 =