Ubuntu 16.04 — Media Programs

This is a continuation of my notes on installing Ubuntu 16.04. In this post, I install the programs that I use for working with different kinds of media like recording audio or creating videos.

Series Navigation:

Shutter

One of the most important programs that I use now is Shutter. It allows me to easily take screenshots of what I am working and edit the screenshots. The shutter package is easily installed from the Software Center. Once installed, I tweaked a few of the settings in Edit > Preferences.

The Shutter website has a repository for the latest updates, but the official Ubuntu repository already has the latest version.

First, I change the directory where it saves the screenshots:

Shutter Directory Change for Ubuntu 16.04

Second, I configured it to load automatically hidden only showing the indicator:

Shutter autostarting for Ubuntu 16.04

Visual

I installed the following other programs for working with visual media:

  • Gimp: for editing photos
  • Inkscape: vector-based drawing
  • Xournal: has features that allow marking up a PDF
sudo apt-get install \
    gimp \
    gimp-data-extras \
    inkscape \
    xournal

For the scanner to work over the network, I had to put in the IP address into /etc/sane.d/net.conf.

Audio

I installed the following audio programs:

sudo apt-get install audacity

Note: I attempted to install the latest version of MuseScore from the repo. Unfortunately, they haven’t updated the repo to include Xenial.

  sudo add-apt-repository ppa:mscore-ubuntu/mscore-stable
  sudo apt-get update
  sudo apt-get install musescore

Video

These are the programs I use for playing and editing video:

sudo apt-get install \
    gnome-mplayer \
    vlc \
    kdenlive \
    openshot \
    youtube-dl

Then, I installed the codecs for videos:

sudo apt-get install \
    libdvdnav4 \
    libdvdread4 \
    gstreamer1.0-plugins-bad \
    gstreamer1.0-plugins-ugly \
    ubuntu-restricted-extras

Resources

Leave a Comment

Your email address will not be published. Required fields are marked *