We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 240284a commit 3e7e131Copy full SHA for 3e7e131
CHANGES
@@ -3,6 +3,7 @@
3
## Version 5.12.2
4
5
* Fixing #671 Switching to the NVEncC AV1 encoder will break FastFlix (thanks to Krawk)
6
+* Fixing error switching between copy and other encoders will break FastFlix
7
8
## Version 5.12.1
9
fastflix/widgets/panels/audio_panel.py
@@ -324,6 +324,8 @@ def disable_all(self):
324
track.widgets.enable_check.setChecked(False)
325
326
def new_source(self, codecs):
327
+ if not self.app.fastflix.current_video:
328
+ return
329
clear_list(self.tracks, close=True)
330
self.app.fastflix.current_video.audio_tracks = []
331
self.tracks: list[Audio] = []
0 commit comments