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)
- Host: GitHub
- URL: https://github.com/yjg30737/pyside-media-loop
- Owner: yjg30737
- License: mit
- Created: 2022-09-04T00:19:45.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-07-28T00:16:12.000Z (almost 3 years ago)
- Last Synced: 2025-05-31T19:32:33.543Z (about 1 year ago)
- Topics: loop, looper, looping, media-editor, media-loop, mediaeditor, medialoop, mutagen, pydub, pyqt, pyqt5, pyqt6, pyside, pyside6, python-media, qmediaplayer
- Language: Python
- Homepage:
- Size: 32.2 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
