Skip to content

Commit 3e7e131

Browse files
committed
* Fixing error switching between copy and other encoders will break FastFlix
1 parent 240284a commit 3e7e131

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

CHANGES

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## Version 5.12.2
44

55
* 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
67

78
## Version 5.12.1
89

fastflix/widgets/panels/audio_panel.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -324,6 +324,8 @@ def disable_all(self):
324324
track.widgets.enable_check.setChecked(False)
325325

326326
def new_source(self, codecs):
327+
if not self.app.fastflix.current_video:
328+
return
327329
clear_list(self.tracks, close=True)
328330
self.app.fastflix.current_video.audio_tracks = []
329331
self.tracks: list[Audio] = []

0 commit comments

Comments
 (0)