Skip to content

PySide software which can loop the media file (audio file only currently)

License

Notifications You must be signed in to change notification settings

yjg30737/pyside-media-loop

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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