You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.0 KiB
Python
39 lines
1.0 KiB
Python
2 years ago
|
#########################
|
||
|
###
|
||
|
### GUI gestütztes Audio Analyse/Prediction
|
||
|
### ML-Programm.
|
||
|
### Features:
|
||
|
### - Download Audio/Video Daten von (legitimen) URLs
|
||
|
### - Setzen/Markieren von präferenz-Gewichtung bei Audio passagen
|
||
|
### - Lernen er Präferenzgewichtung durch CNN
|
||
|
### - Vorhersagen von Präferenzprofilen bei neuer Audio
|
||
|
### - Automatisierte Verarbeitung ganzer Playlists
|
||
|
###
|
||
|
##########################
|
||
|
|
||
|
import sys
|
||
|
from PyQt5.QtCore import *
|
||
|
from PyQt5.QtGui import *
|
||
|
from PyQt5.QtWidgets import *
|
||
|
|
||
|
class window(QWidget):
|
||
|
def __init__(self, parent = None):
|
||
|
super(window, self).__init__(parent)
|
||
|
self.resize(400,50)
|
||
|
self.setWindowTitle("DXM Bragi")
|
||
|
self.label = QLabel(self)
|
||
|
self.label.setText("Hello World")
|
||
|
font = QFont()
|
||
|
font.setFamily("Arial")
|
||
|
font.setPointSize(16)
|
||
|
self.label.setFont(font)
|
||
|
self.label.move(50,20)
|
||
|
|
||
|
def main():
|
||
|
app = QApplication(sys.argv)
|
||
|
ex = window()
|
||
|
ex.show()
|
||
|
sys.exit(app.exec_())
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
main()
|