How to get information about a video file with the Linux command line.

The Linux command line may be used to get information about a video file easily. Here is an example. Getting the video resolution with a simple command. jason@jason-desktop:~/Videos$ ffprobe -v quiet -print_format json -show_format -show_streams burnout-in-a-town-street.mp4 | grep coded "coded_width": 400, "coded_height": 224,jason@jason-desktop:~/Videos$ ffprobe -v quiet -print_format json -show_format -show_streams burnout-in-a-town-street.mp4 | grep coded "coded_width": … Read more

How to record your Linux desktop to a mkv file with ffmpeg.

Record your Linux desktop to a video file and showcase it on Youtube To get a simple desktop recording of your Linux desktop for teaching purposes or any other use, just follow this guide. This command below. will record a high-quality video file of your Linux desktop to an MKV file. It will automatically get … Read more

Rip the audio from a video file the easy way with mplayer and convert it to an OGG file.

This post will show how to rip the audio from a video file to a wav and then convert that to an ogg file. This is very simple and easy to do. This long command will rip the audio from the file and save it in the out.wav file. localhost% mplayer -ao pcm:fast:file=out.wav -vo null … Read more

How to watch a Vimeo video in VLC media player.

To watch a Vimeo in VLC, we need to capture the actual video URL. Firstly, copy the video URL from the address bar. https://vimeo.com/3685071https://vimeo.com/3685071 Then paste this into the Open Network Stream option. After a short wait the video will open in VLC. This is how easy it is to play Vimeo without leaving a … Read more

Easy way to make a webm for Firefox playback with ffmpeg.

This is how to create a nice webm using FFmpeg on Linux. Firstly, capture the section of the video you wish to be encoded as a webm. This command will strip out a section of video from 00:09:23 to 00:09:33 and save it in the same format as the existing file. jason@jason-desktop:~/Videos$ ffmpeg -i total.mkv … Read more

A good guide to the backend functioning of a VOIP system.

This is a very good introduction to the fundamental workings of a Voice Over IP system. This video, posted on YouTube, shows the basic functionality of VOIP. Voice Over IP is a system that lets you send video messages and make telephone calls, using voice over IP communications. As these applications work through the Internet, … Read more

A recording of my Linux Mint 16 MATE desktop.

How I recorded this video. avconv -f x11grab -r 60 -s 1920×1080 -i :0.0 -vcodec libvpx -b:v 1M output.webmavconv -f x11grab -r 60 -s 1920×1080 -i :0.0 -vcodec libvpx -b:v 1M output.webm Use this command to install avconv. sudo apt-get install libav-toolssudo apt-get install libav-tools This is a very good way to show off your … Read more