Page 2 of 2

Posted: Thu May 01, 2014 4:51 pm
by Sergey Tkachenko
Almost ready (we reduced CPU usage from 80% to 0.3% in our test project :)) - we just need to prepare the files to release...

Posted: Thu May 01, 2014 11:05 pm
by Avrelio
Finally thx i will help you to test it)

Posted: Sun May 04, 2014 9:09 pm
by Avrelio
how much time left?)

Posted: Mon May 05, 2014 10:24 am
by Sergey Tkachenko
The trial just updated:
http://www.trichview.com/rvfiles/rvmedia/rvmedia.zip

TRVCamera.DeviceType has new options, including H.264 via RTSP and MPEG-4 via HTTP.

These options require GStreamer from http://www.gstreamer.com , with codecs that use patented technologies (because H.264 and MPEG-4 contain patented algorithms). They may require licensing in countries that acknowledge software algorithm patents.
RVMedia itself does not contain decoders, it only may use decoders from GStreamer.

Currently, RVMedia supports only 32-bit applications, so install 32-bit runtime.
Note that you must add GStreamer's "bin" subdirectory to PATH environment variable manually.

GStreamer for Windows runtime is large. It is possible to distribute only part of files needed for H.264 and/or MPEG-4, however, you need to find which files are needed manually, see http://docs.gstreamer.com/display/GstSD ... deployment

Posted: Mon May 05, 2014 12:44 pm
by Avrelio
i try this
RVCamera.DeviceType:= rvdtRTSP;
RVCamera.CameraPort:= 554;
RVCamera.CameraHost:= '10.0.0.221';
RVCamera.UserName:= admin;
RVCamera.UserPassword:= admin;
RVCamera.PlayVideoStream;
and
RVCamera.DeviceType:= rvdtRTSP;
RVCamera.CameraUrl:= rtsp://10.0.0.221:554/;
RVCamera.UserName:= admin;
RVCamera.UserPassword:= admin;
RVCamera.PlayVideoStream;
and
RVCamera.DeviceType:= rvdtRTSP;
RVCamera.CameraUrl:= rtsp://admin:[email protected]:554/;
RVCamera.PlayVideoStream;
What is wrong?

Posted: Mon May 05, 2014 1:26 pm
by Avrelio
Note:
Tools>Options>environment variable>add>
Gstream
Path E:\gstreamer-sdk\0.10\x86\bin

is done but not work maybe i do somting wrong?

Posted: Mon May 05, 2014 1:56 pm
by Avrelio
IF RVCam.IsSupportedGStreamer THEN
BEGIN
SHOWMESSAGE('YES');
END;
IS false .....

Posted: Mon May 05, 2014 5:53 pm
by Sergey Tkachenko
What if you copy exe-file of your project to this "bin" folder?

Posted: Tue May 06, 2014 7:35 am
by Avrelio
i try in demo project 6 cams and is not working
i try add only exe file and gstreamer is not avaliable if i add all files from bin folder to project directory gstream is avaliable but not work

Posted: Tue May 06, 2014 8:07 am
by Sergey Tkachenko

Code: Select all

 try add only exe file and gstreamer is not avaliable 
Probably the directory of GStreamer was not added correctly to PATH

Code: Select all

add all files from bin folder to project directory gstream is avaliable but not work
Probably necessary codecs were not installed. They are not included by default, they can be installed only when Full or Custom installer options are chosen.

I asked Ilya (the main RVMedia developer) to contact you by email.

Posted: Tue May 06, 2014 8:38 am
by Avrelio
i install full instalation
if you can say me please name of codecs and related dlls

Posted: Tue May 06, 2014 11:12 am
by Sergey Tkachenko
You should receive email from Ilya, if not please post here.

RSTP

Posted: Thu Mar 19, 2015 5:08 pm
by Vyacheslav
Hello, Sergey! I am very interested in the possibility of a video stream through RSTP. But unfortunately I did not get a picture in your example "Switch8Cams".
GStreamer is available. I tried to use several options for settings, but they do not work correctly with my cam and with demo url. I see only "No video" text.
In VLC Player I can get picture from my camera via URL like this: "rtsp://192.168.1.246/live0.264"

Something's wrong with my hands? Or maybe demo url isn't available now?

Posted: Thu Mar 19, 2015 7:20 pm
by Sergey Tkachenko
To support H264, you need to install GStreamer from www.gstreamer.com , and you must do full install (or, in custom install, choose the options with "possible patent issues").
The current version of RVMedia can only detect GStreamer presence, it cannot tell if the files necessary for H264 are installed.
For 32-bit applications, you need 32 bit version of GStreamer, even if you use 64-bit Windows.

However, it is possible that you installed GStreamer correctly, but a video stream source was offline when you trying it.
Try GStreamer demo with another URL, for example rtsp://128.2.10.151:80/004/MLtalk2_10-17.mov
(do not forget to choose H264 in the video format combobox)

PS: I cannot access rtsp://192.168.1.246/live0.264 even in VLC
PPS: we are making a final testing of the next update that supports ffmpeg in addition to GStreamer. Ffmpeg is the library used by VLC.

Posted: Fri Mar 20, 2015 4:58 pm
by Vyacheslav
Thank you very much!
I just didn't install full version of GStreamer. Now I can view capture from my camera througth rstp :)

PS: rtsp://192.168.1.246/live0.264 is URL in my local network with my own camera.
PSS: ffmpeg in additional to GStreamer is a good news, but GStreamel works great in my mind! :)