Horje
ffmpeg resize video Code Example
ffmpeg shrink video size
 ffmpeg -i input.mp4 -vcodec libx265 -crf 28 output.mp4
ffmpeg resize video
ffmpeg -i input.avi -vf scale=320:240 output.avi
ffmpeg change resolution
ffmpeg.exe -i input.mp4 -s 1376x744 output.mp4
video upscale ffmpeg
ffmpeg -i input.mp4 -vf scale=1920:1080:force_original_aspect_ratio=decrease,pad=1920:1080:-1:-1,setsar=1 -r 60 output.mp4
ffmpeg reduce video size
$ ffmpeg -i "[inputName.mp4]" -vcodec [libx265]  -crf [28] "[outputName.mp4]"
# vcodec: libx265 for HVEC or libx264 for H.264
# crf: ranges form 0-51, (Value > less quality & size), (Value < Higher quality & size, size can get higher than the original size)
# To ouput Matroska/Mkv ad: -f matroska
ffmpeg reduce video size
ffmpeg -i input.mp4 -fs 100M output.mp4

ffmpeg -i input.mp4 -vcodec libx264 -crf 24 output.mp4




Shell

Related
telegram kali linux Code Example telegram kali linux Code Example
install jdk linux command Code Example install jdk linux command Code Example
Faster Telegram installation on Kali Linux Code Example Faster Telegram installation on Kali Linux Code Example
unzip a tar.gz file in linux Code Example unzip a tar.gz file in linux Code Example
linux unzip tar.gz Code Example linux unzip tar.gz Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
12