Ubuntu: An error occurred. The specified movie could not be found

avatar
Borislav Hadzhiev

Last updated: Apr 5, 2024
2 min

banner

# Table of Contents

  1. Ubuntu: An error occurred. The specified movie could not be found
  2. Using the VLC video player instead

# Ubuntu: An error occurred. The specified movie could not be found

The Ubuntu error "An error occurred. The specified movie could not be found" occurs when you double-click on a video and is caused by an issue with Ubuntu 22.04 LTS.

To solve the error, remove the gstreamer1.0-vaapi file.

an error occurred the specified movie could not be found

Open your terminal and run the following command to remove the gstreamer1.0-vaapi file.

shell
sudo apt remove gstreamer1.0-vaapi

remove gstreamer vaapi plugin

Make sure to type y and press Enter if you get prompted for confirmation.

Gstreamer-vaapi is a collection of VA-API-based plugins for GStreamer and helper libraries.

The collection of plugins clashes with the Ubuntu 22.04 videos app and causes issues.

Removing the helper libraries resolves the issue.

You should now be able to double-click on a video (e.g. an mp4 file) and start it.

can start video after removing gstreamer vaapi

# Using the VLC video player instead

If the issue persists, you can try to use the VLC video player.

You can install the VLC media player by running the following 2 commands.

shell
sudo apt update sudo apt install vlc -y

Once you install VLC:

  1. Right-click on the video you're trying to play.
  2. Select Open with Other Application.

right click open with other application

  1. Select "VLC media player".

select vlc media player

Here is a short clip that demonstrates how this works.

open with vlc media player

If you decide to use this approach, you'd have to set the VLC media player as your default video player.

  1. Right-click on a video (e.g. mp4 file) and select Properties.

right click select properties

  1. Click on the Open With tab.

  2. Select VLC media player.

  3. Click on Set as default.

set vlc player as default application

Now VLC player will be used as your default video player application.

# Additional Resources

You can learn more about the related topics by checking out the following tutorials:

I wrote a book in which I share everything I know about how to become a better, more efficient programmer.
book cover
You can use the search field on my Home Page to filter through all of my articles.