Video Compression and editing WindowsΒΆ
To capture video I used either my Phone or made video screen recording with [ScreenRec] (https://screenrec.com/screen-recorder/) software.
It can directly help compress and edit files but I have also been using ffmpeg on my vs code terminal with the command bellow :
ffmpeg -i input_video -vcodec libx264 -crf 25 -preset medium -vf scale=-2:1080 -acodec libmp3lame -q:a 4 -ar 48000 -ac 2 output_video.mp4
To install ffmpeg I have used this tutorial