Introduction: Live Picture Frame With Raspberry PI
I recently moved from UK back to Spain to work remotely, and since then, I've been curious about how the weather is there, specially when talking with people on the other country. Is it raining today ? Is the sun gone already ?
To address that problem, I found a few live videos/webcams about london like earthtv or London Tower Bridge so I kept those videos on one of the tabs of my browser.
But, wouldn't be cool to have it on a separate picture frame, always there, just like a normal picture, but live.
That's why I built a slim picture frame from old recycled components. To see the Tower Bridge at day and at night.
Step 1: Materials
These are the materials I used to create the live picture. All these items were already on my inventory:
- Old ultra-thin LCD screen from a broken laptop (10 years old)
- 12v LCD controller board with VGA output
- WLAN USB + Micro USB OTG adaptor
- Raspberry PI Zero
- HDMI to VGA adaptor
- 12v to 5v converter regulator
- Ikea KNOPPANG picture frame for A4
- Sonoff wireless switch (optional)
- VGA cable, micro usb cable, 12v splitter cable
Step 2: Adjusting the Picture Frame
The Ikea picture frame was made for A4 pictures, however, my 15'' LCD screen is slightly bigger than that, therefore we need to make some adjustments, first, increasing the hole in the white inner frame to 15''.
Then, cutting the back of the frame to the same size
Everything should fit together, so you should be able to see all the screen inside the inner frame
Step 3: LCD Screen
Since a few years ago, I had an ultra thin LCD screen from an old broken laptop. After finding and using a controller board, I've been able to use it as extra screen for my desktop computer sugin a VGA connection.
Controller boards are specific to the LCD screen, you need to use an specific model for the serial number of your screen, you can find it on the back. Then it's a matter of searching ebay/aliexpress for a controller board listing compatibility with your screen model.
So I decided to recycle this screen now to create the canvas, because it's thin and lightweight.
I removed the front case, but left the back side to protect the screen, isolate the components and glue the cables and raspberry pi to it.
The Raspberry PI zero, glued to the back of the screen, is powered by the same power adaptor that powers the LCD screen, using a 12v to 5v conversor. So we don't need another extra cable connected into the screen. This is how it looks from the back.
Step 4: Wall Mounting
After everything has been assembled together, and tested, we're ready to hang it into the wall. For this I've just added two L shape hooks into the wall, and another two round hooks screwed into the plastic back of the screen.
After hanging it to the wall, I connected the 12v cable, and try to hide it using white tape.
Step 5: Automatically Schedule Screen
I'd like to schedule the frame, so it runs from 10AM to 7PM on weekdays, my working hours, so I can see London while I work remotely.
My first approach was to add some scripts on the Raspberry PI (cronjobs) to automatically switch ON/OFF the video output using `tvservice --off` or `xset dpms force off` however it didn't work pretty well in my case, because my LCD controller was not going into standby after turning off the HDMI signal.
So I decided to use a cheap wireless smart switch I've been using for a while, which can be scheduled and controlled by the phone, called [Sonoff](http://sonoff.itead.cc/en/). You could be using an [Energenie](https://coconauts.net/blog/2016/04/15/energinie-and-raspberry-pi-setup/), Xiaomi or something similar if you like.
This device needs to be connected in between your power cable, then you can configure it via the phone app.
Then you can add the schedule so the Sonoff, and the Raspberry PI and the screen will be turned ON and OFF automatically.
Step 6: Software
Because I have now a Raspberry PI powered LCD screen hanging in the wall, I can pretty much display whatever I want. Like for example:
- Web page using chrome `chromium-browser --kiosk $url`
- Video using omxplayer `omxplayer video.mp4`
- Use Kodi to display videos or other plugins.
- Youtube, twitch live video using the Livestreamer
- etc.
Display live video using livestreamer
For this project, I chose to display the London Tower Bridge from a live stream in youtube.
This can be easily achieved using [livestreamer](https://github.com/chrippa/livestreamer) open source app, which allow us to display any live content from Youtube, twitch, livestream, dailymotion, etc... into a local video player, without using a web browser.
This is the command I'm using to display a Youtube link using omxplayer on fullscreen.
livestreamer $youtube_url 720p -n -p "omxplayer --no-osd --win '0 0 1280 800' "
- $youtube_url is a variable with the url of the livestream on youtube
- 720 is to select the resolution of the video, you can also use best or worst.
- -n or --fifo Make the player read the stream through a named pipe instead of the stdin pipe
- -p player to use
- --no-osd hide the UI from omxplayer
- --win display video on full screen (my screen resolution) on omxplayer
Omxplayer is the best open source video player on Raspberry PI, you could try using VLC, but it will not work or display anything because of the lack of native hardware acceleration on Raspberry PI.
Script to display on startup
I wanted to automatically run the video on startup, without any manual interaction.
There are a few ways to do it, but the best I found is using the `autostart` script located in /home/pi/.config/lxsession/LXDE-pi/autostart. On this script, you need to add `@` before every command.
If you want to keep the display ON, you'll need to add these lines to prevent the screen going OFF after a few minutes.
@xset s off @xset -dpms @xset s noblank
Then you can add the command from before to start the livestream on startup. This is all you need to add into the `/home/pi/.config/lxsession/LXDE-pi/autostart` script:
@xset s off @xset -dpms @xset s noblank @livestreamer <a href="https://youtu.be/SMOb9d9s_mI" rel="nofollow"> https://youtu.be/SMOb9d9s_mI </a> 720p -n -p "omxplayer --no-osd --win '0 0 1280 800' "
Alternatives
I tried many alternatives to livestreamer, many of them won't work because of the lack of power on the Pi. However, you can still try using Chromium + website (eg:youtube)
youtube_url="https://www.youtube.com/tv#/watch?v=x0NLslAn0Sc" #london bridge youtubetv
chromium-browser --incognito --kiosk "$youtube_url"
Using chromium --kiosk and youtube/tv you will be able to display a video on youtube fullscreen, still the video will run a bit slow compared with livestreamer
Step 7: Conclussions and Improvements
This was an easy and cheap project to build, if you have an old screen, or you get a cheap one. The picture frame looks very nice hanging on the wall, and thanks to youtube and livestreamer, we can display any video very easily.
It took me some time to find the best streaming combination on Raspberry PI Zero. I tried using `chromium-browser --kiosk` but after sometime the browser was crashing; I tried using VLC to display M3U8 streaming video, but VLC was not efficient enough. Some links did not play on omxplayer, so at the end, I decided to use livestreamer, which works pretty well, and you can use it with other sources too.
I'd like to have a better LCD screen, maybe LED, with a direct HDMI connection and better viewing angle.
You could use the spare 12v connector to add a LED strip on the back of the frame, if you want to have some extra light effect.
Let me know what you think about this project, and if you've built your own.

Runner Up in the
Wireless Contest

Second Prize in the
Raspberry Pi Contest 2017

Participated in the
Reclaimed Contest 2017
34 Comments
5 years ago
So if i understand well, the AC scheduler power off the screen, not the raspberry ?
I begin a frame like this with an old Toshiba Laptop, but it became too hot so the glued screen felt.
I wanted to make another with an old laptop screen, but the adapter is 30$ on eBay, pricer than a full used screen.
So I will make a new one base on an used 19inch screen (10$)
Reply 5 years ago
The AC scheduler (Sonoff wireless switch) powers off both the screen and the raspberry PI, because it sits in the power cord that gets splitted with the 12v splitter cable.
Laptops are more power heavy than Rasperry PI, still, it shouldn't get too hot to melt the glue. I agree LCD adapters a bit pricey, a cheaper 2nd hand old TFT screen would be better if you need to buy one.
5 years ago
Quick question for you. What is the term for the connections the end of the converter. The piece the +/- wires run into?
Thanks! This project is great. I'm looking to do something similar. Just gathering parts!
Reply 5 years ago
I guess you're talking about the 12v to 5v converter, you can find one like this in aliexpress . The converter takes an 12v input and produces a 5v output, compatible with the Raspberry PI . Let me know if that answers your question.
Reply 5 years ago
Hey, thanks for the quick reply. I actually meant the piece that the converter plugs into. It looks like you have an adapter (green bit that the converter goes into) allows it to connect to the power adapter and to the pi
Reply 5 years ago
Just in case anyone else is wondering, I was referring to the "screw terminal adapter" it's what you'll need to plug the 12v to 5v converter into. :)
5 years ago
Nice! I put it on my to-make list. Time to start dismantling my oldest laptop! You got my vote.
5 years ago
I am new to this (Pis and Linux), so please forgive me if I am missing something obvious. I assume that connecting to YouTube requires connecting to the internet, but as far as I can tell the Pi Zero does not have WiFi or Ethernet. How does this work? Thanks.
Reply 5 years ago
Looking at the pictures I now see a WLAN adapter connected to the PI, but I don not see that part in the parts list, nor any mention of it in the text.
Reply 5 years ago
You are totally right, I'm using a WLAN adaptor + Micro USB adaptor. You could also use the new Raspberry Pi Zero W which has Wifi. I'll update the description.
5 years ago
I was hoping to do something similar, however there are no livestream youtube or otherwise sites. There are some webcams this ones specifically
http://www.wirralcam.org/wirralcam2016/waterfront2...
That I could use however I am not sure with it can be acheived with the same coding you used. do you have any suggestions. (I am sourcing the parts now.
Reply 5 years ago
I guess you're trying to find a livecam on Liverpool; I couldn't find any on youtube. That page you sent shows you a screenshot every 30 seconds, it's not great, but you can still use it if you open a chrome browser. You could also find a streaming in m3u8, which can be displayed in omxplayer (if it's compatible). I'm not an expert on live streamings, maybe someone else can help you find the video you want. Good luck.
Reply 5 years ago
Thanks, I appreciate the response. I agree it is not ideal. But the alternative requires a flight and setting up my own cam. :)
I guess I will need to do more research, I am not sure how to make the pic in the link full screen and also refresh. I also am not sure what m3u8 is and doing a quick google makes it seem not so simple. It is also hard to search for stream and liverpool and not get 1 million links regarding liverpool FC games. :( I'll see what I can do to build off of your project. Thanks
5 years ago
Great minds and all that...I did something similar for a co-worker who has a windowless office. My script pulls random stream URLs from a separate file, and rotates what's shown every 45 minutes (changeable in the script of course).
Reply 5 years ago
Desegel, could you please let me know whether I can use a small, cheap tv or a large-screen laptop to do the same as your project, in a seniors' support center? Any help with the script would be extremely helpful. Could it also be used as a digital photo frame via memory card/wireless?
Your input is much appreciated.
Ed
Reply 5 years ago
Absolutely - you can use any display that has an HDMI input (or DVI/VGA with an adapter). In my case we're using a 32" TV mounted on the wall.
The Raspberry Pi 3 has wireless built in. You could set it up to read from a USB flash drive, but you'd have to know some linux commands and shell scripting to do that.
I'd be happy to send you my script. I'd even put it here if I could figure out how to format it properly.
5 years ago
Good idea
5 years ago
What a great idea. What about a cheap 32" tv with a USB and a google cromecast. Mount it on a $20 tv wall mount. :)
Reply 5 years ago
Absolutely, I used recycled components but you're free to buy the components you need to make this work. You'll need to get a very thin and lightweight tv to make it look like a picture frame on the wall (mine is about 1cm deep). You can also use the Chromecast too, but I prefer using a Raspberry PI so I can run scripts and display videos on startup.
Reply 5 years ago
I love the Pi's. :)