Fix play with mplayer

This commit is contained in:
Keith Edmunds 2023-03-16 15:20:31 +00:00
parent 6bf9330b62
commit b30f2d5cc3

View File

@ -1421,10 +1421,10 @@ class PlaylistTab(QTableWidget):
)
return
cmd_list = ['gmplayer', '-vc', 'null', '-vo', 'null', track_path]
thread = threading.Thread(
target=self._run_subprocess, args=(cmd_list,))
thread.start()
cmd_list = ['gmplayer', '-vc', 'null', '-vo', 'null', track_path]
thread = threading.Thread(
target=self._run_subprocess, args=(cmd_list,))
thread.start()
def _open_in_audacity(self, row_number: int) -> None:
"""Open track in Audacity. Audacity must be already running"""