Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mpvqc/mpvQC
libmpv based application for quality control of videos
https://github.com/mpvqc/mpvQC
libmpv linux mpv quality-control windows
Last synced: 2 months ago
JSON representation
libmpv based application for quality control of videos
- Host: GitHub
- URL: https://github.com/mpvqc/mpvQC
- Owner: mpvqc
- License: gpl-3.0
- Created: 2016-02-03T15:21:54.000Z (almost 9 years ago)
- Default Branch: main
- Last Pushed: 2024-04-13T12:55:43.000Z (10 months ago)
- Last Synced: 2024-04-14T02:43:04.783Z (10 months ago)
- Topics: libmpv, linux, mpv, quality-control, windows
- Language: QML
- Homepage: https://mpvqc.github.io
- Size: 6.78 MB
- Stars: 44
- Watchers: 6
- Forks: 2
- Open Issues: 3
-
Metadata Files:
- Readme: README.MD
- License: LICENSE
Awesome Lists containing this project
- awesome-mpv - mpvQC - Cross-platform application for quality control of videos, based on Python/QT. (Other)
README
# mpvQC
A libmpv-based application for quick and easy creation of video file quality control reports.
https://mpvqc.github.io# Development Setup
This project assumes that a virtual environment is used:
* [Guide for Linux](docs/dev-setup-linux.md)
* [Guide for Windows](docs/dev-setup-windows.md)We use `just` (https://github.com/casey/just) to build our application.
```shell
$ just
Available recipes:
format # Format code
install-dependencies # Install dependencies into the virtual environment[build]
build # Build full project into build/release
build-develop # Build and compile resources into source directory
clean # Remove ALL generated files[i18n]
add-translation locale # Add new language
update-translations # Update *.ts files by traversing the source code[lint]
lint-python # Lint Python files
lint-qml # Lint QML files[test]
test # Run Python and QML tests
test-python # Run Python tests
test-qml # Run QML tests
```Run `just build-develop` after each change in the `data`, `i18n`, or `qml` directories.
This will *compile* everything into a Python file and move it into the `mpvqc` directory
where it will be picked up on app start.If you're on Linux, and you're using PyCharm or something similar:
Create a run configuration that runs the `build-develop` recipe before starting the application.# Internationalization
If you want to help translating this application into other languages, checkout the [guide](docs/internationalization.md).
Please feel free to open a new issue in case you need help.