Advertisement
Fokker

FokStream

Apr 6th, 2014
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.64 KB | None | 0 0
  1. ==== F1 peer-to-peer streams kijken via XMBC ====
  2.  
  3. Dit is een korte tutorial om stream te kijken via XMBC. We gaan er hierbij vanuit dat je XBMC (http://xbmc.org) hebt draaien op een apparaat (bijvoorbeeld een Raspberry Pi) dat aan je tv hangt.
  4.  
  5. Wil je gewoon op je pc kijken, dan kan dat ook via XBMC via deze tutorial, maar je kunt ook de streams via de daarvoor bedoelde programma's openen. Zie bijvoorbeeld http://acestream.org of http://www.sopcast.com
  6.  
  7. 1.
  8. Download op je computer de p2p-streams repository zip (rode link) op
  9. http://www.xbmchub.com/forums/threads/18099-RELEASE-p2p-streams-Acestream-and-Sopcast-*BETA*
  10.  
  11. 2.
  12. Ga in XBMC naar System - Add-ons - Install from zip file
  13.  
  14. 3.
  15. Navigeer over je netwerk naar de in stap 1 gedownloade zip file en installeer die
  16.  
  17. 4.
  18. Installeer p2p-streams via Videos - Add-ons - Get more... - p2pstreams
  19.  
  20. 5. (optioneel voor de Raspberry Pi voor minder problemen met buffering)
  21. =====================
  22. 5.1 - Find the ip address of your pi. You can find that under system --> system info:
  23. 5.2 - Open up an ssh client. For windows you can use putty (www.putty.org) for mac/linux you can run ssh from the terminal (ssh username@ip-address)
  24. 5.33- Login with the following credentials:
  25. (raspbmc)
  26. user: pi
  27. pass: raspberry
  28.  
  29. (xbian)
  30. user: xbian
  31. pass: raspberry
  32.  
  33. (openelec)
  34. user: root
  35. pass: openelec
  36. 5.4: Once in your pi terminal run the following command to edit the advancedsettings.xml file:
  37. (raspbmc)
  38. nano /home/pi/.xbmc/userdata/advancedsettings.xml
  39. (openelec)
  40. nano /storage/.xbmc/userdata/advancedsettings.xml
  41. (xbian)
  42. nano /home/xbian/.xbmc/userdata/advancedsettings.xml
  43.  
  44. Edit the file with the following, save it (ctrl+o) and exit (ctrl+x)
  45. <advancedsettings>
  46. <network>
  47. <cachemembuffersize>252420</cachemembuffersize>
  48. <curlclienttimeout>45</curlclienttimeout>
  49. </network>
  50. <gui>
  51. <algorithmdirtyregions>3</algorithmdirtyregions>
  52. <nofliptimeout>0</nofliptimeout>
  53. </gui>
  54. <videoscanner>
  55. <ignoreerrors>true</ignoreerrors>
  56. </videoscanner>
  57. </advancedsettings>
  58.  
  59. 5.5 - To check if your modifications were saved into the file you can run cat command:
  60. (raspbmc)
  61. cat /home/pi/.xbmc/userdata/advancedsettings.xml
  62. (openelec)
  63. cat /storage/.xbmc/userdata/advancedsettings.xml
  64. (xbian)
  65. cat /home/xbian/.xbmc/userdata/advancedsettings.xml
  66.  
  67. This command will output the contents of your file in the terminal. Check if it is right
  68.  
  69. 5.6: Reboot the pi for changes to take effect:
  70.  
  71. (raspbmc/xbian)
  72. sudo reboot
  73. (openelec)
  74. reboot
  75. =====================
  76.  
  77. 6.
  78. Programma starten bij video addons, website parsers selecteren (helemaal bovenaan), kies een bron (bijvooreeld torrent-tv.ru) en daar staat Sky Sports F1 tussen.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement