Hi, I have a Sony HC7 video camera which I plug into a laptop by a firewire connection. Is it possible to use some software to tell the camcoder to start recording 10 seconds of hitting the record button on the laptop?
I want to record my golf swing using the 3 seconds super slow mo feature, but dont have time to press record and the take a shot.
thanks for any help
+ Reply to Thread
Results 1 to 10 of 10
-
-
Yes, the new version of our Enosoft DV Processor can do that. It will need a script which I can help you with - it would be quite a trivial thing.
John Miller -
Thanks for your reply.
It nearly worked, i just couldnt get the time delay feature to work. I could get round it by writing some script, for example.
**script start**
wait 10 seconds
press Control+R (made up keyboard shortcut for record)
**script end**
would that be possible?
thanks alot -
Yes, it would.
Can you provide more detail on how the slow mo video is captured and sent via FireWire? i.e., you do have to do it to tape first or does it store the 3 seconds of video in memory and then send it as a DV stream at the normal frame rate? -
Here's a VBScript that will delay capture by a given time:
Code:Dim App Set App = CreateObject("EnoDVProcessor.EnoDV2DVApplication.1") App.Visible = True MsgBox "Please configure input and output then press OK. Do not press Run." + vbCrLf + vbCrLf + "Recording will start 10 seconds later.", vbOKOnly, "Ready" WScript.Sleep(10000) App.RunProcessor MsgBox "Click OK to stop recording and close.", vbOKOnly, "Recording..." App.Quit
John Miller -
thanks for your reply, it didnt quite work. It didnt set the camera recording
after i have chosen my dv camcorder from the drop down list, if i click the rec button nothing happens, i have to click the pause button which sets the camcorder recording. does that help? im not sure what the command is for the pause button.
thanks alot for your help, i think this could work! -
You can set the camcorder recording but it usually requires a tape otherwise the command is ignored.
If you try it without the script and press the record button on the input half of the sofware, does it work?
If you can let me know how/if you can get it to start via the computer, I can write a script to do it. -
If I press the rec button on the input side nothing happens.
But I can get the camera to start recording if i press the pause button -
This should do it:
Code:Dim App Set App = CreateObject("EnoDVProcessor.EnoDV2DVApplication.1") App.Visible = True App.DeviceControlEnable = True MsgBox "Please configure input and output then press OK. Do not press Run." + vbCrLf + vbCrLf + "Recording will start 10 seconds later.", vbOKOnly, "Ready" WScript.Sleep(10000) App.ClickDeviceControlButton 5, True ' 5 = Pause button, True = Input MsgBox "Click OK to stop recording and close.", vbOKOnly, "Recording..." App.Quit
John Miller -
thank you, that worked perfect!!!!!!
is it possible to have a scipt so that this line is run...
App.ClickDeviceControlButton 5, True ' 5 = Pause button, True = Input
...if the input sound level reaches a certain volume!?
it might look something like:
***loop start (loop for 10 seconds)***
IF sound is loud
Press Pause Button
Exit Loop
ENDIF
***Loop End***
The camcorder I have has a feature where it records the 3 seconds before you press the record button. So i was thinking the software could start the camcorder recording after detecting a large soung (eg the ball being hit) automatically.
Many Thanks
Similar Threads
-
dvd m2v time delay problem
By codemaster in forum DVD RippingReplies: 14Last Post: 28th Nov 2010, 20:02 -
Converting Videos with a Time Delay to XviD/MP4/MKV?
By BNA84 in forum Video ConversionReplies: 4Last Post: 5th Feb 2010, 17:20 -
where is the audio delay time stored on an authored dvd?
By Toastie in forum Authoring (DVD)Replies: 1Last Post: 12th Oct 2009, 07:45 -
I want to record several TV stations at the same time ;-)) Is it possible?
By avchdbg in forum DVD & Blu-ray RecordersReplies: 2Last Post: 7th Oct 2008, 09:11 -
How to set delay time of all text in the sub.
By hmanhha in forum SubtitleReplies: 3Last Post: 22nd Feb 2008, 13:53