Ubuntu
Thursday, 21 February 2019
How convert mkv to mp4
convert an input video file into a MKV file using VP8 encoding with VORBIS audio encoding
ffmpeg -i input_video.avi -f matroska -vcodec vp8 -acodec libvorbis output_video.mkv
convert a video into a video using VP9 for video encoding and OPUS as audio encoding
ffmpeg -i input_video.avi -f matroska -vcodec vp8 -acodec aac output_video.mkv
Newer Post
Older Post
Home
Installing Minikube on Ubuntu 22.04 LTS
can't set the locale; make sure $LC_* and $LANG are correct
/etc/locale.gen uncoment en_GB.UTF-8 en_US.UTF-8 run locale-gen as root
Installing Minikube on Ubuntu 22.04 LTS
Step 1. Installing Docker # Add Docker's official GPG key: sudo apt-get update sudo apt-get install ca-certificates curl sudo instal...
How To Install Zoom Client on Ubuntu 22.04 LTS
sudo apt -y install wget wget https://zoom.us/client/latest/zoom_amd64.deb sudo apt install ./zoom_amd64.deb