Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 818 Bytes

README.md

File metadata and controls

27 lines (21 loc) · 818 Bytes

barcode-video-filler

Configuration

Visit sound bank like https://pixabay.com/cs/sound-effects and search for "success" and "error" e.g. Two sound file should be stored in the subfolder "./sound". The script expects also ./config.xaml in the current directory to set up configuration.

Build

Ubuntu

Using pygetwindow that supports only Windows windows. At this moment no Ubuntu build available.

Windows

Only no_gui.py variant works.

pip install -r requirements.txt
python no_gui.py

script for PowerShell to detect exact coordinates on the screen

Add-Type -AssemblyName System.Windows.Forms
while (1) {
    $X = [System.Windows.Forms.Cursor]::Position.X
    $Y = [System.Windows.Forms.Cursor]::Position.Y

    Write-Host -NoNewline ("`rX:{0,6:D} | Y:{1,6:D}" -f $X,$Y)
}