Bob,
The automatic purging is no longer working, whether using % or fixed GB levels as criteria. The disk fills to the requested level but then stops recording anything else.
Bill Ballard
Code: Select all
Nov 23 10:00:37 raspberrypi CRON[16459]: (CRON) info (No MTA installed, discardi ng output)
Nov 23 10:00:40 raspberrypi motion: [1:ml1] [WRN] [ALL] motion_loop: Retrying un til successful connection with camera
Nov 23 10:00:40 raspberrypi motion: [1:ml1] [ALR] [NET] netcam_start: Network Ca mera thread starting... for url (http://localhost:80/html/rpi2cam/cam_pic.php)
Nov 23 10:00:40 raspberrypi motion: [1:ml1] [NTC] [NET] netcam_setup_html: conne cted, going on to read image.
Nov 23 10:00:40 raspberrypi motion: [1:ml1] [NTC] [NET] netcam_read_html_jpeg: d isconnecting netcam since keep-alive not set.
Nov 23 10:00:40 raspberrypi motion: [1:ml1] [NTC] [NET] netcam_read_html_jpeg: l eaving netcam connected.
Nov 23 10:00:40 raspberrypi motion: [1:ml1] [CRT] [NET] netcam_start: libjpeg de compression failure on first frame - giving up!
Looking on Github I think this is the master library https://github.com/silvanmelchior/userl ... s/raspicam as quoted on this library https://github.com/peterschlosser/raspimjpeg
You can get a good idea of what has changed by looking at the commits on the GIT page...Gary Littlemore wrote: @btidey Is there a version log Robert so we can see what's been updated in each version released?
Thanks for the confirmation. ( The last commit is on Jan 2015 though ). Once I had tried this and couldn't get it compile right away. I will take a look.Gary Littlemore wrote: ↑Tue Jan 08, 2019 10:28 amLooking on Github I think this is the master library https://github.com/silvanmelchior/userl ... s/raspicam
The https://github.com/silvanmelchior/RPi_C ... master/bin 'raspimjpeg' has a time stamp of 5 months ago.Kaushik wrote: ↑Tue Jan 08, 2019 12:52 pmThanks for the confirmation. ( The last commit is on Jan 2015 though ). Once I had tried this and couldn't get it compile right away. I will take a look.Gary Littlemore wrote: ↑Tue Jan 08, 2019 10:28 amLooking on Github I think this is the master library https://github.com/silvanmelchior/userl ... s/raspicam
Hi,I want the source code. Not the binary.Gary Littlemore wrote: ↑Tue Jan 08, 2019 3:24 pm
The https://github.com/silvanmelchior/RPi_C ... master/bin 'raspimjpeg' has a time stamp of 5 months ago.
Gary Littlemore wrote: ↑Tue Jan 08, 2019 3:24 pmThe https://github.com/silvanmelchior/RPi_C ... master/bin 'raspimjpeg' has a time stamp of 5 months ago.Kaushik wrote: ↑Tue Jan 08, 2019 12:52 pmThanks for the confirmation. ( The last commit is on Jan 2015 though ). Once I had tried this and couldn't get it compile right away. I will take a look.Gary Littlemore wrote: ↑Tue Jan 08, 2019 10:28 am
Looking on Github I think this is the master library https://github.com/silvanmelchior/userl ... s/raspicam
Code: Select all
[b]Time Lapse conversion issues[/b]
The time lapse converter now uses gstreamer to do the work which utilises the GPU and makes it very fast.
All the necessary components are included in a full Jessie image but not in Jessie Lite. The camera install adds on the extra gstreamer-tools package but not the base gstreamer s/w which is quite a lot of stuff.
There are a few options here.
a) Install gstreamer onto Jessie Lite. (sudo apt-get install gstreamer1.0) I have done this and it then works, but I now normally use method c)
b) Use full Jessie
c) Use full Jessie and remove the major unnecessary components as described in Installation tips section.
In addition because the conversion uses the GPU the image format needs to be compatible with the GPU conversion processing. Full static image resolution conversion will not work but resolutions up to 1920 x 1080 will. If you wish to use higher resolution formats then I suggest downloading the image set for external conversion.
Hi,
Thanks. I was able to build raspimjpeg but found two issues:tvoverbeek wrote: ↑Thu Jan 10, 2019 6:47 pmThe source is in https://github.com/roberttidey/userland ... s/raspicam with latest commit 21 Oct 2018.