implement flac wav aiff m4a

This commit is contained in:
billy 2026-07-24 08:24:03 -04:00
parent 368e05933e
commit cdaa1aa7ce
3 changed files with 5 additions and 5 deletions

View File

@ -35,7 +35,7 @@ from components.LyricsWindow import LyricsWindow
from components.AddToPlaylistWindow import AddToPlaylistWindow from components.AddToPlaylistWindow import AddToPlaylistWindow
from components.MetadataWindow import MetadataWindow from components.MetadataWindow import MetadataWindow
from components.QuestionBoxDetails import QuestionBoxDetails from components.QuestionBoxDetails import QuestionBoxDetails
from components.HeaderTags import HeaderTags2 from components.HeaderTags import MP3HeaderTags
from utils import ( from utils import (
batch_delete_filepaths_from_filesystem, batch_delete_filepaths_from_filesystem,
@ -109,7 +109,7 @@ class MusicTable(QTableView):
self.data_cache = {} self.data_cache = {}
self.playlist_scroll_positions: dict[int | None, int] = {} self.playlist_scroll_positions: dict[int | None, int] = {}
self.search_string: str | None = None self.search_string: str | None = None
self.headers = HeaderTags2() self.headers = MP3HeaderTags()
self.selected_song_filepath = "" self.selected_song_filepath = ""
self.selected_song_qmodel_index: QModelIndex self.selected_song_qmodel_index: QModelIndex
self.current_song_filepath = "" self.current_song_filepath = ""

View File

@ -11,6 +11,6 @@ from .CreatePlaylistWindow import CreatePlaylistWindow
from .PlaylistsPane import PlaylistsPane from .PlaylistsPane import PlaylistsPane
from .ExportPlaylistWindow import ExportPlaylistWindow from .ExportPlaylistWindow import ExportPlaylistWindow
from .QuestionBoxDetails import QuestionBoxDetails from .QuestionBoxDetails import QuestionBoxDetails
from .HeaderTags import HeaderTags2 from .HeaderTags import MP3HeaderTags
from .MediaPlayer import MediaPlayer from .MediaPlayer import MediaPlayer
from .SearchLineEdit import SearchLineEdit from .SearchLineEdit import SearchLineEdit

View File

@ -60,7 +60,7 @@ from components import (
AudioVisualizer, AudioVisualizer,
CreatePlaylistWindow, CreatePlaylistWindow,
ExportPlaylistWindow, ExportPlaylistWindow,
HeaderTags2, MP3HeaderTags,
DebugWindow, DebugWindow,
) )
from utils.export_playlist_by_id import export_playlist_by_id 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.tableView.load_qapp(self)
self.albumGraphicsView.load_qapp(self) self.albumGraphicsView.load_qapp(self)
self.playlistTreeView.load_qapp(self) self.playlistTreeView.load_qapp(self)
self.headers = HeaderTags2() self.headers = MP3HeaderTags()
# Settings init # Settings init
self.current_volume: int = int(self.config["settings"]["volume"]) self.current_volume: int = int(self.config["settings"]["volume"])