This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import threading | |
from PyQt6.QtCore import QObject, pyqtSlot, pyqtSignal | |
from pyffmpeg import FFmpeg | |
class Converter(QObject): | |
def __init__(self, parent=None): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
from PyQt6.QtGui import QGuiApplication | |
from PyQt6.QtQml import QQmlApplicationEngine | |
from PyQt6.QtQuick import QQuickWindow | |
from func import Converter | |
QQuickWindow.setSceneGraphBackend('software') |