Giter VIP home page Giter VIP logo

video-compare's Introduction

video-compare

GitHub release

Split screen video comparison tool written in C++14 using FFmpeg libraries and SDL2.

video-compare can be used to visually compare e.g. the effect of codecs and resizing algorithms on two video files played in sync. The tool is not very restrictive as videos are not required to be the same resolution, color format, container format, codec or duration. However, for the best result video files should have the same frame rate.

A movable slider enables easy viewing of the difference across any region of interest.

Thanks to the versatility of FFmpeg, it is actually also possible to use video-compare to compare two images. The common PNG and JPEG formats have been successfully tested to work.

Installation

Homebrew

Install via Homebrew:

brew install video-compare

Pre-compiled Windows 10 binaries

Pre-built Windows 10 x86 64-bit releases are available from this page. Download and extract the .zip-archive on your system, then run video-compare.exe from a command prompt.

Compile from source

Build it yourself.

Screenshots

Visual compare mode: Visual compare mode

Subtraction mode (plus time-shift and zoom): Subtraction mode"

Vertically stacked mode: Stacked mode"

Credits

video-compare was created by Jon Frydensbjerg (email: [email protected]). The code is mainly based on the excellent video player GitHub project: https://github.com/pockethook/player

Many thanks to the FFmpeg, SDL2 and stb authors.

Usage

Launch in disallow high DPI mode. Video pixels become doubled on high DPI displays. Recommended for displaying HD 1080p video on e.g. a Retina 5K display:

./video-compare video1.mp4 video2.mp4

Allow high DPI mode on systems which supports that. Video pixels are displayed "1-to-1". Useful for e.g. displaying UHD 4K video on a Retina 5K display:

./video-compare -d video1.mp4 video2.mp4

Increase bit depth to 10 bits per color component (8 bits is the default). Fidelity is increased while performance takes a hit. Significantly reduces visible banding on systems with a higher grade display and driver support for 30-bit color:

./video-compare -b video1.mp4 video2.mp4

Use a specific window size instead of deriving the window size from the video dimensions. The video frame will be scaled to fit. If either width or height is left out, the missing value will be calculated from the other specified dimension so that aspect ratio is maintained. Useful for downscaling high resolution video onto a low resolution display:

./video-compare -w 1280x720 video1.mp4 video2.mp4

Shift the presentation time stamps of the right video instead of assuming the videos are aligned. A positive amount has the effect of delaying the left video while negative values conversely delays the right video. Useful when videos are slightly out of sync:

./video-compare -t 0.080 video1.mp4 video2.mp4

Display videos stacked vertically at full size without a slider (hstack for horizontal stacking is also supported):

./video-compare -m vstack video1.mp4 video2.mp4

Preprocess one or both inputs via a list of FFmpeg video filters specified on the command line (see FFmpeg's video filters documentation). The Swiss Army knife for cropping/padding (comparing videos with different aspect ratios), adjusting colors, deinterlacing, denoising, speeding up/slowing down, etc.:

./video-compare -l crop=iw:ih-240 -r format=gray,pad=iw+320:ih:160:0 video1.mp4 video2.mp4

The above arguments can be combined in any order, of course.

Controls

  • Space: Toggle play/pause
  • Escape: Quit
  • Down arrow: Seek 15 seconds backward
  • Left arrow: Seek 1 second backward
  • Page down: Seek 600 seconds backward
  • Up arrow: Seek 15 seconds forward
  • Right arrow: Seek 1 second forward
  • Page up: Seek 600 seconds forward
  • S: Swap left and right video
  • A: Previous frame
  • D: Next frame
  • F: Save both frames as PNG images in the current directory
  • Z: Zoom area around cursor (result shown in lower left corner)
  • C: Zoom area around cursor (result shown in lower right corner)
  • 1: Toggle hide/show left video
  • 2: Toggle hide/show right video
  • 3: Toggle hide/show HUD
  • 0: Toggle video/subtraction mode
  • +: Time-shift right video 1 frame forward
  • -: Time-shift right video 1 frame backward

Move the mouse horizontally to adjust the movable slider position.

Click the mouse to perform a time seek based on the horizontal position of the mouse cursor relative to the window width (the target position is shown in the lower right corner).

Hold CTRL while time-shifting with +/- for faster increments/decrements of 10 frames per keystroke. Similarly, hold down the ALT key for even bigger time-shifts of 100 frames.

Build

Requirements

Requires FFmpeg headers and development libraries to be installed, along with SDL2 and its TrueType font rendering add on (libsdl2_ttf).

On Debian GNU/Linux the required development packages can be installed via apt:

apt install libavformat-dev libavcodec-dev libavfilter-dev libavutil-dev libswscale-dev libsdl2-dev libsdl2-ttf-dev

Instructions

Compile the source code via GNU Make:

make

The linked video-compare executable will be created in the soure code directory. To perform a system wide installation:

make install

Note that root privileges are required to perform this operation in most environments (hint: use e.g. sudo).

Notes

  1. Audio playback is not supported.

  2. Keep time-shifts below a few seconds for the best experience.

  3. Seeks require re-synchronization on the closest keyframe (i.e., I-frame).

Practical tips

Send To integration in Windows File Explorer

You can fire up the tool directly from the File Explorer when you don't need to specify any other arguments than the inputs via Right click -> Send To -> video-compare.

Here is how this integration works:

tg6c1m.mp4

You can do that quickly by selecting two files, then right clicking any of them, pressing N (focuses send to), then V (selects video-compare).

To get video-compare to appear in the Send To field you will need to open the send to folder, which you can access by typing shell:sendto in Run (Windows + R), then simply make a shortcut to video-compare.exe.

Thanks to couleurm for the sharing this tip and creating the screen recording above.

video-compare's People

Contributors

jonfryd avatar pockethook avatar unitof avatar patrik-csak avatar thomasbachem avatar elxy avatar utzcoz avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.