Wednesday, May 31, 2023

Step to convert WebM to MP4 on a Linux machine:


Step to convert WebM to MP4 on a Linux machine:


https://geekbaniya.com/tutorials/how-to-convert-a-webm-file-to-mp4-in-4-easy-steps-on-a-linux-machine/



  1. To get the current app update on the Linux: Open the terminal and run “sudo apt-get update”
  2. Installation of ffmpeg library: Run the command “sudo apt-get install ffmpeg” this command will install the required libraries.
  3. First, we need to go into the directory like my videos are in the Video directory of my system that I want to convert from WebM to MP4 format. So I change the directory by running the command: “cd Video/” 
  4. To convert video from WebM to MP4: “ffmpeg -i input_filename.WebM output_filename.MP4” will start the process and take some time depending upon the machine’s power.

That’s it! Now you can try to convert your videos to some other video format similarly by running the command you learned from here. 

Note: Never forget Linux command terminal is case-sensitive. If you don’t consider this, you will end up with an error.

Thank you for connecting with GeekBaniya. 

See you soon!


https://geekbaniya.com/tutorials/how-to-convert-a-webm-file-to-mp4-in-4-easy-steps-on-a-linux-machine/#step-to-convert-web-m-to-mp-4-on-a-linux-machine

No comments:

Post a Comment

Kubernetes Commands for Beginners

 This document provides a list of basic Kubernetes commands useful for beginners. These commands help in interacting with the cluster and ma...