Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #39035
| References | (1 earlier) <CALWePYzjYYHErKdd=ZNw78rn5kZv2uQMKLSvJ4Fm_qH=sv3yRQ@mail.gmail.com> <mailman.1407.1360154390.2939.python-list@python.org> <9c18d916-839c-4335-a6fa-c61fd87bd380@googlegroups.com> <mailman.1411.1360161337.2939.python-list@python.org> <b52c7294-e0c5-449f-802a-1383214a77ce@googlegroups.com> |
|---|---|
| From | Xavier Ho <contact@xavierho.com> |
| Date | 2013-02-18 06:57 +1100 |
| Subject | Re: Recording live video stream from IP camera issue |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.1902.1361131104.2939.python-list@python.org> (permalink) |
[Multipart message — attachments visible in raw view] - view raw
Hi Sam,
Did you compile your OpenCV with gstreamer? That's where I'd look first.
Cheers,
Xav
On 18 February 2013 01:15, Sam Berry <sambez_14@hotmail.co.uk> wrote:
> Hi Xav,
>
> Iv been looking into OpenCV, i can easily stream my laptops webcam using
> this code.
>
> import cv2
>
> cv2.namedWindow("preview")
>
> vc = cv2.VideoCapture(0)
>
> if vc.isOpened(): # try to get the first frame
> rval, frame = vc.read()
> else:
> rval = False
>
> while rval:
> cv2.imshow("preview", frame)
> rval, frame = vc.read()
> key = cv2.waitKey(20)
> if key == 27: # exit on ESC
> break
>
> However using the cv2.Videocapture(ip_address) method will not load my IP
> camera video feed into the new window. I can view the stream in any web
> browser or VLC using the IP address
> http://192.168.1.72:1025/videostream.cgi?user=&pwd=&resolution=8.
>
> Did you have this issue? Is there some lines of code i may need to add?
>
> Any help would be appreciated!
>
> Thanks, Sam
>
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Recording live video stream from IP camera issue Sam Berry <sambez_14@hotmail.co.uk> - 2013-02-06 04:12 -0800
Re: Recording live video stream from IP camera issue Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2013-02-06 23:26 +1100
Re: Recording live video stream from IP camera issue Sam Berry <sambez_14@hotmail.co.uk> - 2013-02-06 04:36 -0800
Fwd: Recording live video stream from IP camera issue Xavier Ho <contact@xavierho.com> - 2013-02-06 23:39 +1100
Re: Recording live video stream from IP camera issue Sam Berry <sambez_14@hotmail.co.uk> - 2013-02-06 05:12 -0800
Re: Recording live video stream from IP camera issue Xavier Ho <contact@xavierho.com> - 2013-02-07 01:35 +1100
Re: Recording live video stream from IP camera issue Sam Berry <sambez_14@hotmail.co.uk> - 2013-02-17 06:15 -0800
Re: Recording live video stream from IP camera issue Xavier Ho <contact@xavierho.com> - 2013-02-18 06:57 +1100
Re: Recording live video stream from IP camera issue Sam Berry <sambez_14@hotmail.co.uk> - 2013-02-17 06:15 -0800
Re: Recording live video stream from IP camera issue Sam Berry <sambez_14@hotmail.co.uk> - 2013-02-06 05:12 -0800
Re: Recording live video stream from IP camera issue Sam Berry <sambez_14@hotmail.co.uk> - 2013-02-18 05:03 -0800
csiph-web