connexion FOSCAM
connexion FOSCAM
Bonjour,
Je viens d'acheter une camera IP FOSCAM modele :FI9928P
je développe avec delphi XE10
ma camera se connecte je peux même faire des déplacements PTZ mais je n'ai pas d'image ?
camera Host 192.168.1.11
camera port 88
mon login et mot de passe.
mon code :
procedure TForm1.FormCreate(Sender: TObject);
begin
RVCamera1.SearchCamera;
end;
procedure TForm1.RVCamera1SearchComplete(Sender: TObject; Status: Integer);
begin
if Status = 0 then RVCamera1.PlayVideoStream;
end;
end.
je vous remercie d'avance pour votre réponse
-------------------------------------------------------------------------------------------------
264/5000
Nombre maximal de caractères : 5000
Hello,
I just bought an IP camera FOSCAM model: FI9928P
I develop with delphi XE10
my camera connects I can even make PTZ moves but I have no picture?
Host camera 192.168.1.11
camera port 88
my login and password.
my code:
procedure TForm1.FormCreate(Sender: TObject);
begin
RVCamera1.SearchCamera;
end;
procedure TForm1.RVCamera1SearchComplete(Sender: TObject; Status: Integer);
begin
if Status = 0 then RVCamera1.PlayVideoStream;
end;
end.
Thank you in advance for your answer
Je viens d'acheter une camera IP FOSCAM modele :FI9928P
je développe avec delphi XE10
ma camera se connecte je peux même faire des déplacements PTZ mais je n'ai pas d'image ?
camera Host 192.168.1.11
camera port 88
mon login et mot de passe.
mon code :
procedure TForm1.FormCreate(Sender: TObject);
begin
RVCamera1.SearchCamera;
end;
procedure TForm1.RVCamera1SearchComplete(Sender: TObject; Status: Integer);
begin
if Status = 0 then RVCamera1.PlayVideoStream;
end;
end.
je vous remercie d'avance pour votre réponse
-------------------------------------------------------------------------------------------------
264/5000
Nombre maximal de caractères : 5000
Hello,
I just bought an IP camera FOSCAM model: FI9928P
I develop with delphi XE10
my camera connects I can even make PTZ moves but I have no picture?
Host camera 192.168.1.11
camera port 88
my login and password.
my code:
procedure TForm1.FormCreate(Sender: TObject);
begin
RVCamera1.SearchCamera;
end;
procedure TForm1.RVCamera1SearchComplete(Sender: TObject; Status: Integer);
begin
if Status = 0 then RVCamera1.PlayVideoStream;
end;
end.
Thank you in advance for your answer
-
- Site Admin
- Posts: 17520
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
Re: connexion FOSCAM
Do you know video stream format (MJPEG or H.264)?
Re: connexion FOSCAM
Bonjour,
Format vidéo H.264
Format vidéo H.264
Re: connexion FOSCAM
Bonjour,
j'ai testé beaucoup de chose aujourd'hui et toujours impossible d'avoir un retour vidéo.
j'ai bien installé ffMpeg et gstream aussi.
Merci.
Hello,
I tested a lot of things today and still can not get a video feedback.
I installed ffMpeg and gstream too.
Thank you.
j'ai testé beaucoup de chose aujourd'hui et toujours impossible d'avoir un retour vidéo.
j'ai bien installé ffMpeg et gstream aussi.
Merci.
Hello,
I tested a lot of things today and still can not get a video feedback.
I installed ffMpeg and gstream too.
Thank you.
-
- Site Admin
- Posts: 17520
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
Re: connexion FOSCAM
In order to search for video H.264 video stream,
1) FFmpeg libraries must be available for the application
2) RVCamera.VideoFormat must be rvvfH264 before calling SearchCamera.
And, unfortunately, we found bugs in searching password-protected streams. We fixed it in our working version.
I can send you a beta fix before we release it.
Do you use full or trial version of RVMedia?
1) FFmpeg libraries must be available for the application
2) RVCamera.VideoFormat must be rvvfH264 before calling SearchCamera.
And, unfortunately, we found bugs in searching password-protected streams. We fixed it in our working version.
I can send you a beta fix before we release it.
Do you use full or trial version of RVMedia?
Re: connexion FOSCAM
Bonjour,
pour le moment j'utilise une version d'essai, j'aime bien votre composant très professionnel et surtout très complet mais je veux être sûr
du bon fonctionnement avec ma camera. j'ai testé avec VLC flux réseau " rtsp://admin37:motdepasse@192.168.1.11:88/videomain"
cela fonctionne très bien.
je veux bien votre correctif pour essayer ...
je vous remercie d'avance.
Hello,
for now I use a trial version, I like your component very professional and especially very complete but I want to be sure
of good operation with my camera. I tested with VLC network stream "rtsp: // admin37:password@192.168.1.11: 88 / videomain"
it works very well.
I want your patch to try ...
I thank you in advance.
pour le moment j'utilise une version d'essai, j'aime bien votre composant très professionnel et surtout très complet mais je veux être sûr
du bon fonctionnement avec ma camera. j'ai testé avec VLC flux réseau " rtsp://admin37:motdepasse@192.168.1.11:88/videomain"
cela fonctionne très bien.
je veux bien votre correctif pour essayer ...
je vous remercie d'avance.
Hello,
for now I use a trial version, I like your component very professional and especially very complete but I want to be sure
of good operation with my camera. I tested with VLC network stream "rtsp: // admin37:password@192.168.1.11: 88 / videomain"
it works very well.
I want your patch to try ...
I thank you in advance.
-
- Site Admin
- Posts: 17520
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
Re: connexion FOSCAM
If you know the exact video URL, you do not need to call SearchCamera.
Just assign:
RVCamera1.URL := 'rtsp://admin37:motdepasse@192.168.1.11:88/videomain'
RVCamera1.VideoFormat := rvvfH264;
and call RVCamera1.PlayVideoStream;
As I said before, FFmpeg must be available for the application. You can check if FFmpeg is available by checking the result of RVCamera1.IsSupportedFFMPEG.
There is a small possibility that FFmpeg cannot play this stream. In this case, GStreamer can be used. But I do not think that Foscam cameras have problems with FFmpeg.
Just assign:
RVCamera1.URL := 'rtsp://admin37:motdepasse@192.168.1.11:88/videomain'
RVCamera1.VideoFormat := rvvfH264;
and call RVCamera1.PlayVideoStream;
As I said before, FFmpeg must be available for the application. You can check if FFmpeg is available by checking the result of RVCamera1.IsSupportedFFMPEG.
There is a small possibility that FFmpeg cannot play this stream. In this case, GStreamer can be used. But I do not think that Foscam cameras have problems with FFmpeg.
Re: connexion FOSCAM
Bonjour,
J'ai réussi a afficher le flux de ma camera FOSCAM
je vous remercie de tout vos conseils très professionnel.
Bonne journée
Hello,
I managed to display the flow of my camera FOSCAM
I thank you for all your very professional advice
Have a good day
J'ai réussi a afficher le flux de ma camera FOSCAM
je vous remercie de tout vos conseils très professionnel.
Bonne journée
Hello,
I managed to display the flow of my camera FOSCAM
I thank you for all your very professional advice
Have a good day
Re: connexion FOSCAM
Bonjour,
Au niveau du flux vidéo tout se passe bien, mais impossible de contrôler la camera
je n'arrive pas a piloter les déplacements PTZ
impossible aussi de changer la luminosité le contraste ... le flip horizontal et vertical ..
la camera que j'utilise modèle FI9928P V2
merci
Hello,
At the video stream everything goes well, but impossible to control the camera
I can not manage PTZ movements
also impossible to change the brightness the contrast ... the horizontal and vertical flip ..
the camera that I use FI9928P V2 model
thank you
Au niveau du flux vidéo tout se passe bien, mais impossible de contrôler la camera
je n'arrive pas a piloter les déplacements PTZ
impossible aussi de changer la luminosité le contraste ... le flip horizontal et vertical ..
la camera que j'utilise modèle FI9928P V2
merci
Hello,
At the video stream everything goes well, but impossible to control the camera
I can not manage PTZ movements
also impossible to change the brightness the contrast ... the horizontal and vertical flip ..
the camera that I use FI9928P V2 model
thank you
-
- Site Admin
- Posts: 17520
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
Re: connexion FOSCAM
In this case, SearchCamera is necessary. It not always searches for video stream URL on the given host:port, but also determines the camera capabilities.
We will send you a fixed beta trial at the beginning of the next week.
We will send you a fixed beta trial at the beginning of the next week.
Re: connexion FOSCAM
Bonjour
merci beaucoup
Hello
thank you very much
merci beaucoup
Hello
thank you very much
Re: connexion FOSCAM
Bonjour,
j'ai téléchargé la version test 7 de RVCamera je n'arrive plus du tout a avoir le flux vidéo
même avec votre application test Media Test
voir le fichier suivant
merci beaucoup
Hello,
I downloaded the test version 7 of RVCamera I can not have the video stream at all
even with your Media Test test app
see the following file
thank you very much
j'ai téléchargé la version test 7 de RVCamera je n'arrive plus du tout a avoir le flux vidéo
même avec votre application test Media Test
voir le fichier suivant
merci beaucoup
Hello,
I downloaded the test version 7 of RVCamera I can not have the video stream at all
even with your Media Test test app
see the following file
thank you very much
-
- Site Admin
- Posts: 17520
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
Re: connexion FOSCAM
Please retest with the version with we will sent to you soon (if all will be ok, tomorrow)
Re: connexion FOSCAM
Bonjour,
merci j'attends votre version.
Bonne journée
thank you I'm waiting for your version.
Have a good day
merci j'attends votre version.
Bonne journée
thank you I'm waiting for your version.
Have a good day
-
- Site Admin
- Posts: 17520
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
Re: connexion FOSCAM
Sorry, last-time changes caused problems in redrawing multi-viewers, so I cannot send it today. The next goal is tomorrow.