Add files via upload
Add all /data/sounds/*.mp3 in the playlist
This commit is contained in:
parent
44ad8b334c
commit
8dfc29b976
@ -47,7 +47,7 @@ else:
|
|||||||
# Paths
|
# Paths
|
||||||
PATH = os.path.dirname(os.path.abspath(__file__))
|
PATH = os.path.dirname(os.path.abspath(__file__))
|
||||||
ICON_PATH = os.path.join(PATH, "data", "icons", "icon.ico")
|
ICON_PATH = os.path.join(PATH, "data", "icons", "icon.ico")
|
||||||
bg_IMAGE_DIR = os.path.join(PATH, "data", "backgrounds")
|
BG_IMAGE_DIR = os.path.join(PATH, "data", "backgrounds")
|
||||||
MUSIC_PATH = os.path.join(PATH, "data", "sounds", "Tetris - Song A.mp3")
|
MUSIC_PATH = os.path.join(PATH, "data", "sounds", "Tetris - Song A.mp3")
|
||||||
SOUNDS_DIR = os.path.join(PATH, "data", "sounds")
|
SOUNDS_DIR = os.path.join(PATH, "data", "sounds")
|
||||||
LOCALE_PATH = os.path.join(PATH, "data", "locale")
|
LOCALE_PATH = os.path.join(PATH, "data", "locale")
|
||||||
@ -1291,8 +1291,8 @@ class Frames(QtWidgets.QWidget):
|
|||||||
self.paused = False
|
self.paused = False
|
||||||
|
|
||||||
self.backgrounds = tuple(
|
self.backgrounds = tuple(
|
||||||
QtGui.QImage(os.path.join(bg_IMAGE_DIR, entry.name))
|
QtGui.QImage(os.path.join(BG_IMAGE_DIR, entry.name))
|
||||||
for entry in os.scandir(bg_IMAGE_DIR)
|
for entry in os.scandir(BG_IMAGE_DIR)
|
||||||
if entry.is_file() and ".jpg" in entry.name
|
if entry.is_file() and ".jpg" in entry.name
|
||||||
)
|
)
|
||||||
self.reset_backgrounds()
|
self.reset_backgrounds()
|
||||||
@ -1346,8 +1346,12 @@ class Frames(QtWidgets.QWidget):
|
|||||||
|
|
||||||
def load_music(self):
|
def load_music(self):
|
||||||
playlist = QtMultimedia.QMediaPlaylist(self)
|
playlist = QtMultimedia.QMediaPlaylist(self)
|
||||||
|
for entry in os.scandir(SOUNDS_DIR):
|
||||||
|
if entry.is_file() and ".mp3" in entry.name:
|
||||||
music_path = QtMultimedia.QMediaContent(
|
music_path = QtMultimedia.QMediaContent(
|
||||||
QtCore.QUrl.fromLocalFile(MUSIC_PATH)
|
QtCore.QUrl.fromLocalFile(
|
||||||
|
os.path.join(SOUNDS_DIR, entry.name)
|
||||||
|
)
|
||||||
)
|
)
|
||||||
playlist.addMedia(music_path)
|
playlist.addMedia(music_path)
|
||||||
playlist.setPlaybackMode(QtMultimedia.QMediaPlaylist.Loop)
|
playlist.setPlaybackMode(QtMultimedia.QMediaPlaylist.Loop)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user