Notifications are blocking images when doing Sol'Ex Capture

A place to report problems and bugs in SharpCap
Forum rules


If you have a problem or question, please check the FAQ to see if it already has an answer : https://www.sharpcap.co.uk/sharpcap-faqs

Please also read about Troubleshooting USB Issues before posting.

*** Please do not post license keys - please report any problems with licensing to 'admin' by private message ***

Please include the following details in any bug report:

* Version of SharpCap
* Camera and other hardware being user
* Operating system version
* Contents of the SharpCap log after the problem has occurred.
[If SharpCap crashes, please send the bug report when prompted instead of including the log]
Post Reply
lyujw1989
Posts: 3
Joined: Thu Apr 11, 2024 3:23 am

Notifications are blocking images when doing Sol'Ex Capture

#1

Post by lyujw1989 »

I'm writing regarding an issue during Sol'ex capture sessions where notifications are blocking the ROI, especially when the ROI's pixel height is low.

Could we adjust the ROI display slightly downward or modify the notification to ensure they don't overlap during filming? This adjustment is critical for the success of our Sol'ex captures. THS
User avatar
admin
Site Admin
Posts: 13370
Joined: Sat Feb 11, 2017 3:52 pm
Location: Vale of the White Horse, UK
Contact:

Re: Notifications are blocking images when doing Sol'Ex Capture

#2

Post by admin »

Hi,

would it work if there was an option to display the notifications at the bottom instead of the top? I would have to check how that interacts with things like the controls and histogram panel, but it might be the easiest solution.

cheers,

Robin
Jean-Francois
Posts: 403
Joined: Sun Oct 13, 2019 10:52 am
Location: Germany

Re: Notifications are blocking images when doing Sol'Ex Capture

#3

Post by Jean-Francois »

Hello,

The script function: SharpCap.ShowNotification(None) disable the notification during a script.
But it does not stop the annotation with a manual capture.

Except you stop the capture from a script, then it could disable the annotation.
Here an example ... start a capture manually and then start the script for stopping the capture.
That is not really a good examples, but it is shows how it works.

Code: Select all

# IronPython Pad. Write code snippets here and F5 to run. If code is selected, only selection is run.

SharpCap.SelectedCamera.StopCapture()
SharpCap.ShowNotification(None)
Alternative ... if you have the Pro version, you can use my "INTI_SharpCap" capture script.

Here more information:
viewtopic.php?p=24205#p24205
and here where to download it.
viewtopic.php?p=40497#p40497
It is an "old" version. In the mean time I have some updates.

Best regards,
Jean-Francois
lyujw1989
Posts: 3
Joined: Thu Apr 11, 2024 3:23 am

Re: Notifications are blocking images when doing Sol'Ex Capture

#4

Post by lyujw1989 »

Maybe it will work, and I like it! thanks a lot.
admin wrote: Thu Apr 11, 2024 12:58 pm Hi,

would it work if there was an option to display the notifications at the bottom instead of the top? I would have to check how that interacts with things like the controls and histogram panel, but it might be the easiest solution.

cheers,

Robin
lyujw1989
Posts: 3
Joined: Thu Apr 11, 2024 3:23 am

Re: Notifications are blocking images when doing Sol'Ex Capture

#5

Post by lyujw1989 »

We do use script to automatic capture, Going to test this code.
Jean-Francois wrote: Thu Apr 11, 2024 7:58 pm Hello,

The script function: SharpCap.ShowNotification(None) disable the notification during a script.
But it does not stop the annotation with a manual capture.

Except you stop the capture from a script, then it could disable the annotation.
Here an example ... start a capture manually and then start the script for stopping the capture.
That is not really a good examples, but it is shows how it works.

Code: Select all

# IronPython Pad. Write code snippets here and F5 to run. If code is selected, only selection is run.

SharpCap.SelectedCamera.StopCapture()
SharpCap.ShowNotification(None)
Alternative ... if you have the Pro version, you can use my "INTI_SharpCap" capture script.

Here more information:
viewtopic.php?p=24205#p24205
and here where to download it.
viewtopic.php?p=40497#p40497
It is an "old" version. In the mean time I have some updates.

Best regards,
Jean-Francois
Post Reply