An open API service indexing awesome lists of open source software.

https://github.com/yjg30737/pyside-media-loop

PySide software which can loop the media file (audio file only currently)
https://github.com/yjg30737/pyside-media-loop

loop looper looping media-editor media-loop mediaeditor medialoop mutagen pydub pyqt pyqt5 pyqt6 pyside pyside6 python-media qmediaplayer

Last synced: 11 months ago
JSON representation

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

Awesome Lists containing this project

README

          

# 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
```python
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](https://user-images.githubusercontent.com/55078043/188292533-174d4c43-96ff-41d3-86c6-60860581e28c.png)