Video Properties in File Manager

In the Canonical version of Ubuntu 16.04 and Cylon Linux 12.04 in file manager you can right click on a video file and it will display the video format information like , the resolution of the video and the audio format like 2 channel audio or 5.1 or 7.1 DTS surround Sound or Doubly Surround Sound but with MATE Ubuntu 16.04 this information is not available, is there a way to have the file manager display this information? Does MATE Use a different file manager then Canonical Ubuntu?

Thanks

If you install caja-actions and exiftool, you can write a script that you can then call from the context-menu of selected files.

caja-actions is an extension to caja that gives you this ability (and more; it’s a great tool!)
exiftool is a command line application that reads metadata from multimedia files.

If no one comes up with a better solution in the meantime and you don’t feel confident programming bash or python scripts, be patient enough and I’ll be happy to set you up with something in the next few days. You’ll need those two programs installed in your machine. They aren’t by default.

1 Like

Hi @daldude, Yes, Mate’s Caja is the evolution of Gnome2’s Nautilus file manager.

I know at one time, Totem was integrated with Nautilus giving those media details and reading Totem’s features it appears they still do exactly this.

I suppose it is likely installing Nautilus and Totem would get this feature back, but in Nautilus, not Caja. I sort of miss this, too. But I must admit @marfig 's suggestion sounds enticing.

How would I install caja-actions and exiftool
I don’t know how to write scripts so is I did install caja-actions and exiftool what good would it be to me?

I’ll instruct you through the whole process when I have the script ready. Is that ok?

1 Like

I’ll instruct you through the whole process when I have the script ready. Is that ok?

Yes That’s OK

Ok. As promised, it is done. Below is what you will be seeing:

It uses the dialog window offered by caja-actions. It is not the most ideal for this purpose. But for now it will do. I'll be improving the script later on and it will eventually make use of its own window, where I will have more formatting opportunities.

The data you will have access on will depend on the video container type. The script is also planned to include any subtitle tracks in the video file, but because that dialog box is not scrollable, I removed this for now until it display the information on its own window.

The audio tracks are already displayed however. The format for the first line of each track is (trackNo) (language) Track Name. If the parenthesis in the language are empty, it only means the author forgot to specify the language.

Installation

Step 1. Install the required software.
You will want caja-actions to execute the script and exiftool which is the program the script uses to collect the video file metadata.

Open a terminal window and execute these commands:

$ sudo apt-get update
$ sudo apt-get install caja-actions libimage-exiftool-perl

Make sure everything is alright by typing exiftool -ver at your command prompt. You should get back the program version. At this time that's 10.10.

As for the caja-actions, you should see a new entry in your menu, under System -> Preferences -> Look and Feel, named "Caja-Actions Configuration Tool".

Step 2. Install the script.
We are now going to install the script that does it for you. It's named videometadata.

Create a new directory in your home folder named ".caja-actions".

from your terminal window go inside that new directory you just created and type:

$ git clone https://github.com/Rahtgaz/caja-actions-scripts.git

After that is done, type the following commands to make the script executable:

$ cd caja-actions-scripts/python
$ chmod +x videometadata

Step 3. Set Caja-actions to use the script
We are now going to finish by setting the script inside caja-actions. Cool stuff.

  1. Close any Caja instances you may have opened.

  2. Open the Caja-Actions Configuration Tool by going to System -> Preferences -> Look and Feel

  3. Start by clicking the Define New Action button in the toolbar (leftmost icon button)

  4. These are the settings for the Action tab:

  5. Now the settings for the Command tab (the Path should be different for you of course):

  6. In the Execution tab, choose Display Output from the options given.

  7. Skip the Basenames tab and go to the Mimetypes tab. Here we want to set it like you see below:

  8. Skip the next three tabs and go to the Environment tab. In here you want to set the Count exactly equal to 1. This will mean that the option to view the metadata will only show if you select 1 file, not multiple files. Currently the script can only accept one file as argument.

  9. The last Properties tab is not essential, but it doesn't hurt:

  10. You are done. Save everything by clicking the Save button.

Usage

Whenever you right click a video file in caja, you will now see a new entry in the menu named Caja-Actions actions. And in the submenu you will see View Metadata. You can click it to see the information of the video file.

2 Likes