Skip to main content

For the love of python and qml

Project description

soloman Downloads

For the love of python and qml

Change Log

version 2.3

  • Add helper functions for OpenCV users to handle frames per second rates.

refer to milestone

Installation

pip install soloman

Python Usage

Show cv2 frame

example.py

import sys
import cv2
import threading
from time import sleep

from PyQt5.QtGui import QGuiApplication
from PyQt5.QtQml QQmlApplicationEngine
import soloman

app = QGuiApplication(sys.argv)

# Create a QML engine.
engine = QQmlApplicationEngine()
engine.quit.connect(app.quit)
engine.load(QUrl('example.qml'))

# Get SVideo
vid = soloman.Video(engine)
vid.get_SVideo('screen_01')  # objectName goes here

# Capture
capture = cv2.VideoCapture(0)  # capture camera

def start_capt():
    # start thread
    o_thread = threading.Thread(target=_start_capt)
    o_thread.daemon = True
    o_thread.start()

def _start_capt():

    while True:

        ret, frame = capture.read()

        if not ret:
            break

        vid.show_frame(frame)
        sleep(1/24)

# Call to start capturing
start_capt()

# Run the app
ret_value = app.exec_()
capture.release()
sys.exit(0)

example.qml

import QtQuick 2.14
import QtQuick.Controls 2.14
import solomon 2.2

ApplicationWindow {
	visible: true
	width: 800
	height: 500

    SVideo {
        objectName: "screen_01"  // declare objectName to be used in python
    }

}

Play audio

from soloman import Audio


aud = Audio()
aud.play('/path/to/music.mp3')

Qml Usage

example.py

import soloman
...
engine = QQmlApplicationEngine()
...
engine.load('example.qml')

Play audio

example.qml

import QtQuick 2.14
...
import soloman 2.2

SAudio {
    id: aud
}

Button {
    text: "Play"
    onClicked: aud.play('path/to/music.mp3')
}

Play videos

example.qml

Play a video file

import QtQuick 2.14
...
import soloman 2.1

SVideo {
    id: vid
}

Button {
    text: "Play video"
    onClicked: vid.play('path/to/video.mp4')
}

Play stills

Option one
...
    onClicked: vid.play('path/to/video_stills_01.jpg') # possibly the first image
...
Option two
...
    onClicked: vid.play('path/to/') # make sure folder contains only stills
...

Wiki

The wiki can be located here

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

soloman-2.3.tar.gz (9.8 kB view details)

Uploaded Source

Built Distribution

soloman-2.3-py3-none-any.whl (10.7 kB view details)

Uploaded Python 3

File details

Details for the file soloman-2.3.tar.gz.

File metadata

  • Download URL: soloman-2.3.tar.gz
  • Upload date:
  • Size: 9.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.2.0.post20200210 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.7.6

File hashes

Hashes for soloman-2.3.tar.gz
Algorithm Hash digest
SHA256 b434939cc61830e40fa162aecbafd06a3fff5f4331cdc71952a40aae9409fb6c
MD5 588011f62f75e018752a79a15a48228f
BLAKE2b-256 ea2da2c1a1e7ae76618950ced813fb5d1854d780566513758f2c7a524198e3bf

See more details on using hashes here.

Provenance

File details

Details for the file soloman-2.3-py3-none-any.whl.

File metadata

  • Download URL: soloman-2.3-py3-none-any.whl
  • Upload date:
  • Size: 10.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.2.0.post20200210 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.7.6

File hashes

Hashes for soloman-2.3-py3-none-any.whl
Algorithm Hash digest
SHA256 73430a7e250814847e46a19280d3eb10b82cc56683e21a235b5af91b0b28c241
MD5 0071ec58de2ad049833d995cb7e7b5cb
BLAKE2b-256 5a2aa021879dd160b577d50140450c30559f216bf28f6f06a393168602389080

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page