How to play a movie with mpv in your terminal window.

This command will display an image in your terminal. Very useful for viewing images without using an external image viewer. mpv –no-config –pause –vo=tct https://stallman.org/rms.jpgmpv –no-config –pause –vo=tct https://stallman.org/rms.jpg Play a movie in your terminal window with mpv. 4.4 Thu Nov 29 jason@Yog-Sothoth 0: $ mpv –no-config –vo=tct fc4.mp44.4 Thu…

Read More

Trim a video with ffmpeg very easily.

How to properly trim out a section of video with ffmpeg This ffmpeg command will trim out a section of video from a long video file. This is how a clip is snipped out of a movie file easily. ffmpeg -i "baraka.mkv" -ss 00:14:59.691 -to 00:17:24.044 -c:v libx264 -preset veryslow…

Read More

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…

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…

Read More

Create a video from one image and a wav file easily.

To create a video file from a wav, just use ffmpeg. This is how I created a 4k resolution video using just ffmpeg and an image file and audio wav I got off the Internet. Put both files into the same folder and then run this command. This will add…

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…

Read More

Gnome Shell Linux interface in Justin Beiber music video.

This music video features a Macintosh iMac PC with the Gnome Shell Linux interface. This is used as the main screen where the girl is typing on a notepad and then ripping the pages off the screen. This is an interesting place to see the Gnome Shell Linux desktop environment….

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…

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…

Read More