Send Motion-user mailing list submissions to
        motion-user@lists.sourceforge.net

To subscribe or unsubscribe via the World Wide Web, visit
        https://lists.sourceforge.net/lists/listinfo/motion-user
or, via email, send a message with subject or body 'help' to
        motion-user-requ...@lists.sourceforge.net

You can reach the person managing the list at
        motion-user-ow...@lists.sourceforge.net

When replying, please edit your Subject line so it is more specific
than "Re: Contents of Motion-user digest..."


Today's Topics:

   1. Re: remote usb webcam (fugee ohu)
   2. Re: remote usb webcam (fugee ohu)


----------------------------------------------------------------------

Message: 1
Date: Fri, 7 Aug 2020 18:30:41 -0400
From: fugee ohu <fugee...@gmail.com>
To: Motion discussion list <motion-user@lists.sourceforge.net>
Subject: Re: [Motion-user] remote usb webcam
Message-ID:
        <CADCA9rPdjhQrHbiVX1d=t3u7x0jzruh3fm88qh0h1rjcjqj...@mail.gmail.com>
Content-Type: text/plain; charset="UTF-8"

Thanks That's what I'm using When I click probe nothing's found

On Fri, Aug 7, 2020 at 6:14 PM folkert <folk...@vanheusden.com> wrote:
>
> https://www.lingodigit.com/onvif_nvc.html
>
> On Fri, Aug 07, 2020 at 05:25:12PM -0400, fugee ohu wrote:
> > I bought an onvif p2p ip camera Do you know how I add it to motion I have
> > to discover it's stream
> >
> > On Thu, Aug 6, 2020, 7:14 AM folkert <folk...@vanheusden.com> wrote:
> >
> > > You could run constatus on that other system and let it export that USB
> > > camera as an MJPEG stream ( https://vanheusden.com/constatus/ ).
> > > Motion can then pick it up via netcam_url and do with it whatever you
> > > require.
> > >
> > > e.g. constatus configuration:
> > >
> > > logfile = "camera.log";
> > > log-level = "info";
> > >
> > > instances = (
> > > {
> > >         instance-name = "some usb cam";
> > >
> > >         source = {
> > >                 id = "1-1";
> > >                 descr = "my usb camera cam";
> > >                 type = "v4l";
> > >                 device = "/dev/video0";
> > >                 # resolution of your camera
> > >                 width = 1280;
> > >                 height = 720;
> > >                 max-fps = -1.0;
> > >                 prefer-jpeg = true;
> > >         }
> > > }
> > > )
> > >
> > > global-http-server = ({
> > >                 id = "2-1";
> > >                 descr = "http interface";
> > >                 listen-adapter = "0.0.0.0";
> > >                 listen-port = 8080;
> > >                 # here I limit the output to 15fps
> > >                 # set to -1.0 for same fps as source
> > >                 fps = 15.0;
> > >                 quality = 75;
> > >                 stylesheet = "stylesheet.css";
> > > })
> > >
> > >
> > > the url would then be:
> > >
> > > http://my-ip-adres:8080/stream.mjpeg?inst=some%20usb%20cam
> > >
> > > e.g.:
> > > netcam_url http://my-ip-adres:8080/stream.mjpeg?inst=some%20usb%20cam
> > >
> > > On Thu, Aug 06, 2020 at 04:24:25AM -0400, fugee ohu wrote:
> > > > I wanna use a usb webcam on a remote machine Which directive to use
> > > > I'm thinking I should use the netcam_url and the netcam_userpass
> > > > directives Although the camera doesn't require a username and
> > > > password, the remote machine does
> > >
> > >
> > > _______________________________________________
> > > Motion-user mailing list
> > > Motion-user@lists.sourceforge.net
> > > https://lists.sourceforge.net/lists/listinfo/motion-user
> > > https://motion-project.github.io/
> > >
> > > Unsubscribe: https://lists.sourceforge.net/lists/options/motion-user
> > >
>
>
> > _______________________________________________
> > Motion-user mailing list
> > Motion-user@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/motion-user
> > https://motion-project.github.io/
> >
> > Unsubscribe: https://lists.sourceforge.net/lists/options/motion-user
>
>
>
> Folkert van Heusden
>
> --
>
> Multitail - gibkaja utilita po sledovaniju log-fajlov i vyvoda
> kommand. Fil'trovanie, raskra?ivanie, slijanie, vizual'noe sravnenie,
> i t.d.  http://www.vanheusden.com/multitail/
> ----------------------------------------------------------------------
> Phone: +31-6-41278122, PGP-key: 1F28D8AE, www.vanheusden.com
>
>
> _______________________________________________
> Motion-user mailing list
> Motion-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/motion-user
> https://motion-project.github.io/
>
> Unsubscribe: https://lists.sourceforge.net/lists/options/motion-user



------------------------------

Message: 2
Date: Fri, 7 Aug 2020 19:16:34 -0400
From: fugee ohu <fugee...@gmail.com>
To: Motion discussion list <motion-user@lists.sourceforge.net>
Subject: Re: [Motion-user] remote usb webcam
Message-ID:
        <CADCA9rNc9gMdp6JG_b4S=pnwktqiqoy68k3kle-t9gkrauw...@mail.gmail.com>
Content-Type: text/plain; charset="utf-8"

Sorry ONVIF wasn't yet enabled

On Fri, Aug 7, 2020, 3:08 PM folkert <folk...@vanheusden.com> wrote:

> No in the webinterface it'll show spaces.
>
> %20 is only required in the url
>
> On Fri, Aug 07, 2020 at 01:24:46PM -0400, fugee ohu wrote:
> > Do you mean with %20 instead of spaces
> >
> > On Fri, Aug 7, 2020, 1:22 PM folkert <folk...@vanheusden.com> wrote:
> >
> > > Because in the web-interface, it'll show them without %20 but with
> > > spaces.
> > >
> > > On Fri, Aug 07, 2020 at 12:43:47PM -0400, fugee ohu wrote:
> > > > Why did you use spaces in the instance name and them represent them
> > > > with %20 in the url?
> > > >
> > > > On Thu, Aug 6, 2020 at 7:14 AM folkert <folk...@vanheusden.com>
> wrote:
> > > > >
> > > > > You could run constatus on that other system and let it export
> that USB
> > > > > camera as an MJPEG stream ( https://vanheusden.com/constatus/ ).
> > > > > Motion can then pick it up via netcam_url and do with it whatever
> you
> > > > > require.
> > > > >
> > > > > e.g. constatus configuration:
> > > > >
> > > > > logfile = "camera.log";
> > > > > log-level = "info";
> > > > >
> > > > > instances = (
> > > > > {
> > > > >         instance-name = "some usb cam";
> > > > >
> > > > >         source = {
> > > > >                 id = "1-1";
> > > > >                 descr = "my usb camera cam";
> > > > >                 type = "v4l";
> > > > >                 device = "/dev/video0";
> > > > >                 # resolution of your camera
> > > > >                 width = 1280;
> > > > >                 height = 720;
> > > > >                 max-fps = -1.0;
> > > > >                 prefer-jpeg = true;
> > > > >         }
> > > > > }
> > > > > )
> > > > >
> > > > > global-http-server = ({
> > > > >                 id = "2-1";
> > > > >                 descr = "http interface";
> > > > >                 listen-adapter = "0.0.0.0";
> > > > >                 listen-port = 8080;
> > > > >                 # here I limit the output to 15fps
> > > > >                 # set to -1.0 for same fps as source
> > > > >                 fps = 15.0;
> > > > >                 quality = 75;
> > > > >                 stylesheet = "stylesheet.css";
> > > > > })
> > > > >
> > > > >
> > > > > the url would then be:
> > > > >
> > > > > http://my-ip-adres:8080/stream.mjpeg?inst=some%20usb%20cam
> > > > >
> > > > > e.g.:
> > > > > netcam_url
> http://my-ip-adres:8080/stream.mjpeg?inst=some%20usb%20cam
> > > > >
> > > > > On Thu, Aug 06, 2020 at 04:24:25AM -0400, fugee ohu wrote:
> > > > > > I wanna use a usb webcam on a remote machine Which directive to
> use
> > > > > > I'm thinking I should use the netcam_url and the netcam_userpass
> > > > > > directives Although the camera doesn't require a username and
> > > > > > password, the remote machine does
> > > > >
> > > > >
> > > > > _______________________________________________
> > > > > Motion-user mailing list
> > > > > Motion-user@lists.sourceforge.net
> > > > > https://lists.sourceforge.net/lists/listinfo/motion-user
> > > > > https://motion-project.github.io/
> > > > >
> > > > > Unsubscribe:
> https://lists.sourceforge.net/lists/options/motion-user
> > > >
> > > >
> > > > _______________________________________________
> > > > Motion-user mailing list
> > > > Motion-user@lists.sourceforge.net
> > > > https://lists.sourceforge.net/lists/listinfo/motion-user
> > > > https://motion-project.github.io/
> > > >
> > > > Unsubscribe: https://lists.sourceforge.net/lists/options/motion-user
> > >
> > >
> > > Folkert van Heusden
> > >
> > > --
> > > Curious about the inner workings of your car? Then check O2OO: it'll
> > > tell you all that there is to know about your car's engine!
> > > http://www.vanheusden.com/O2OO/
> > > ----------------------------------------------------------------------
> > > Phone: +31-6-41278122, PGP-key: 1F28D8AE, www.vanheusden.com
> > >
> > >
> > > _______________________________________________
> > > Motion-user mailing list
> > > Motion-user@lists.sourceforge.net
> > > https://lists.sourceforge.net/lists/listinfo/motion-user
> > > https://motion-project.github.io/
> > >
> > > Unsubscribe: https://lists.sourceforge.net/lists/options/motion-user
> > >
>
>
> > _______________________________________________
> > Motion-user mailing list
> > Motion-user@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/motion-user
> > https://motion-project.github.io/
> >
> > Unsubscribe: https://lists.sourceforge.net/lists/options/motion-user
>
>
>
> Folkert van Heusden
>
> --
> www.vanheusden.com/multitail - win een vlaai van multivlaai! zorg
> ervoor dat multitail opgenomen wordt in Fedora Core, AIX, Solaris of
> HP/UX en win een vlaai naar keuze
> ----------------------------------------------------------------------
> Phone: +31-6-41278122, PGP-key: 1F28D8AE, www.vanheusden.com
>
>
> _______________________________________________
> Motion-user mailing list
> Motion-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/motion-user
> https://motion-project.github.io/
>
> Unsubscribe: https://lists.sourceforge.net/lists/options/motion-user
>
-------------- next part --------------
An HTML attachment was scrubbed...

------------------------------



------------------------------

Subject: Digest Footer

_______________________________________________
Motion-user mailing list
Motion-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/motion-user


------------------------------

End of Motion-user Digest, Vol 170, Issue 6
*******************************************

Reply via email to