Hi,
The error descriptions you have posted so far are not detailed enough to isolate the source of the problem.
However, I see a couple of issues:
* gsvideo on windows 7 64 bits: I don't have windows 7 myself at this point, so I cannot really test this. But some people reported that the latest gsvideo works fine on win7, although I'm not sure if they are on 32 or 64 bits. I'd recommend you remove any previous version of gsvideo/gstreamer from your system, install the latest release of gsvideo (0.6-pre3) and test the provided examples (such as Movie/Loop or Pipelines/Test). If they run ok, then the problem is not windows. If the don't run, please post the full error message you get in Processing.
* GStreamer pipeline to implement RTSP client: I never tested this functionality myself, so my experience is very limited. All I can say in this regard is that the element you are trying to use, gnomevfssrc, is only for Linux. I think the Windows equivalent is rtspsrc. Sample pipelines I found online for rtspsrc are like this:
Code:
rtspsrc location=rtsp://elphel:554 ! queue ! rtpjpegdepay ! queue ! jpegdec ! queue ! videorate ! capsfilter caps="video/x-raw-yuv, format=(fourcc)I420, width=(int)1024, height=(int)768, framerate=(fraction)25/1
however I don't know enough about video streaming to be able to provide much help here. The elements you have to put in such pipeline (rtpjpegdepay, etc) probably depend on what encoding you are using to stream out the video.