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: Running Motion on Raspi and output stream on HDMI
(Roger Heflin)
2. Re: Running Motion on Raspi and output stream on HDMI
(Bill Quinlan)
3. mask_file for several cameras (Paul Wir)
4. Re: mask_file for several cameras (Harlan Daneker)
5. Re: Running Motion on Raspi and output stream on HDMI
(Roger Heflin)
----------------------------------------------------------------------
Message: 1
Date: Mon, 12 Apr 2021 10:21:00 -0500
From: Roger Heflin <[email protected]>
To: Motion discussion list <[email protected]>
Subject: Re: [Motion-user] Running Motion on Raspi and output stream
on HDMI
Message-ID:
<caamcdecepu2ocxit3huc1rcbtzd6opgoja8apcxwqc7ufyp...@mail.gmail.com>
Content-Type: text/plain; charset="UTF-8"
Firefox with all of its issues and overhead is going to be way less
cpu intensive updating one full-res jpeg per second per camera than
attempting to run multiple mplayer instances. No way that a lower
powered machine could play back 4 instances of mplayer on the
higher-res streams, it would have to be the lower resolution streams.
And with firefox and the jpegs coming from motion you can click on one
of the cameras and get a full screen instance and then click on the
back button and get back to the 4 or more camera view.
On Sun, Apr 11, 2021 at 7:50 PM S Andreason <[email protected]> wrote:
>
> Brian wrote:
> >
> > I need some suggestions about how to run this setup best.
> >
> > I would like the Live stream from the Camera to be on the HDMI output
> > at all times, is there any way of doing that with motion?
> >
> > I was wondering if I can make use of the fact that the raspi has 2
> > HDMI ports.?
>
> Why not do this?:
> Have a script at startup of X-window, start a mpv (or mplayer) for each
> camera, with input being the rtsp stream.
> If X is configured to use both hdmi connected monitors, the video
> windows could be placed anywhere on them.
>
> Don't need firefox in between the cam and the display, consuming cpu
> resources.
>
>
> _______________________________________________
> 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
------------------------------
Message: 2
Date: Mon, 12 Apr 2021 09:29:13 -0600
From: Bill Quinlan <[email protected]>
To: Motion discussion list <[email protected]>
Subject: Re: [Motion-user] Running Motion on Raspi and output stream
on HDMI
Message-ID:
<capznypy0kr+rn_nk8ugcafavv1gxbp8zjdku9to9s3w6-3u...@mail.gmail.com>
Content-Type: text/plain; charset="utf-8"
Roger, what add-on/HTML/etc. to get a 4 camera view on Firefox?
On Mon, Apr 12, 2021 at 9:22 AM Roger Heflin <[email protected]> wrote:
> <snip>
> And with firefox and the jpegs coming from motion you can click on one
> of the cameras and get a full screen instance and then click on the
> back button and get *back to the 4 or more camera view*.
>
-------------- next part --------------
An HTML attachment was scrubbed...
------------------------------
Message: 3
Date: Mon, 12 Apr 2021 18:27:37 +0200
From: Paul Wir <[email protected]>
To: Motion discussion list <[email protected]>
Subject: [Motion-user] mask_file for several cameras
Message-ID: <[email protected]>
Content-Type: text/plain; charset=utf-8
Hi there,
I?m using ?motion? with two cameras.
I want to use ?mask_file? but just for one camera.
Will it work, if I insert the parameter in the config file of the corresponding
camera only?
It would be nice to know which parameters can be used in the separate camera
config files and them to be used in the common config file only.
------------------------------
Message: 4
Date: Mon, 12 Apr 2021 12:46:58 -0400
From: Harlan Daneker <[email protected]>
To: Motion discussion list <[email protected]>
Subject: Re: [Motion-user] mask_file for several cameras
Message-ID:
<cac1wkiry2gma-t+qn64v537a_a7af1emms+8g1-yjvvba_u...@mail.gmail.com>
Content-Type: text/plain; charset="utf-8"
For the most part anything in motion.conf is for all cameras and anything
in camera.conf files is for that camera only.
In the camera.conf file:
mask_file /path to mask file/mask.pgm
On Mon, Apr 12, 2021 at 12:28 PM Paul Wir <[email protected]> wrote:
> Hi there,
> I?m using ?motion? with two cameras.
> I want to use ?mask_file? but just for one camera.
> Will it work, if I insert the parameter in the config file of the
> corresponding camera only?
> It would be nice to know which parameters can be used in the separate
> camera config files and them to be used in the common config file only.
>
> _______________________________________________
> 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...
------------------------------
Message: 5
Date: Mon, 12 Apr 2021 12:10:20 -0500
From: Roger Heflin <[email protected]>
To: Motion discussion list <[email protected]>
Subject: Re: [Motion-user] Running Motion on Raspi and output stream
on HDMI
Message-ID:
<caamcdee3xjqmtrhtqnqt7bx6+ywtbnypb7fiufzyy86hacr...@mail.gmail.com>
Content-Type: text/plain; charset="UTF-8"
The stream_preview_* options I think is what I had to set to enable it
on the webcontrol port. I go to the webcontrol port and all of my
cams show up on that screen.
Mine are set this way:
stream_preview_newline off
stream_preview_method 1
stream_preview_scale 29
My webcontrol looks like this:
webcontrol_port 8083
webcontrol_localhost off
webcontrol_html_output on
it does 3 images across with the 29% scaling, so 6 mostly fit on a
1080 screen (3x2).
so then http://servername:8083 will show the cams.
The order the threads are defined in motion.conf seems to control the
order in that screen. I don't see a way to tell it to ignore a cam.
On Mon, Apr 12, 2021 at 10:30 AM Bill Quinlan <[email protected]> wrote:
>
> Roger, what add-on/HTML/etc. to get a 4 camera view on Firefox?
>
> On Mon, Apr 12, 2021 at 9:22 AM Roger Heflin <[email protected]> wrote:
>>
>> <snip>
>> And with firefox and the jpegs coming from motion you can click on one
>> of the cameras and get a full screen instance and then click on the
>> back button and get back to the 4 or more camera view.
>
>
> _______________________________________________
> 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
------------------------------
------------------------------
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 7
*******************************************