Rtsp
-
- Site Admin
- Posts: 17520
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
-
- Site Admin
- Posts: 17520
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
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
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
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:admin@10.0.0.221:554/;
RVCamera.PlayVideoStream;
What is wrong?
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:admin@10.0.0.221:554/;
RVCamera.PlayVideoStream;
What is wrong?
-
- Site Admin
- Posts: 17520
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
-
- Site Admin
- Posts: 17520
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
Code: Select all
try add only exe file and gstreamer is not avaliable
Code: Select all
add all files from bin folder to project directory gstream is avaliable but not work
I asked Ilya (the main RVMedia developer) to contact you by email.
-
- Site Admin
- Posts: 17520
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
-
- Posts: 3
- Joined: Thu Mar 19, 2015 4:57 pm
- Location: Russia
RSTP
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?
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?
-
- Site Admin
- Posts: 17520
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
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.
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.
-
- Posts: 3
- Joined: Thu Mar 19, 2015 4:57 pm
- Location: Russia