Metadata
- MediaInfo - File Metadata
This is an utility for displaying hidden metadata within a file.
To install it:
sudo apt install -y mediainfo-gui
Now we can launch it from the apps menu.
Remember that this type of data is usually not available from videos downloaded from the internet. The ideal scenario is that you possess a video file sent directly from a device.
- Exiftool - Image Metadata
Image metadata, also called Exif data, it can include the make, model and serial number of a camera or location data of the capture.
To install it:
sudo apt install -y libimage-exiftool-perl
To export the metadata from multiple images into a spreadsheet:
exiftool * -csv > ~/Desktop/Report.csv
- mat2 - Remove Metadata
To install it:
sudo apt install -y mat2
To remove metadata from an image:
mat2 dirty.jpg
- xeuledoc - Google Documents Metadata
To install it:
mkdir ~/Downloads/Programs/xeuledoc
cd ~/Downloads/Programs/xeuledoc
python3 -m venv xeuledocEnvironment
source xeuledocEnvironment/bin/activate
sudo pip install -U xeuledoc
deactivate
To extract metadata from a google document:
xeuledoc https://docs.google.com/spreadsheet/d/14151513415414
- Sherloq - Identify Modified Areas of Photographs
To install it:
cd ~/Downloads/Programs
sudo apt install subversion -y
git clone https://github.com/GuidoBartoli/sherloq.git
cd sherloq/gui
python3 -m venv sherloqEnvironment
source sherloqEnvironment/bin/activate
sudo pip install -r requirements.txt
deactivate
To launch the GUI:
python3 ~/Downloads/Programs/sherloq/gui/sherloq.py
- Custom metadata.sh script
To create a desktop shortcut for this script:
Last updated