Send Motion-user mailing list submissions to
[email protected]
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
[email protected]
You can reach the person managing the list at
[email protected]
When replying, please edit your Subject line so it is more specific
than "Re: Contents of Motion-user digest..."
Today's Topics:
1. Re: Auto Focus (Arrow22)
2. Re: Auto Focus (Dave Howorth)
3. Re: Auto Focus (chuck elliot)
----------------------------------------------------------------------
Message: 1
Date: Fri, 30 Apr 2021 11:41:22 -0700
From: "Arrow22" <[email protected]>
To: "'Motion discussion list'" <[email protected]>
Subject: Re: [Motion-user] Auto Focus
Message-ID: <[email protected]>
Content-Type: text/plain; charset="utf-8"
First, I am using IP cams
Second, vid_control_params does not have anything to do with the webserver
interface only camera fine tuning for picture/video
Normally localhost:8080 shows all cameras in a video matrix block
The autofocus function I want is when motion is detected on one of the cameras,
that camera?s video goes full screen
End of motion event, back to 8080
Playing with a bunch of ideas but still not sure what I can do after I hack
this out.
Can I publish the changes on my site?
Does the GNU allow me to do this?
Does the Original Author have to okay the changes?
From: tosiara [mailto:[email protected]]
Sent: Thursday, April 29, 2021 10:14 PM
To: Motion discussion list <[email protected]>
Subject: Re: [Motion-user] Auto Focus
There is already a config called "vid_control_params" that controls USB V4L
cameras. If your camera supports turing autofocus on/off - just use
vid_control_params
https://motion-project.github.io/motion_config.html#vid_control_params
On Fri, Apr 30, 2021 at 1:14 AM Arrow22 <[email protected]
<mailto:[email protected]> > wrote:
Am I allowed to change the source code?
I wanted to add another Flag called Autofocus=true/false
It would ?full screen? the camera that detects motion.
A function that would seem to be a no brainer in any surveillance system.
First time dealing with GNU not sure what I can do
Thanks for any information
_______________________________________________
Motion-user mailing list
[email protected] <mailto:[email protected]>
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: 2
Date: Fri, 30 Apr 2021 20:30:42 +0100
From: Dave Howorth <[email protected]>
To: [email protected]
Subject: Re: [Motion-user] Auto Focus
Message-ID: <[email protected]>
Content-Type: text/plain; charset=UTF-8
On Fri, 30 Apr 2021 11:41:22 -0700
"Arrow22" <[email protected]> wrote:
> First, I am using IP cams
>
> Second, vid_control_params does not have anything to do with the
> webserver interface only camera fine tuning for picture/video
It sounds like you would be wise to choose a different name for your
control that didn't sound so much like a different, existing control
facility. I think you confused Tosiara for one :)
> Normally localhost:8080 shows all cameras in a video matrix block
>
> The autofocus function I want is when motion is detected on one of
> the cameras, that camera?s video goes full screen
>
> End of motion event, back to 8080
Sounds like a nice idea. What does it do if more than one camera sees
motion at the same time? (Which I expect is quite common if cameras
have overlapping fields of view)
> Playing with a bunch of ideas but still not sure what I can do after
> I hack this out.
>
> Can I publish the changes on my site?
>
> Does the GNU allow me to do this?
Yes, you can make whatever changes you want on your own system.
> Does the Original Author have to okay the changes?
No. They only have to approve if you want your changes to be
incorporated back into the base product.
> From: tosiara [mailto:[email protected]]
> Sent: Thursday, April 29, 2021 10:14 PM
> To: Motion discussion list <[email protected]>
> Subject: Re: [Motion-user] Auto Focus
>
>
>
> There is already a config called "vid_control_params" that controls
> USB V4L cameras. If your camera supports turing autofocus on/off -
> just use vid_control_params
>
>
>
> https://motion-project.github.io/motion_config.html#vid_control_params
>
>
>
> On Fri, Apr 30, 2021 at 1:14 AM Arrow22 <[email protected]
> <mailto:[email protected]> > wrote:
>
> Am I allowed to change the source code?
>
>
>
> I wanted to add another Flag called Autofocus=true/false
>
> It would ?full screen? the camera that detects motion.
>
> A function that would seem to be a no brainer in any surveillance
> system.
>
> First time dealing with GNU not sure what I can do
------------------------------
Message: 3
Date: Fri, 30 Apr 2021 21:56:13 +0100
From: chuck elliot <[email protected]>
To: [email protected]
Subject: Re: [Motion-user] Auto Focus
Message-ID: <[email protected]>
Content-Type: text/plain; charset="utf-8"; Format="flowed"
You can achieve something similar using the
script option 'on_event_start'
to run a script that uses ffplay to display the camera
output and then stop it with 'on_event_end'.
'not elegant but it works ;o)
On 30/04/2021 7:41 pm, Arrow22 wrote:
>
> First, I am using IP cams
>
> Second, vid_control_paramsdoes not have anything to do with the
> webserver interface only camera fine tuning for picture/video
>
> Normally localhost:8080 shows all cameras in a video matrix block
>
> The autofocus function I want is when motion is detected on one of the
> cameras, that camera?s video goes full screen
>
> End of motion event, back to 8080
>
> Playing with a bunch of ideas but still not sure what I can do after I
> hack this out.
>
> Can I publish the changes on my site?
>
> Does the GNU allow me to do this?
>
> Does the Original Author have to okay the changes?
>
> *From:*tosiara [mailto:[email protected]]
> *Sent:* Thursday, April 29, 2021 10:14 PM
> *To:* Motion discussion list <[email protected]>
> *Subject:* Re: [Motion-user] Auto Focus
>
> There is already a config called "vid_control_params" that controls
> USB V4L cameras. If your camera supports turing autofocus on/off -
> just use vid_control_params
>
> https://motion-project.github.io/motion_config.html#vid_control_params
> <https://motion-project.github.io/motion_config.html#vid_control_params>
>
> On Fri, Apr 30, 2021 at 1:14 AM Arrow22 <[email protected]
> <mailto:[email protected]>> wrote:
>
> Am I allowed to change the source code?
>
> I wanted to add another Flag called Autofocus=true/false
>
> It would ?full screen? the camera that detects motion.
>
> A function that would seem to be a no brainer in any surveillance
> system.
>
> First time dealing with GNU not sure what I can do
>
> Thanks for any information
>
> _______________________________________________
> Motion-user mailing list
> [email protected]
> <mailto:[email protected]>
> https://lists.sourceforge.net/lists/listinfo/motion-user
> <https://lists.sourceforge.net/lists/listinfo/motion-user>
> https://motion-project.github.io/ <https://motion-project.github.io/>
>
> Unsubscribe:
> https://lists.sourceforge.net/lists/options/motion-user
> <https://lists.sourceforge.net/lists/options/motion-user>
>
>
>
> _______________________________________________
> Motion-user mailing list
> [email protected]
> 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
[email protected]
https://lists.sourceforge.net/lists/listinfo/motion-user
------------------------------
End of Motion-user Digest, Vol 178, Issue 15
********************************************