<div dir="ltr">Hello Magician,<br><br>I think you can use Python, and PythonQt to make a fake "record" button press, after the desired amount of time.<div>Just try this:</div><div>def myfunc():</div><div>    vv.app.actions['actionRecord'].toggle()</div><div>    print ("Toggled recording")</div><div><br></div><div><div>qq=QtCore.QTimer()</div><div>qq.setSingleShot(True)</div><div>qq.connect('timeout()',myfunc)</div></div><div>recordingTimeInMilliseconds = 60 * 1000</div><div>qq.start(recordingTimeInMilliseconds)</div><div><br></div><div>Hope this helps,</div><div class="gmail_extra"><br clear="all"><div><div class="gmail_signature"><div dir="ltr"><a href="https://www.linkedin.com/in/bastienjacquet" target="_blank">Bastien Jacquet, PhD</a><br>VeloView Lead Developer - Computer Vision Team<br><a href="http://www.kitware.eu" target="_blank">Kitware SAS</a><br>26 rue Louis Guérin - 69100 Villeurbanne - France<br>F: +33 (0)4.37.45.04.15</div></div></div>
<br><div class="gmail_quote">On Sun, Feb 11, 2018 at 3:55 PM, Magician <span dir="ltr"><<a href="mailto:info@paraview-expert.com" target="_blank">info@paraview-expert.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Hi all,<br>
<br>
<br>
I’m using VeloView 3.5.0 (Windows 64bit) and recording VLP-16’s data packets.<br>
I want to set the total recording time or stopping time, but VeloView have no option to do it on the GUI.<br>
<br>
Is there a good way? (ex. using Python)<br>
<br>
<br>
Magician<br>
<a href="http://www.paraview-expert.com/" rel="noreferrer" target="_blank">http://www.paraview-expert.<wbr>com/</a><br>
______________________________<wbr>_________________<br>
Powered by <a href="http://www.kitware.com" rel="noreferrer" target="_blank">www.kitware.com</a><br>
<br>
Visit other Kitware open-source projects at <a href="http://www.kitware.com/opensource/opensource.html" rel="noreferrer" target="_blank">http://www.kitware.com/<wbr>opensource/opensource.html</a><br>
<br>
Please keep messages on-topic and check the ParaView Wiki at: <a href="http://paraview.org/Wiki/ParaView" rel="noreferrer" target="_blank">http://paraview.org/Wiki/<wbr>ParaView</a><br>
<br>
Search the list archives at: <a href="http://markmail.org/search/?q=ParaView" rel="noreferrer" target="_blank">http://markmail.org/search/?q=<wbr>ParaView</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="https://public.kitware.com/mailman/listinfo/paraview" rel="noreferrer" target="_blank">https://public.kitware.com/<wbr>mailman/listinfo/paraview</a><br>
</blockquote></div><br></div></div>