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. Access to video stream over the web (Edan Cain) 2. Re: Access to video stream over the web (Harlan Daneker) 3. Re: Access to video stream over the web (Robert Evans) ---------------------------------------------------------------------- Message: 1 Date: Mon, 9 Dec 2019 20:29:28 +0000 From: Edan Cain <ec...@cheetah.com> To: "motion-user@lists.sourceforge.net" <motion-user@lists.sourceforge.net> Subject: [Motion-user] Access to video stream over the web Message-ID: <mn2pr20mb30370168378fb71e9b0b2288a3...@mn2pr20mb3037.namprd20.prod.outlook.com> Content-Type: text/plain; charset="iso-8859-1" Hi everyone, I have been reading the wiki and my question is: To access the video stream outside of my network (I can access it from any computer within my network) I was looking for doc on whether the only way to do this was via Port forwarding on the router. Is this the only way to do it? I see that one can set authentication and this is what I would like to enable also. webcontrol_authentication * Type: String * Range / Valid values: Max 4095 characters * Default: Not defined This parameter establishes the username and password to use for the stream. The syntax is username:password stream_auth_method * Type: Integer * Range / Valid values: 0, 1, 2 * Default: 0 This parameter establishes desired authentication method for the stream port. The parameters have the following meaning. * 0 = disabled * 1 = Basic authentication * 2 = MD5 digest (the safer authentication) Note that if you are enabling the webcontrol feature of Motion, you really really really ... should enable security authentications. No. Seriously. You really should. See the security warnings in this document regarding how it completely opens up your system. I'm investigating using motion instead of OpenCV as this will be part of a drone delivery function. Dispatcher needs to see the landing zone and give the go ahead to land, and I want to investigate the detection functionality event messaging of Motion in the event an animal or human enters the video feed during landing. FYI: We have an onboard linux computer that is using a wifi puck for internet connection at the moment. Thanks for any suggestions and help with my question. Edan Cain -------------- next part -------------- An HTML attachment was scrubbed... ------------------------------ Message: 2 Date: Mon, 9 Dec 2019 18:39:04 -0500 From: Harlan Daneker <hdane...@gmail.com> To: Motion discussion list <motion-user@lists.sourceforge.net> Subject: Re: [Motion-user] Access to video stream over the web Message-ID: <cac1wkisxahirbd46qr6ozxtebo48qnih8eud-8u-ax4wywf...@mail.gmail.com> Content-Type: text/plain; charset="utf-8" I use apache & php to access videos saved by motion via the web. I access a snapshot from 7 cameras on a web page and refresh it every few seconds and it's password protected. On Mon, Dec 9, 2019 at 6:02 PM Edan Cain <ec...@cheetah.com> wrote: > Hi everyone, > I have been reading the wiki and my question is: > To access the video stream outside of my network (I can access it from any > computer within my network) I was looking for doc on whether the only way > to do this was via Port forwarding on the router. Is this the only way to > do it? I see that one can set authentication and this is what I would like > to enable also. > > > webcontrol_authentication > > - Type: String > - Range / Valid values: Max 4095 characters > - Default: Not defined > > This parameter establishes the username and password to use for the > stream. The syntax is username:password > > > > stream_auth_method > > - Type: Integer > - Range / Valid values: 0, 1, 2 > - Default: 0 > > This parameter establishes desired authentication method for the > stream port. The parameters have the following meaning. > - 0 = disabled > - 1 = Basic authentication > - 2 = MD5 digest (the safer authentication) > > Note that if you are enabling the webcontrol feature of Motion, you > really really really ... should enable security authentications. No. > Seriously. You really should. See the security warnings in this document > regarding how it completely opens up your system. > > I'm investigating using motion instead of OpenCV as this will be part of a > drone delivery function. Dispatcher needs to see the landing zone and give > the go ahead to land, and I want to investigate the detection functionality > event messaging of Motion in the event an animal or human enters the video > feed during landing. FYI: We have an onboard linux computer that is using a > wifi puck for internet connection at the moment. > > Thanks for any suggestions and help with my question. > > Edan Cain > _______________________________________________ > 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... ------------------------------ Message: 3 Date: Mon, 9 Dec 2019 23:41:19 +0000 From: Robert Evans <rwevans1...@gmail.com> To: Motion discussion list <motion-user@lists.sourceforge.net> Subject: Re: [Motion-user] Access to video stream over the web Message-ID: <cac2unfssi9fwbqxwarwef8oj+swz6qxej-bcpcv7bduxcme...@mail.gmail.com> Content-Type: text/plain; charset="utf-8" Port forwarding would be the standard mechanism for routing external (HTTP) requests to an internal machine for a device on an internal network. Authentication should be relatively straightforward to enable by supplying the password(s) in the config file for the various endpoints you want to open up (eg streaming/webpage). On Mon, Dec 9, 2019 at 11:02 PM Edan Cain <ec...@cheetah.com> wrote: > Hi everyone, > I have been reading the wiki and my question is: > To access the video stream outside of my network (I can access it from any > computer within my network) I was looking for doc on whether the only way > to do this was via Port forwarding on the router. Is this the only way to > do it? I see that one can set authentication and this is what I would like > to enable also. > > > webcontrol_authentication > > - Type: String > - Range / Valid values: Max 4095 characters > - Default: Not defined > > This parameter establishes the username and password to use for the > stream. The syntax is username:password > > > > stream_auth_method > > - Type: Integer > - Range / Valid values: 0, 1, 2 > - Default: 0 > > This parameter establishes desired authentication method for the > stream port. The parameters have the following meaning. > - 0 = disabled > - 1 = Basic authentication > - 2 = MD5 digest (the safer authentication) > > Note that if you are enabling the webcontrol feature of Motion, you > really really really ... should enable security authentications. No. > Seriously. You really should. See the security warnings in this document > regarding how it completely opens up your system. > > I'm investigating using motion instead of OpenCV as this will be part of a > drone delivery function. Dispatcher needs to see the landing zone and give > the go ahead to land, and I want to investigate the detection functionality > event messaging of Motion in the event an animal or human enters the video > feed during landing. FYI: We have an onboard linux computer that is using a > wifi puck for internet connection at the moment. > > Thanks for any suggestions and help with my question. > > Edan Cain > _______________________________________________ > 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 -- *Robert Evans* Tel: 07891 945 461 www.robevans.uk -- *Robert Evans* Tel: 07891 945 461 www.robevans.uk -------------- 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 162, Issue 5 *******************************************