Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/artcom/y60vlc
Y60 Plugin for VLC (stream http & rtp!)
https://github.com/artcom/y60vlc
Last synced: about 1 month ago
JSON representation
Y60 Plugin for VLC (stream http & rtp!)
- Host: GitHub
- URL: https://github.com/artcom/y60vlc
- Owner: artcom
- License: other
- Created: 2012-09-14T15:09:04.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2014-01-10T16:13:35.000Z (about 11 years ago)
- Last Synced: 2024-11-07T06:36:15.406Z (3 months ago)
- Language: C++
- Size: 887 KB
- Stars: 0
- Watchers: 30
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- License: LICENSE.txt
Awesome Lists containing this project
README
Mac OS Build Instructions
=========================Using Homebrew does not seem to work cleanly under Mavericks to date 2013-11-18, see below for workaround.
Using Homebrew:
————————————————————
- install libvlc ((a) or (b)):(a) from brew formula:
$ brew tap tomahawk-player/homebrew-tomahawk
$ brew install vlc --HEAD
(b) use installed vlc in /Applications:
edit cmake config accordingly
- LIBVLC_INCLUDE_DIR = '/Applications/VLC.app/Contents/MacOS/include'
- LIBVLC_LIBRARY = '/Applications/VLC.app/Contents/MacOS/lib/libvlc.dylib'
$ export DYLD_LIBRARY_PATH=/Applications/VLC.app/Contents/MacOS/lib- now you should be able to build y60vlc with the standard CMAKE toolchain
- set VLC_PLUGIN_PATH=/usr/local/lib/vlc/plugins (or: /Applications/VLC.app/Contents/MacOS/plugins)Using VLC binaries (Mavericks workaround:
————————————————————
- install VLC from videolan.org (binary)
- target CMake properties accordingly:
LIBVLC_INCLUDE_DIR=/Applications/VLC.app/Contents/MacOS/include
LIBVLC_LIBRARY=/Users/user/Development/Samples/y60vlc/lib/libvlc.dylib
- y60vlc should now be able to build
- if you encounter an “vlc library not found” error when running y60 with y60vlc you can add a temporary library fallback path with:
export DYLD_FALLBACK_LIBRARY_PATH=/Applications/VLC.app/Contents/MacOS/libWindows Build Instructions
==========================- Download the precompiles binaries from http://nightlies.videolan.org/build/win32/last/ and extract them somewhere (set the VLC_DIR enviroment var to point to it)
- Note: make sure the %VLC_DIR%/sdk subdirectory exists. The last time I checked, it was missing the the zip, but existed in the 7z archive- add %VLC_DIR% to the PATH
- set VLC_PLUGIN_PATH to %VLC_DIR%\plugins