Skip to content

Latest commit

 

History

History
38 lines (25 loc) · 1.07 KB

README.md

File metadata and controls

38 lines (25 loc) · 1.07 KB

pyside-media-loop

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).

Requirements

  • PySide6
  • pydub - for media function
  • mutagen - for checking mp3

Setup

pip3 install git+https://github.com/yjg30737/pyside-media-loop.git --upgrade

Example

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()

Result

Front-end

image