Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ignacypolak1/q-meta
Image metadata file browser written in Qt/C++
https://github.com/ignacypolak1/q-meta
cpp metadata osint osint-tool qt
Last synced: 10 days ago
JSON representation
Image metadata file browser written in Qt/C++
- Host: GitHub
- URL: https://github.com/ignacypolak1/q-meta
- Owner: ignacypolak1
- License: mit
- Created: 2024-01-27T18:22:19.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-23T13:37:39.000Z (3 months ago)
- Last Synced: 2024-11-23T14:28:02.175Z (2 months ago)
- Topics: cpp, metadata, osint, osint-tool, qt
- Language: QML
- Homepage:
- Size: 1.82 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# QMeta Browser
![](img.png)
## Description:
Introducing a simple file browser designed for exploring image files metadata. With this application, users can effortlessly navigate through their image collection, gaining insights into crucial details like camera settings, date taken, and resolution. Additionally, for images containing location information, the application provides the option to open a map.## Dependencies:
Project was built with Qt 6.7 using CMake version 3.28.1, Ninja version 1.11.1 and GCC 12.2.1 x86_64-pc-linux-gnu.## Installation
1. Set CMake prefix path to your QT installation in CMakeLists.txt like:
```bash
set(CMAKE_PREFIX_PATH "/home//Qt/6.7.0/gcc_64" ${CMAKE_PREFIX_PATH})
```
2. Create build directory in project root directory and "cd" into it:
```bash
mkdir build
cd build
```
3. Run cmake from within build folder using the following command (generate configuration files):
```bash
cmake -DCMAKE_C_COMPILER:FILEPATH= -DCMAKE_CXX_COMPILER:FILEPATH= .. -G Ninja
```
4. Run ninja inside build directory to compile project:
```bash
ninja
```