Advertisement
Guest User

Untitled

a guest
Feb 9th, 2016
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. #!/bin/bash
  2. echo "Juligraph Raspberry pi Twitch streaming Software installation script."
  3. echo "This script only install necesary software for my raspberry pi twitch streaming solution (similar to chromecast)."
  4. echo "In the next versions will be implemented a nodejs webapp to controll the raspberry pi streaming via web."
  5.  
  6. echo "Checking system updates"
  7. sudo apt-get update
  8. sudo apt-get upgrade
  9. echo "Done :P"
  10.  
  11. echo "Instalkling streaming software"
  12. sudo ap-get install omxplayer
  13. sudo pip install -U livestreamer
  14. echo "Done :P"
  15. # how to call livestreamer
  16. # livestreamer twitch.com/stream best -np "omxplayer -o hdmi"
  17.  
  18.  
  19. #here goes the webserver controlle needed software
  20.  
  21. echo "Instalation complete :)"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement