Hab folgende Anleitung:
QuoteDisplay More
Building x264 on Mac OS X:
Assuming XCode,git,svn and yasm are installed:
1. open terminal
2. change to Desktop
3. create 'builds'-folder (only once)
4. change into 'builds'-folder
5. checkout ffmpeg
6. change into ffmpeg folder
7. configure ffmpeg as decoder-onlyCode./configure --enable-pthreads --enable-gpl --enable-postproc --enable-memalign-hack --enable-runtime-cpudetect --disable-devices --disable-filters --disable-encoders --disable-muxers --disable-network --disable-outdevs --disable-decoder=aac,ac3,adpcm_*,alac,als,ape,atrac?,cook,dca,dsicinaudio,dxa,eac3,flac,interplay_dpcm,mlp,mp1,mp2,mp3,mp3*,mpc?,pcm_*,qcelp,ra_*,sipr,truehd,truespeech,tta,vorbis,wavpack,wma*,twinvq --disable-demuxer=aac,ac3,pcm_*,ape,amr,ass,au,avs,dts,eac3,flac,mp3,mpc,mpc8,truehd,tta,w64,wav,wv --disable-parser=aac,ac3,dca,mlp,mpegaudio
8. compile ffmpeg
9. to back into the 'builds'-folder
10. checkout x264
11. change into x264 folder
12. configure x264, pointing to the ffmpeg/lib and ffmpeg/include foldersCode./configure --prefix=/Users/<user>/Desktop/builds --extra-cflags="-I/Users/<user>/Desktop/builds/ffmpeg/include" --extra-ldflags="-L/Users/<user>/Desktop/builds/ffmpeg/lib" --enable-static
(replace <user> with your user name)
13. compile x264
Problem ist, dass der configure-output so aussieht:
QuoteDisplay More./configure --prefix="/Users/selur/Desktop/builds" --extra-cflags="-I/Users/selur/Desktop/builds/ffmpeg/include" --extra-ldflags="-L/Users/selur/builds/ffmpeg/lib" --enable-static
platform: X86_64
system: MACOSX
cli: yes
libx264: internal
shared: no
static: yes
asm: yes
interlaced: yes
avs: avxsynth
lavf: no
ffms: no
mp4: no
gpl: yes
thread: posix
opencl: yes
filters: crop select_every
debug: no
gprof: no
strip: no
PIC: no
bit depth: 8
chroma format: allYou can run 'make' or 'make fprofiled' now.
hätte eigentlich erwartet, dass bei lavf ein 'yes' steht
-> Weiß jemand wo der Fehler liegt bzw. was ich falsch mache?
Cu Selur