Raspberry Pi : How to Watch Netflix, Amazon Video, and Plex With Raspberry Pi


Things you will need
  1. Raspberry Pi 3 (recommended), Raspberry Pi Zero W.
  2. MicroUSB power cable.
  3. An 8GB MicroSD card.
  4. Case to prevent overheating.
  5. Flirc IR receiver or the Flirc Raspberry Pi Case.
Get your kit :
/|\

Install Kodi on Raspberry Pi With OSMC



You’ll need to get started by choosing the right version of Kodi for your Raspberry Pi. As you may know, several Kodi versions are available for Raspberry Pi, but to get Netflix, Amazon Video, and Plex working with minimal effort, you’ll need to use OSMC (Open Source Media Center).

turn raspberry pi into the ultimate media center


Available from osmc.tv, you’ll need to download the installer file for Windows, Mac, or Linux. This automates the process of writing OSMC to your microSD card. Alternatively, download the disk image and install in the usual way.




Once installed on the card, you’re free to insert the card in your Raspberry Pi, connect it to your local network (use Ethernet for now, you can set up Wi-Fi once everything is configured) and your TV’s HDMI port, and connect the power cable.

Downgrade OSMC for Better Stability


Although you have installed OSMC, a very specific version that isn’t available to write as an image to your microSD card is required. This “nightly build” is stable enough to run the Netflix add-on which you’ll install later.

First, open the Terminal or connect to OSMC via SSH and enter:

sudo nano /etc/apt/sources.list
In the file, append this line to the bottom; this adds a new source.
deb http://download.osmc.tv/dev/gmc-18 gmc-18 main
Add a new source in the Terminal
Press Ctrl + X to save and exit. Next, add the GPG certificate to validate the source:
wget -qO - http://download.osmc.tv/dev/gmc-18/gpg.key | sudo apt-key add -
The next step is to update the sources list:
sudo apt-get update
You can then run a kernel upgrade:
sudo apt-get dist-upgrade -y


Follow this by downgrading to build 17.8-225.

sudo apt-get install rbp2-mediacenter-osmc=17.8-225 -y
This may take a while, so be patient. Once this is complete, install the following dependencies:
sudo apt-get install python-pip python-crypto build-essential -y
sudo apt-get install python-all-dev python-setuptools python-wheel -y
sudo apt-get install python-crypto-dbg python-crypto-doc python-pip-whl -y


These dependencies will ensure that everything you’re about to install will work as intended.

Install and Configure Plex for Local Media Streaming


Want to stream video, music, or photos from another device on your network? You’ll need the Plex server installed on your PC, and the client add-on installed on your Raspberry Pi.
Plex running on OSMC


With OSMC running on your Raspberry Pi, browse to Settings > Add-on browser > Install from Repository > Video add-ons. Scroll through the list until you find Plex, select, and Install. Click OK to confirm, and wait while this finishes.

Once done, use the Restart option to reboot the Raspberry Pi.

While that’s happening, check our Plex guide for information and tips for this great streaming solution.

Install and Configure Amazon Video on Raspberry Pi


Want to stream Amazon Video on your Raspberry Pi? Here’s what you need to do.

Staying in the terminal (or SSH client), it’s time to install the Amazon Video add-on. Begin using a wget command to download the ZIP file directly from GitHub:
wget https://github.com/Sandmann79/xbmc/releases/download/v1.0.2/repository.sandmann79.plugins-1.0.2.zip
With this done, switch your attention to your TV and navigate to Settings > Add-on browser > Install from Zip File. Here, select Root filesystem, then find your way to home > osmc > repository.sandmann79.plugins.
Install repository for Amazon VOD on Raspberry PI
Select this, and wait as it unpacks, then browse back and find Settings > Add-on browser > Install from repository. Go to Sandmann79s Repository and find Video add-ons. From here, select Amazon VOD (the alternative called “Amazon” is for German users).
Amazon VOD dependencies in Kodi
Select Install, then confirm with OK. Note that some additional add-ons will be installed (see above image). Leave it to finish, then reboot your Raspberry Pi. When it restarts, it’s time to configure the add-on. Browse to Settings > Add-on browser > My Add-ons > Video Add-ons, and select Amazon VOD.
Configure Amazon VOD on OSMC


Go to Configure, and in the General view change the Playback option so that Input Stream is selected. Then, in the Connection view, select Sign In and input your Amazon account credentials.

With this done, you’ll be ready to watch Amazon video content! You’ll find Amazon VOD listed under Add-ons.
turn raspberry pi into the ultimate media center

Install and Configure Netflix on Raspberry Pi

Let’s look at streaming Netflix on the Raspberry Pi next.

To install a Netflix client on your Raspberry Pi, you’ll need to perform some minor configuration first. In the terminal, enter:
pip install pycryptodomex
This is a dependency required to run Netflix. The add-on needs to know where this is, so add a symbolic link:
sudo ln -s /usr/lib/python2.7/dist-packages/Crypto /usr/lib/python2.7/dist-packages/Cryptodome
Next, download the add-on itself from GitHub.
wget https://github.com/kodinerds/repo/raw/master/repository.netflix/repository.netflix-1.0.1.zip
Return your attention to the TV, and browse to the ZIP file: Settings > Add-on browser > Install from Zip File. Under Root filesystem, find home > osmc > repository.netflix-1.0.1.zip, and select Install.
Install Netflix on Raspberry Pi
Wait for the notification, then go back and browse to Settings > Add-on browser > Install from repository > Netflix Addon Repository, and then Video add-ons. Here you’ll find Netflix; select Install, choose the most recent version, then OK.
Install Netflix add-on
With this done, restart your Raspberry Pi. When it reboots, you’ll need to configure the add-on with your Netflix credentials.
Configure Netflix add-on on your Raspberry Pi OSMC
Open Settings > Add-on browser > My add-ons > Video add-ons > Netflix, select Configure, then find Account. Under Switch Account, enter your credentials.
Configure resolution on the Netflix add-on
You’ll also need to configure the InputStream module. In Settings > Add-on browser > My add-ons, find VideoPlayer InputStream and select InputStream Adaptive. Choose Configure, then set Max Resolution General and Secure Decoders so that they match the resolution of your TV. Click OK to confirm, and exit.



Your Raspberry Pi Is Now the Ultimate Media Center


That’s it: you can now stream Netflix and Amazon Video on Raspberry Pi, and it can easily stream video from another computer on your network via Plex. In short, your Kodi-based Raspberry Pi media center is awesome again.

Meanwhile, if you’re concerned about using a VPN with your Raspberry Pi, OpenVPN is preinstalled with OSMC, which is straightforward to configure. Almost all of the best VPNs provide OpenVPN compatibility.

Comments