Here’s how to reduce a MP4 video using H.265 format.
ffmpeg -i input.mp4 -vcodec libx265 -crf 28 output.mp4 |
I was able to reduce a video file from 550MB to 26MB without much quality loss.
cloud engineer
Here’s how to reduce a MP4 video using H.265 format.
ffmpeg -i input.mp4 -vcodec libx265 -crf 28 output.mp4 |
ffmpeg -i input.mp4 -vcodec libx265 -crf 28 output.mp4
I was able to reduce a video file from 550MB to 26MB without much quality loss.
How to sort files in Bash.
Display contents
$ cat file.txt
bbb
aaa
ccc
kkk
uuu
ppp |
$ cat file.txt bbb aaa ccc kkk uuu ppp
Sort
$ sort file.txt
aaa
bbb
ccc
kkk
ppp
uuu |
$ sort file.txt aaa bbb ccc kkk ppp uuu
Sort in place
$ sort -o file.txt file.txt $ cat file.txt aaa bbb ccc kkk ppp uuu |
$ sort -o file.txt file.txt $ cat file.txt aaa bbb ccc kkk ppp uuu