Advertisement
Guest User

Untitled

a guest
Jan 6th, 2013
433
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.40 KB | None | 0 0
  1. omx player rpi tutorial
  2. -----------------------
  3.  
  4. sudo nano /boot/config.txt
  5. sudo apt-get install ca-certificates git-core binutils libva1 libpcre3-dev libidn11-dev libboost1.50-dev libfreetype6-dev libusb-1.0-0-dev
  6. gpu_mem = 16
  7. git clone git clone git://github.com/Stasik0/omxplayer
  8. mkdir makefiles
  9. cd makefiles
  10. git clone git://github.com/wrightrocket/omxplayer.git
  11. cd ..
  12. cd omxplayer
  13. copy ../makefiles/omxplayer/Makefile* .
  14. -Following here http://wrightrocket.blogspot.de/2012/08/building-omxplayer-for-raspbian-on.html
  15. nano Makefile.include
  16. =turn RASPBIAN on and add -std=c++0x to CCFLAGS
  17. =add -I/usr/include/freetype2
  18. =add -l freetype to ldflags
  19. nano Makefile
  20. =update targets
  21. SRC=linux/XMemUtils.cpp \
  22. utils/log.cpp \
  23. DynamicDll.cpp \
  24. utils/PCMRemap.cpp \
  25. utils/RegExp.cpp \
  26. OMXSubtitleTagSami.cpp \
  27. OMXOverlayCodecText.cpp \
  28. BitstreamConverter.cpp \
  29. linux/RBP.cpp \
  30. OMXThread.cpp \
  31. OMXReader.cpp \
  32. OMXStreamInfo.cpp \
  33. OMXAudioCodecOMX.cpp \
  34. OMXCore.cpp \
  35. OMXVideo.cpp \
  36. OMXAudio.cpp \
  37. OMXClock.cpp \
  38. File.cpp \
  39. OMXPlayerVideo.cpp \
  40. OMXPlayerAudio.cpp \
  41. OMXPlayerSubtitles.cpp \
  42. SubtitleRenderer.cpp \
  43. Unicode.cpp \
  44. omxplayer.cpp \
  45. make sources
  46. make -f Makefile.ffmpeg
  47. make -f Makefile.ffmpeg install
  48. make
  49. make dist
  50.  
  51. compiling boblight
  52. ./configure CXXFLAGS="${CXXFLAGS} -march=armv6 -mfpu=vfp -mfloat-abi=hard" --without-portaudio --without-opengl --without-x11 --prefix=/usr
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement