Search found 9 matches

by CarlH
Tue Sep 26, 2023 3:41 pm
Forum: Bug Reports
Topic: Stretch Reset not working
Replies: 5
Views: 2845

Re: Stretch Reset not working

Hi Robin, when the problem happens, manually moving the black/middle/white lines in the histogram (to genereate a straight line like the reset would normally do) and then pressing the reset button "resets" to the last auto stretch setting, despite the locked-reset button being disabled. Fr...
by CarlH
Mon Sep 25, 2023 4:07 pm
Forum: Bug Reports
Topic: Stretch Reset not working
Replies: 5
Views: 2845

Re: Stretch Reset not working

Hi Robin, I run 120 seconds in live-view mode, switching sometimes to 2-4s for refocusing. Typically I also enable and disable the locked-stretch button a couple of times. It happens nearly every day, but it requires longer runs (in terms of hours rather than minutes). I will try to narrow done the ...
by CarlH
Sun Sep 24, 2023 3:01 am
Forum: Bug Reports
Topic: Stretch Reset not working
Replies: 5
Views: 2845

Stretch Reset not working

Hi Robin, when using the Locked Stretch in v4.1.11049 (Pro) for a longer period and then disabling it, the stretch Reset button does not work any more: it resets to the last auto stretch setting (even after manually changing the stretch to a different position). The bug has been there in previous be...
by CarlH
Thu Aug 27, 2020 9:34 pm
Forum: Scripting
Topic: Script / UI Sync Problems
Replies: 8
Views: 1992

Re: Script / UI Sync Problems

Here is the final code for reference, in case somebody is interested. The script stops fine in the middle of a recording, but not during a filter move - in this case an error appears and the recording continues, which can only be stopped by running and stopping the script again. import time import c...
by CarlH
Thu Aug 27, 2020 8:26 pm
Forum: Scripting
Topic: Script / UI Sync Problems
Replies: 8
Views: 1992

Re: Script / UI Sync Problems

Hi Robin,

I also managed to stop the last recording when the script is stopped:

Code: Select all

try:
    # script code

finally:
   if SharpCap.SelectedCamera.Capturing:
      SharpCap.SelectedCamera.StopCapture()
Cheers

Carl
by CarlH
Thu Aug 27, 2020 7:55 pm
Forum: Scripting
Topic: Script / UI Sync Problems
Replies: 8
Views: 1992

Re: Script / UI Sync Problems

Hi Robin,

replacing

Code: Select all

SharpCap.Wheels.SelectedWheel.Position = 1
by

Code: Select all

SharpCap.SelectedCamera.Controls.FilterWheel.Value='R'
solves the problem with the filter control box display.

Cheers

Carl
by CarlH
Thu Aug 27, 2020 7:07 pm
Forum: Scripting
Topic: Script / UI Sync Problems
Replies: 8
Views: 1992

Re: Script / UI Sync Problems

Hi Robin, adding the CaptureLimitType line to each filter does not help. But adding a SharpCap.SelectedCamera.StopCapture() after every capture ended helps (even if it looks a little strange in the message bar). Maybe capture end and file save do not happen instantaneously, so that a timing problem ...
by CarlH
Thu Aug 27, 2020 6:30 pm
Forum: Scripting
Topic: Script / UI Sync Problems
Replies: 8
Views: 1992

Re: Script / UI Sync Problems

Hi Robin thanks for the help. I've just installed the newest SharpCap version. The behaviour is the same: 1. Red filter is recorded fine, 30s, and Time Left is displayed on the status bar. Only the R filter box on the Camera Control Panel is not highlighted, it still shows L, even if R is beeing use...
by CarlH
Thu Aug 27, 2020 2:37 am
Forum: Scripting
Topic: Script / UI Sync Problems
Replies: 8
Views: 1992

Script / UI Sync Problems

This is my first attemp to create an atomated script that records R-G-B videos using a filter wheel in a loop until I stop the script. The first red filter recording works fine, but when starting with the green filter the script seems to start running wild: the current filter and the time left displ...