首頁 > 軟體

python中Pyqt5使用Qlabel標籤進行視訊播放

2022-04-22 10:00:11

Pyqt5安裝並設定到pycharm方法:教你如何用pycharm安裝pyqt5及其相關設定

一、簡介

QLabel是介面中的標籤類,繼承自QFrame類,提供文字和影象的顯示,是一種展示控制元件。

QLabel物件可以顯示不可編輯的文字或圖片,可以放置一個GIF動畫,還可以被用作提示標記為其他控制元件。

純文字、連結或富文字也可以顯示在標籤上。

二、基本用法

2.1 QLabel控制元件   

setAlignment():按固定值方式對齊文字,有以下對齊方式:

Qt.AlignLeft(水平方向靠左對齊) 、Qt.AlignRight(水平方向靠右對齊)、Qt.AlignCenter(水平方向居中對齊)、Qt.AlignJustify(水平方向調整間距兩端對齊)、Qt.AlignTop(垂直方向靠上對齊)、Qt.AlignBottom(垂直方向靠下對齊)、Qt.AlignVCenter(垂直方向居中對齊)

  • setIndent():設定文字縮排
  • setPixmap():設定QLabel為一個Pixmap圖片
  • text():獲得QLabel的文字內容
  • setText():設定QLabel的文字內容   
  • selectedText():返回所選擇的字元
  • setBuddy():設定夥伴關係
  • setWordWrap():設定是否允許換行

2.2 QLabel常用的訊號(事件)

1.linkHovered:當滑鼠指標滑過標籤中嵌入的超連結時,需要用槽函數與這個訊號進行繫結

2.linkActivated:當單擊標籤中嵌入的超連結,希望在新視窗中開啟這個超連結時,setOpenExternalLinks特性必須設定為true

三、QLabel播放視訊

使用QLabel播放視訊檔的重點就在****定時器QTimer

當程式中需要顯示時間時或者需要在程式中週期性地進行某項操作,就會用到定時器

 3.1 QTimer

匯入QTimer模組:

from PyQt5.QtCore import QTimer

初始化:

self.timer_camera = QTimer()

計時並啟動:

self.timer_camera.start(1000)   # 1000ms == 1s
self.timer_camera.timeout.connect(self.openFrame)  # 連線槽函數openFrame

注意:當QTimer的父物件被銷燬時,它也會被自動銷燬。

3.2 程式碼 

UI介面:

 python程式:

from PyQt5.QtGui import *
from PyQt5.QtWidgets import *
from PyQt5.QtCore import *
from PyQt5.uic import loadUiType
import cv2
import sys
vedio_ui, _ = loadUiType('./UI/vedio.ui')

class VedioGui(QMainWindow, vedio_ui):
    # 定義構造方法
    def __init__(self):
        QMainWindow.__init__(self)
        self.setupUi(self)
        self.timer_camera = QTimer()
        self.handle_buttons()
        self.open_vedio()
    # 所有Button的訊息與槽的通訊
    def handle_buttons(self):
        self.btn_Start.clicked.connect(self.Btn_Start)
        self.btn_Stop.clicked.connect(self.Btn_Stop)
    def Btn_Start(self):
        # 定時器開啟,每隔一段時間,讀取一幀
        self.timer_camera.start(100)
        self.timer_camera.timeout.connect(self.OpenFrame)
    def Btn_Stop(self):
        # self.cap.release()
        self.timer_camera.stop()
    def open_vedio(self):
        """選取視訊檔"""
        # 這裡以mp4和avi視訊播放為例
        openfile_name = QFileDialog.getOpenFileName(self, 'chose files', '', 'Image files(*.mp4 *.avi)')  # 開啟檔案選擇框選擇檔案
        self.file_name = openfile_name[0]  # 獲取圖片名稱

        # 得到檔案字尾名  需要根據情況進行修改
        suffix = self.file_name.split("/")[-1][self.file_name.split("/")[-1].index(".") + 1:]
        # print(self.file_name, suffix)
        if self.file_name == '':
            pass
        elif suffix == "mp4" or suffix == "avi":
            self.cap = cv2.VideoCapture(self.file_name)
    def OpenFrame(self):
        ret, image = self.cap.read()
        if ret:
            if len(image.shape) == 3:
                image = cv2.cvtColor(image, cv2.COLOR_BGR2RGB)
                vedio_img = QImage(image.data, image.shape[1], image.shape[0], QImage.Format_RGB888)
            elif len(image.shape) == 1:
                vedio_img = QImage(image.data, image.shape[1], image.shape[0], QImage.Format_Indexed8)
            else:
                vedio_img = QImage(image.data, image.shape[1], image.shape[0], QImage.Format_RGB888)
            self.vedio_label.setPixmap(QPixmap(vedio_img))
            self.vedio_label.setScaledContents(True)  # 自適應視窗
        else:
            self.cap.release()
            self.timer_camera.stop()

    # 介面關閉事件,詢問使用者是否關閉
    def closeEvent(self, event):
        reply = QMessageBox.question(self, '退出', "是否要退出該介面?",
                                     QMessageBox.Yes | QMessageBox.No, QMessageBox.No)
        if reply == QMessageBox.Yes:
            self.close()
            event.accept()
        else:
            event.ignore()

if __name__ == "__main__":
    app = QApplication(sys.argv)
    window = VedioGui()
    window.show()
    sys.exit(app.exec_())

視訊播放成功顯示: 

注:視訊播放沒有聲音

到此這篇關於python中Pyqt5使用Qlabel實現標籤進行視訊播放的文章就介紹到這了,更多相關Qlabel實現視訊播放內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com