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. simple web server to serve videos (Mathias Koerber)
   2. Re: simple web server to serve videos (Kevin Shumaker)
   3. Re: simple web server to serve videos (Kinney Baughman)


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

Message: 1
Date: Tue, 1 Feb 2022 22:50:22 +0800
From: Mathias Koerber <math...@koerber.org>
To: motion-user@lists.sourceforge.net
Subject: [Motion-user] simple web server to serve videos
Message-ID: <aee81947-fd88-6149-3182-5846eb066...@koerber.org>
Content-Type: text/plain; charset=UTF-8; format=flowed

My new motion setup stores all recorded files to the
default /var/lib/motion

I can access this via a standard lighttpd by matking that dir the
document root etc, but the oresentation is not nice

I don't want to install a full streaming/media server, esp DLNA etc
but is there a lighttpd or apache config (possibly including PHP)
which would present the videos in a more userfriendly manner,
ie using the saved 'best' saved image file as thumbnail, sort
by time etc?

I think that might require modifying the image file names, but that
should be no issue

Is there also an easy way to make motion save the videos in a
subdir per day? Currently I have a script that runs daily
at 00:01 to move them, but motion natively creating subdirs and
using them for new files (which then showed up in said web interface)
would be nice

Finally what would one use to upload recorded files
(as soon as possible) to
   a) oneDrive
   b) a synology NAS

and has someone worked out how to0 make the motion
recorded videos directly available to Synology's
Surveillance app?

thanks



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

Message: 2
Date: Tue, 1 Feb 2022 11:05:30 -0500
From: Kevin Shumaker <starbase...@gmail.com>
To: Motion discussion list <motion-user@lists.sourceforge.net>
Subject: Re: [Motion-user] simple web server to serve videos
Message-ID:
        <CACYR9JfFo3Y94mCSqefOjWt=h-owya2lbchwpstourtz_cg...@mail.gmail.com>
Content-Type: text/plain; charset="utf-8"

There is a project (motionEye) that uses libmicrohttpd12 for web services,
has a full WebGUI and is a wrapper for motion-project. It is written in
Python. Now for the bad news: It's in Python2.7, and the owner just put it
on hold and is looking for someone to take it over. I do a lot of the
active tech support for it. It and its source code can be found here:
https://github.com/ccrisan/motioneye/wiki

On Tue, Feb 1, 2022 at 10:59 AM Mathias Koerber <math...@koerber.org> wrote:

> My new motion setup stores all recorded files to the
> default /var/lib/motion
>
> I can access this via a standard lighttpd by matking that dir the
> document root etc, but the oresentation is not nice
>
> I don't want to install a full streaming/media server, esp DLNA etc
> but is there a lighttpd or apache config (possibly including PHP)
> which would present the videos in a more userfriendly manner,
> ie using the saved 'best' saved image file as thumbnail, sort
> by time etc?
>
> I think that might require modifying the image file names, but that
> should be no issue
>
> Is there also an easy way to make motion save the videos in a
> subdir per day? Currently I have a script that runs daily
> at 00:01 to move them, but motion natively creating subdirs and
> using them for new files (which then showed up in said web interface)
> would be nice
>
> Finally what would one use to upload recorded files
> (as soon as possible) to
>    a) oneDrive
>    b) a synology NAS
>
> and has someone worked out how to0 make the motion
> recorded videos directly available to Synology's
> Surveillance app?
>
> thanks
>
>
> _______________________________________________
> 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
>


-- 
Thanks

Kevin Shumaker

N38? 19' 56.52"
W85? 45' 8.56"

Semper Gumby
?Don't tell people how to do things. Tell them what to do and let them
surprise you with their results.? - G.S. Patton, Gen. USA
Ethics are what we do when no one else is looking.
Quis custodiet ipsos custodes?
You know we're sitting on four million pounds of fuel, one nuclear weapon
and a thing that has 270,000 moving parts built by the lowest bidder. Makes
you feel good, doesn't it?
-------------- next part --------------
An HTML attachment was scrubbed...

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

Message: 3
Date: Tue, 1 Feb 2022 13:10:47 -0500
From: Kinney Baughman <baughma...@gmail.com>
To: Motion discussion list <motion-user@lists.sourceforge.net>
Subject: Re: [Motion-user] simple web server to serve videos
Message-ID:
        <cakpjuz4pkvkkri57exhniqh1zph7su0bex7hqrzu0rup1b8...@mail.gmail.com>
Content-Type: text/plain; charset="utf-8"

I used to run a light http server using python.  Basically:

python3 -m http.server

Then open the webserver on port 8080.  So 192.168.1.n:8080, if accessing
remotely or 127.0.0.1:8080, if accessing locally

https://pythonbasics.org/webserver/

On Tue, Feb 1, 2022 at 10:59 AM Mathias Koerber <math...@koerber.org> wrote:

> My new motion setup stores all recorded files to the
> default /var/lib/motion
>
> I can access this via a standard lighttpd by matking that dir the
> document root etc, but the oresentation is not nice
>
> I don't want to install a full streaming/media server, esp DLNA etc
> but is there a lighttpd or apache config (possibly including PHP)
> which would present the videos in a more userfriendly manner,
> ie using the saved 'best' saved image file as thumbnail, sort
> by time etc?
>
> I think that might require modifying the image file names, but that
> should be no issue
>
> Is there also an easy way to make motion save the videos in a
> subdir per day? Currently I have a script that runs daily
> at 00:01 to move them, but motion natively creating subdirs and
> using them for new files (which then showed up in said web interface)
> would be nice
>
> Finally what would one use to upload recorded files
> (as soon as possible) to
>    a) oneDrive
>    b) a synology NAS
>
> and has someone worked out how to0 make the motion
> recorded videos directly available to Synology's
> Surveillance app?
>
> thanks
>
>
> _______________________________________________
> 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 188, Issue 3
*******************************************

Reply via email to