發表文章

目前顯示的是 11月, 2022的文章

[第23期]Use pytube and PySide to download YouTube audio(mp3)/使用pytube與PySide下載YouTube聲音檔(mp3)

圖片
This vedio shows how to use pytube and PySide to download YouTube audio (mp3). The content includes:  PySide Introduction Filter Audio Stream Download and rename Youtube mp3 file   本視頻說明如何使用pytube與PyQt下載YouTube影片。 內容包含:  PySide簡介 篩選聲音資料流 下載和重新命名YouTube MP3檔 Pyside template  import sys from PySide6 import QtWidgets from PySide6 . QtCore import QFile , QIODevice from PySide6 . QtUiTools import QUiLoader class MainWindow ( QtWidgets . QMainWindow ):     def __init__ ( self , ui_file_name , * args , ** kwargs ): # access methods of the base class         super ( MainWindow , self ). __init__ (* args , ** kwargs )         # Load the UI Page by PySide6         loader = QUiLoader ()         file = QFile ( ui_file_name )         file . open ( QIODevice .ReadOnly)         self . ui = loader . load ( file )         file . close ()         self . ui . setWindowTitle ( "ui title" )         self . ui . show () def main ():     app = QtWidgets . QApplication ( sys

[第22期]Use PyQtGraph and nidaqmx to implement real time plots/使用PyQtGraph與nidaqmx實現時實的繪圖

圖片
 This video shows how to use PyQtGraph and nidaqmx to implement real time plots. The content includes:  1. Install NI-​DAQmx and python nidaqmx 2. Use Qt Designer to design GUI 3. Real-time display DAQ data 本视频说明如何使用PyQtGraph与nidaqmx实现时实的绘图。 内容包含:  1. 安装NI-​DAQmx与python nidaqmx 2. 使用Qt Designer设计图形介面 3. 实时显示DAQ资料 https://youtu.be/wFiPOLBbl2A

[第21期]Use PyQtGraph and PyQt to implement line and scatter plots/使用PyQtGraph與PyQt實現線與散狀圖

圖片
 This video shows how to use PyQtGraph and PyQt to implement line and scatter plots. The content includes:  1. PyQtGraph Introduction 2. Embedding custom widgets from Qt Designer 3. Use PlotWidget.plot() to add data to plot widget 本視頻說明如何使用PyQtGraph與PyQt實現線與散狀圖。 內容包含:  1. PyQtGraph簡介 2. 在Qt Designer嵌入客製化部件模組 3. 使用PlotWidget.plot()新增資料到繪圖部件中 https://youtu.be/J1nLwW5AjUk

[第20期]Use pytube and PyQt to download YouTube video/使用pytube與PyQt下載YouTube影片

圖片
This video shows how to use pytube and PyQt to download YouTube video. The content includes: 1. PyTube Introduction 2. Use Qt Designer to design GUI 3. One click download Youtube video 本視頻說明如何使用pytube與PyQt下載YouTube影片。 內容包含: 1. PyTube簡介 2. 使用Qt Designer設計人機圖形介面 3. 一鍵下載YouTube影片。