Login  Register

A problem with runnig VirtualDub in ImageJ

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options Options
Embed post
Permalink
Reply | Threaded
Open this post in threaded view
| More
Print post
Permalink

A problem with runnig VirtualDub in ImageJ

FarhidT
1 post
All dera imagej users,

 I have been trying during last week to find a good plugin for imagej in order to capture video from a USB webcam live. The best macro that I found wasVirtualDub macro, but unfourtanetly after that I install the macro I encounter this problem:

   


It says that the VirtualDub.exe cannot be found. I did all of the steps extactly right, but I don't know where is the prblem. If there would be any one who can help me, that would be great .
 Also I have tested quicktime video capture tool, but again there was a problem that may webcam is not compatibale with quicktime.
Reply | Threaded
Open this post in threaded view
| More
Print post
Permalink

Re: A problem with runnig VirtualDub in ImageJ

vp13
1 post
Hello,

I know it's a bit late to respond but I thought it would be useful to others.
You need to do some changes in the macro text file VideoCaptureTool.txt
At line 52, you should have something like
virtualDub = getDirectory("startup")+"..\\VirtualDub\\VirtualDub";

In my case the problem was that the application wasn't called  VirtualDub but Veedub64 so I just replaced line 52 by:
virtualDub = getDirectory("startup")+"..\\VirtualDub\\Veedub64";
and it worked fine.