I am trying to use the framework or library in an OS X app. All I need is to be able to grab a frame (NSImage) from a given point in a video file.
I tried:
git clone git://git.videolan.org/vlc/vlc-2.0.git
cd vlc-2.0/projects/macosx/framework/
xcodebuild -target "Build Everything" -configuration Release -project VLCKit.xcodeproj ARCHS="x86_64" -sdk macosx10.6
But I get:
The following build commands failed:
PhaseScriptExecution bootstrap "build/VLCKit.build/Release/Run VLC configure.build/Script-631A90420D5A007D0014A2CE.sh"
(1 failure)
Then I tried:
git clone git://git.videolan.org/vlc/vlc-1.1.git vlc-1.1
cd vlc-1.1/projects/macosx/framework
xcodebuild -alltargets -configuration Release -project VLCKit.xcodeproj ARCHS="x86_64" -sdk macosx10.6
The following build commands failed:
PhaseScriptExecution make "build/VLCKit.build/Release/Setup VLC contribs.build/Script-633BD6E30D2ADF030012A314.sh"
(1 failure)
How can I build this? I have 10.6 and 10.8 and neither one works.