Read the statement by Michael Teeuw here.
digital photo frame
-
Wouldn’t it be great if you can upload your photo’s on your mobile device into an application, which sync it with your magic mirror module and create an fantastic photo frame?
Everyone can look at the family pictures, and you never have to print an picture anymore! Allowing one person or the whole family adding /deleting pictures out of the application?!
(Its like “Wunderlist” but than with pictures. ;) )
If some people are interested let me know and we can start building it together!
-
@Labzz I´m interested and i pulled a similar request days ago :P
-
@Labzz is this not possible with dropbox and the possibility of showing local pictures?
-
Haven’t tried but If dropbox can run on Pi, all you need is this module?
-
@1m2 https://github.com/andreafabrizi/Dropbox-Uploader can also download
-
-
Maybe https://github.com/kapsolas/MMM-Flickr is suited for this task
-
I use https://github.com/kapsolas/MMM-Instagram
with swapping the line
var media = items[i].images.low_resolution.url;
in node_helper.js with
var media = items[i].images.standard_resolution.url;
as well as the following in my custom css
img {
filter: grayscale(100%);
max-width:500px;
}setup a seperate private instagram and give the login details to everyone in the house…
-
@onetwankyfive but instagram is crap… low resolution etc. etc. local would be super cool :)
-
@schlachtkreuzer6 I created a picture module which loads pictures from a local folder and downscales them to show 1,2 or 4 of them at the same time. The issue being that electron crashes after some time due to being out of memory. The images have a very high resolution (3000 px) and if the 4 image layout is chosen actually 8 pictures are loaded at a time. Maybe time will tell if these issues can be fixed (http://stackoverflow.com/questions/27321997/how-to-request-the-garbage-collector-in-node-js-to-run).