मैंने इसे स्रोत से संकलित करने के लिए ट्यूटोरियल का उपयोग किया, लेकिन इसने मेरे लिए कभी काम नहीं किया। मैं निम्नलिखित बिंदुओं पर त्रुटि का सामना कर रहा हूं
डाउनलोड x264 कोडेक और इसे संकलित करें:
git clone git://git.videolan.org/x264.git x264
cd x264
./configure –enable-static
make && make install
त्रुटि संग्रह:
cd x264
./configure –enable-static
Unknown option –enable-static, ignored
Found no assembler
Minimum version is yasm-1.2.0
If you really want to compile without asm, configure with --disable-asm.
make && make install
Makefile:3: config.mak: No such file or directory
./configure
Found no assembler
Minimum version is yasm-1.2.0
If you really want to compile without asm, configure with --disable-asm.
make: *** [config.mak] Error 1
तथा
cd libav
./configure --enable-gpl --enable-nonfree
make && make install
त्रुटि संग्रह:
cd libav
./configure --enable-gpl --enable-nonfree
Unable to create and execute files in /tmp. Set the TMPDIR environment
variable to another directory and make sure that it is not mounted noexec.
Sanity test failed.
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
libav-tools@libav.org mailing list or IRC #libav on irc.freenode.net.
Include the log file "config.log" produced by configure as this will help
solving the problem.
make && make install
Makefile:1: config.mak: No such file or directory
Makefile:99: /common.mak: No such file or directory
Makefile:137: /libavutil/Makefile: No such file or directory
Makefile:137: /library.mak: No such file or directory
Makefile:139: /doc/Makefile: No such file or directory
Makefile:214: /tests/Makefile: No such file or directory
make: *** No rule to make target `/tests/Makefile'. Stop.
संदर्भ लिंक: http://blog.droidzone.in/2013/12/24/convert-a-wmv-file-to-avi-on-the-linux-command-line/
मैं इन का उपयोग कर स्थापित है, लेकिन अभी भी मैं मुद्दों का सामना कर रहा हूँ
wget https://www.libav.org/releases/libav-10.5.tar.gz
tar xf libav-10.5.tar.gz
TMPDIR=/home/sociaow2/tmp/avco/libav-10.5 ./configure
make && make install
cd
जब मैं उस कमांड को दर्ज करता हूं तो सभी लिबास अब इंस्टाल हो जाते हैं
avconv -i state.mp4 -r 20 -s 480x352 -b 600k -vcodec libx264 out_state.mp4
अज्ञात एनकोडर 'libx264' कमांड पर
avconv -i state.mp4 -r 20 -s 480x352 -b 600k -vcodec libx264 out_state.mp4
अज्ञात एनकोडर 'libmp3lame' कमांड पर
avconv -i state.mp4 -r 20 -s 480x352 -b 600k -vcodec libx264 out_state.mp4
yasm
) स्थापित करने , या--disable-asm
ध्वज के साथ संकलित करने की आवश्यकता है ।