Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

I can't get video stream from camera using ffmpeg

nghiem tien vien

New Member
Joined
Feb 11, 2020
Messages
1
Reaction score
0
I have an Yoosee 360 Panoramic. I can connect it to iphone app and I can see the private IP of that camera in LAN.
Then I tried to use ffmpeg to catch the video stream but no luck.

I used this command

ffmpeg -i "rtsp://192.168.1.5:554/onvif1"
ffmpeg -i "rtsp://admin:123@192.168.1.5:554/onvif1"
ffmpeg -i "rtsp://admin:00000000@192.168.1.5:554/onvif1"


It always return

[tcp @ 0x108f120] Connection to tcp://192.168.1.5:554?timeout=0 failed: No route to host
rtsp://13838682:123@192.168.1.5:554/onvif1: No route to host

I also can't ping the camera IP, is it normal ?
 
Assuming your ffmpeg is a recent build, use
ffmpeg -f dshow -rtbufsize 64M -i "video=Integrated Webcam" -s 1280x720 -f sdl2 -
A window will pop up with the video output.
For not-so-recent builds, you may have to use sdl and not sdl2.
 
I have an Yoosee 360 Panoramic. I can connect it to iphone app and I can see the private IP of that camera in LAN.
Then I tried to use ffmpeg to catch the video stream but no luck.

I used this command




It always return



I also can't ping the camera IP, is it normal ?
Logon yoosee app, enable NVR stream, and set the password. You need to use this credential to acess stream by using any softwar.
 
Back
Top