implement flac wav aiff m4a
This commit is contained in:
parent
368e05933e
commit
cdaa1aa7ce
@ -35,7 +35,7 @@ from components.LyricsWindow import LyricsWindow
|
||||
from components.AddToPlaylistWindow import AddToPlaylistWindow
|
||||
from components.MetadataWindow import MetadataWindow
|
||||
from components.QuestionBoxDetails import QuestionBoxDetails
|
||||
from components.HeaderTags import HeaderTags2
|
||||
from components.HeaderTags import MP3HeaderTags
|
||||
|
||||
from utils import (
|
||||
batch_delete_filepaths_from_filesystem,
|
||||
@ -109,7 +109,7 @@ class MusicTable(QTableView):
|
||||
self.data_cache = {}
|
||||
self.playlist_scroll_positions: dict[int | None, int] = {}
|
||||
self.search_string: str | None = None
|
||||
self.headers = HeaderTags2()
|
||||
self.headers = MP3HeaderTags()
|
||||
self.selected_song_filepath = ""
|
||||
self.selected_song_qmodel_index: QModelIndex
|
||||
self.current_song_filepath = ""
|
||||
|
||||
@ -11,6 +11,6 @@ from .CreatePlaylistWindow import CreatePlaylistWindow
|
||||
from .PlaylistsPane import PlaylistsPane
|
||||
from .ExportPlaylistWindow import ExportPlaylistWindow
|
||||
from .QuestionBoxDetails import QuestionBoxDetails
|
||||
from .HeaderTags import HeaderTags2
|
||||
from .HeaderTags import MP3HeaderTags
|
||||
from .MediaPlayer import MediaPlayer
|
||||
from .SearchLineEdit import SearchLineEdit
|
||||
|
||||
4
main.py
4
main.py
@ -60,7 +60,7 @@ from components import (
|
||||
AudioVisualizer,
|
||||
CreatePlaylistWindow,
|
||||
ExportPlaylistWindow,
|
||||
HeaderTags2,
|
||||
MP3HeaderTags,
|
||||
DebugWindow,
|
||||
)
|
||||
from utils.export_playlist_by_id import export_playlist_by_id
|
||||
@ -137,7 +137,7 @@ class ApplicationWindow(QMainWindow, Ui_MainWindow):
|
||||
self.tableView.load_qapp(self)
|
||||
self.albumGraphicsView.load_qapp(self)
|
||||
self.playlistTreeView.load_qapp(self)
|
||||
self.headers = HeaderTags2()
|
||||
self.headers = MP3HeaderTags()
|
||||
|
||||
# Settings init
|
||||
self.current_volume: int = int(self.config["settings"]["volume"])
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user