movie-progress command not found

In this troubleshooting guide we learn how to fix movie-progress command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

movie-progress: command not found

or when using sudo you get the following error message

sudo: movie-progress: command not found

Solutions to movie-progress: command not found

How To Fix movie-progress: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu movie-progress is provided by videotrans package.

videotrans is:

A collection of utilities and scripts designed to help with DVD authoring:

  • movie-to-dvd - convert video to MPEG2 + MP2 or AC3
  • movie-title - combine video and title sequence into a menu
  • movie-make-title - create background video for DVD menu
  • movie-make-title-simple - create background image+audio for DVD menu
  • movie-rip-tv.com - gather information about TV series from tv.com
  • movie-rip-epg.data - convert EPG to .info for movie-title
  • movie-compare-dvd - verify if DVD was burned correctly

To fix this problem, we can install more using the command below.

sudo apt-get -y install videotrans

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install videotrans.

sudo apt -y install videotrans

Or if you have aptitude installed you can use the following command.

sudo aptitude install videotrans

Summary

In this tutorial we learn how to fix movie-progress command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.