How to reduce video file size
You need to have ffmpeg installed:
ffmpeg -i input.mp4 -vcodec libx264 -crf 20 output.mp4 ffmpeg -i input.mp4 -b 1000000 output.mp4 ffmpeg -i input.mp4 -b 700000 output.mp4… Read the rest
Notes
You need to have ffmpeg installed:
ffmpeg -i input.mp4 -vcodec libx264 -crf 20 output.mp4 ffmpeg -i input.mp4 -b 1000000 output.mp4 ffmpeg -i input.mp4 -b 700000 output.mp4… Read the rest
To install:
sudo apt-get install ffmpeg
To convert:
ffmpeg -i input.mp4 output.mpeg
Available formats:
ffmpeg -formats… Read the rest