JargeZ / ntscqt

AKA Line Maker 10.0 | GUI for VHS video simulator

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

'ProcessAudioCheckBox'

corneliusdevun opened this issue · comments

When attempting to render a video I am getting the error in terminal:

2022-08-24 20:46:59.162 | ERROR | main:crash_handler:20 - Uncaught exception: 'NtscApp' object has no attribute 'ProcessAudioCheckBox'
NoneType: None

If anyone could help that would be dope. I am on a M1 Mac Studio

Same thing happens to me on Windows 10. Weird.

Same thing happens to me on Windows 10. Weird.

So odd...hoping they get it running soon again or give us a solution. I've been attempting to troubleshoot it at home but nothing yet.

ntscqt_last_debug_log.log

This is my log file from the crash(s)

same here on an intel mac with macos catalina 10.15.7

I get the same error and crash, but I have at least found a workaround for now. In app/NtscApp.py, find the self.audio_filtering() line and comment it out (around line 562) so that it reads.

        self.setup_renderer()
        self.toggle_main_effect()
        self.lossless_exporting()
        #self.audio_filtering()
        self.progressBar.setValue(1)
        self.videoRenderer.render_data = render_data
        self.thread.start()

I'm brand new to the app so I don't know if this app actually does any audio processing, but at least the video renders for me.

Sorry, this is a bug that got into the master from the pull request, fixed In main now.
The main branch isn't green yet, so if you're running from source, check it out yourself.
Or use the checkout for the release version

Originally posted by @JargeZ in #67 (comment)