Skip to main content

For the love of python and qml

Project description

soloman Downloads

For the love of python and qml

refer to milestone

Installation

pip install soloman

Python Usage

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.15
...
import soloman 2.5

SAudio {
    id: aud
}

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

Play videos

example.qml

Play a video file

import QtQuick 2.15
...
import soloman 2.5

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
...

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.15
import QtQuick.Controls 2.15
import solomon 2.5

ApplicationWindow {
	visible: true
	width: 800
	height: 500

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

}

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.6.tar.gz (10.6 kB view details)

Uploaded Source

Built Distribution

soloman-2.6-py3-none-any.whl (11.4 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: soloman-2.6.tar.gz
  • Upload date:
  • Size: 10.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for soloman-2.6.tar.gz
Algorithm Hash digest
SHA256 1d5d881fa1687314c0dcbf170cdaacd9b2c16ac0b40c0dcaa6d0c7322e4fd06f
MD5 f62969c760c2b110138f5085d1eeb5fc
BLAKE2b-256 dd8ae59a56ba581bac07ea2774f3a6ad047f6cd5935b53812169f6fdbbb78eda

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: soloman-2.6-py3-none-any.whl
  • Upload date:
  • Size: 11.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for soloman-2.6-py3-none-any.whl
Algorithm Hash digest
SHA256 93f71780cf3811afb902d12b4791f77dce52866d0ef3dfd46818d6642787b429
MD5 bb67bb6b5cb5ff5c631604605b6df451
BLAKE2b-256 1a8a19e444e5399380a360a74a0398191040204d62fe32abf7424397ae631dd7

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