JargeZ / ntscqt

AKA Line Maker 10.0 | GUI for VHS video simulator
Apache License 2.0
819 stars 37 forks source link

'ProcessAudioCheckBox' #57

Closed corneliusdevun closed 1 year ago

corneliusdevun commented 2 years ago

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

MogManek commented 2 years ago

Same thing happens to me on Windows 10. Weird.

corneliusdevun commented 2 years ago

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.

corneliusdevun commented 2 years ago

ntscqt_last_debug_log.log

This is my log file from the crash(s)

shiypc commented 2 years ago

same here on an intel mac with macos catalina 10.15.7

klassixx commented 2 years ago

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.

JargeZ commented 1 year ago

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 https://github.com/JargeZ/ntscqt/issues/67#issuecomment-1369056105