当前位置:网站首页>Ffmpeg installation error: NASM / yasm not found or too old Use --disable-x86asm for a clipped build
Ffmpeg installation error: NASM / yasm not found or too old Use --disable-x86asm for a clipped build
2022-04-23 14:55:00 【sayyy】
Preface
error
compile FFMPEG when , There was a mistake nasm/yasm not found or too old. Use --disable-x86asm for a crippled build..
reason
This is because FFMPEG To improve compilation speed , Assembly instructions are used , Such as MMX and SSE etc. . If there is no yasm If you order , This error will occur .
terms of settlement
install yasm.
install yasm
Windows System installation yasm
If it is Windows System , Download one from the Internet yasm.exe And installed in mingw/bin below , recompile , The error will not occur .
Linux System installation yasm
If it is Linux System , It's simpler , Input directly at the terminal yum install yasm , After installed , Recompile it OK 了 .
Besides using yum install yasm, You can also compile and install , as follows :
stay http://www.tortall.net/projects/yasm/releases Here's what's right for your platform yasm edition . Then install . Examples are as follows :
1) download :wget http://www.tortall.net/projects/yasm/releases/yasm-1.3.0.tar.gz
2) decompression :tar zxvf yasm-1.3.0.tar.gz
3) Switching path : cd yasm-1.3.0
4) Perform configuration : ./configure
5) compile :make
6) install :make install
Reference resources
https://blog.csdn.net/yzhang6_10/article/details/75635734
https://blog.csdn.net/ranxiedao/article/details/16359183
版权声明
本文为[sayyy]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/04/202204231454059292.html
边栏推荐
- 牛客网数据库SQL实战详细剖析(26-30)
- Introduction to dirty reading, unrepeatable reading and phantom reading
- Epolloneshot event of epoll -- instance program
- 【STC8G2K64S4】比较器介绍以及比较器掉电检测示例程序
- Achievements in science and Technology (21)
- January 1, 1990 is Monday. Define the function date_ to_ Week (year, month, day), which realizes the function of returning the day of the week after inputting the year, month and day, such as date_ to
- async void 导致程序崩溃
- Detailed analysis of SQL combat of Niuke database (26-30)
- Vous ne connaissez pas encore les scénarios d'utilisation du modèle de chaîne de responsabilité?
- eolink 如何助力远程办公
猜你喜欢
随机推荐
压缩映射定理
Leetcode149 - maximum number of points on a line - Math - hash table
Practice of unified storage technology of oppo data Lake
如何打开Win10启动文件夹?
Difference between like and regexp
QT Detailed explanation of pro file
Chapter 7 of JVM series -- bytecode execution engine
Go basic reflection
3、 Gradient descent solution θ
Frame synchronization implementation
MySQL报错packet out of order
Comment eolink facilite le télétravail
2-GO variable operation
we引用My97DatePicker 实现时间插件使用
Vscode Chinese plug-in doesn't work. Problem solving
SQLSERVER事物与锁的问题
Provided by Chengdu control panel design_ It's detailed_ Introduction to the definition, compilation and quotation of single chip microcomputer program header file
8.4 realization of recurrent neural network from zero
1 - first knowledge of go language
分享 20 个不容错过的 ES6 的技巧








