2014-10-17 9 views
6

करने के लिए अद्यतन हाल ही में मावेरिक्स 10.9.5 को अद्यतन करने के बाद के बाद काम नहीं कर रहा, ffmpeg के अपने स्थापनाffmpeg मावेरिक्स

त्रुटि बाहर गुस्सा दिलाना किया गया? मैं मैन्युअल संकलन के साथ बहुत familar नहीं हूँ और मैं होमब्रू के माध्यम से ffmpeg स्थापित किया।

मैं स्थापना रद्द करने और कर की कोशिश की:

brew install ffmpeg --HEAD 
brew install ffmpeg --build-from-source 

लेकिन इसे वापस थूक एक कॉन्फ़िगर त्रुटि कुछ नगण्य के बाद

==> ./configure --prefix=/usr/local/Cellar/ffmpeg/2.4.2 --enable-shared --enable-pthreads --enable-gpl --enable-version3 --enable-nonfree --enable-hardcoded-tables --enable-avresample 
If you think configure made a mistake, make sure you are using the latest 
version from Git. If the latest version fails, report the problem to the 
[email protected] mailing list or IRC#ffmpeg on irc.freenode.net. 
Include the log file "config.log" produced by configure as this will help 
solve the problem. 

READ THIS: https://github.com/Homebrew/homebrew/wiki/troubleshooting 

These open issues may also help: 
gpac 0.5.0 doesn't build against ffmpeg 2.4.1 (https://github.com/Homebrew/homebrew/issues/32978) 
+1

क्या आप 'ब्रू डॉक्टर' के आउटपुट पोस्ट कर सकते हैं? क्या 'x264' मदद पुनर्स्थापित करें? –

उत्तर

12

मेरे समाधान।

brew uninstall ffmpeg 
brew doctor 

तो यह मुझे बताया था मैं किसी अनलिंक ffmpeg था और मैं कुछ निर्भरता

brew install faac lame xvid 
brew doctor 

था तो यह मुझे बताया था मैं तो बस किसी अनलिंक आइटम था।

brew install ffmpeg 

और यह काम किया।

+0

आपके उत्तर के आधार पर मैंने अभी यह किया है: 'ब्रू अनइंस्टॉल करें ffmpeg faac lame xvid' ' ब्रू क्लीनअप ' ' ब्रूव इंस्टॉल करें faac lame xvid ffmpeg' – danielson317

0

हाई सिएरा (मैकोज़ 10.13) के लिए मैंने क्रिसलिक के उत्तर में ffmpeg विधि को अनइंस्टॉल करने का प्रयास किया, लेकिन इससे मेरे लिए मामला हल नहीं हुआ। मैं एक बड़ा कदम आगे बढ़ गया और पूरी तरह से हटा दिया और मेरे होमब्रू को पुनर्स्थापित किया।

अपने जोखिम पर आगे बढ़ें।

चरण 1. स्थापना रद्द करें Homebrew

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall)"

चरण 2. स्थापित करें Homebrew

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

चरण 3. ffmpeg स्थापित

brew install ffmpeg

जाहिर है कि आपने होमब्री के माध्यम से स्थापित किसी अन्य एप्लिकेशन को पुनर्स्थापित करना होगा यदि आपने यह विकल्प चुना है।

यह दृष्टिकोण वास्तव में हाई सिएरा पर मेरे लिए काम करता था। शायद कोई और सीधी विधि है, जब तक कि कोई इसे पोस्ट न करे, बस ऐसा करने पर विचार करें। और फिर, क्रिसिलिक की अधिक सीधी विधि वास्तव में मेरे मामले के लिए काम नहीं करती थी।