PySide software which can loop the media file (mp3 audio file only currently)
You can see a lot of 30 minutes or 10 hrs loop media in Youtube, this works well if you want to make it.
My first PySide software.
The most important thing is, this package doesn't import my other package like the others such as Dark Notepad(which will be very confusing).
pip3 install git+https://github.com/yjg30737/pyside-media-loop.git --upgrade
from PySide6.QtWidgets import QApplication
from pyside_media_loop.mediaLoop import MediaLoop
if __name__ == "__main__":
import sys
app = QApplication(sys.argv)
ex = MediaLoop()
ex.show()
app.exec()
Front-end