mplay

时间:2024-07-02 13:45:21编辑:coo君

看电影时mplayerc.exe太占cpu怎么解决啊??

mplayerc.exe就是播放器的进程名称。
作用就是去完成当前的影音文件的播放
在没有病毒的情况下:看电影占CPU主要看你电脑的配置。
1、 CPU温度过高,除一下灰尘,看风扇有没有问题。
2、 显卡是否支持硬件解码,支持大概10%,不支持的话就你说得差不多。
3、 内存过小,加个内存条(一般内存小机子会蛮慢)。
4、 播放器的问题,有些播放器占的CPU蛮多。比如说:暴风。换一个试试。
希望会对你有帮助~~


D盘的MPLAY病毒不知道怎么删除,麻烦各位详细说明

如果你比较幸运地中了落雪之类的
而且你会重装系统的话。重装吧。
装好后第一件事就是运行——gpedit.msc——用户配置——管理模板——系统——关闭自动播放——关闭所有驱动器的自动播放。
然后删除所有非系统分区的根目录的你不认识的隐藏文件。
如果你不幸中了威金啊熊猫之类蠕虫的话。
全格是最直接和省事的。杀毒软件估计帮不上你什么忙了,当然,你有很重要很重要的文件是另一回事


如何打开windows xp系统的播放器

你好朋友;
xp系统默认的播放器一般都是wmp10或11;
这个你点击开始菜单;程序里面的windows media player即可;
此外上面朋友说的也对;你也可以右键点击一首歌;打开方式;
在打开方式列表那里选择windows media player按确定即可使用它来播放这首歌了;此外xp除了自带默认的wmp10或11之外;朋友xp还延续了之前从windows 98第二版和windows 2000系统当中自带的windows media player 6.4播放器;想运行它点击开始;运行输入mplayer2.exe按确定即可;还可以打开c:\program files\windows media player文件夹双击mplayer2.exe也可以;朋友从外xp还有个mplay32.exe;点击开始运行输入mplay32.exe确定即可;这个版本也是从过去的windows系统被延续下来的


centos下使用yum 安装mplayer出现下面错误,仅列出最后错,求大神帮助

出现的问题就是这些列出来的so库文件太旧,
mplayer依赖更新的库文件,
解决方法有的,但是很麻烦,
需要手动下载这些库文件然后复制到相应的地址再建立连接,
或者是下载包含这些库文件的rpm包手动安装,
不过后者可能因为其他依赖关系不满足而失败,
最好的方法就是你用fedora吧…
fedora和centos都是redhat的儿子,除了软件源fedora的比较新,软件比较多,其他都一样
centos是专为服务器而生的,所以为了追求稳定和安全一般软件和其他东西都不是最新的,真的不适合用作个人桌面系统,同样wps和sogou输入法centos也无法安装
mplayer是源于第三方yum源的,所以centos会满足不了依赖关系而无法安装,想想看那个服务器会装mplayer的

所以真心建议换fedora,既可以学习centos的命令,服务器搭建等centos能够完成的东西,也能够安装最新的针对桌面用户的软件~比如WPS,mplayer等等办公娱乐软件


ubuntu怎么安装audio插件

使用如下命令:sudo apt-get install libpulse-dev安装时会提示依赖于下面这几个软件,一并安装即可:libavahi-client-dev libavahi-common-dev libpulse-mainloop-glib0 libpulse0这个也可以上packages.ubuntu.com官方网址查询libpulse-dev软件的依赖关系,相关链接如下:http://packages.ubuntu.com/raring/libpulse-dev如下图所示:二、pulseaudio库的使用(同步simple API)pulseaudio官网有关于pulseaudio的API doxygen使用手册,网址如下:http://freedesktop.org/software/pulseaudio/doxygen/1、播音sampleA simple playback tool using the simple API//pacat-simple.c/***This file is part of PulseAudio.PulseAudio is free software; you can redistribute it and/or modifyit under the terms of the GNU Lesser General Public License as publishedby the Free Software Foundation; either version 2.1 of the License,or (at your option) any later version.PulseAudio is distributed in the hope that it will be useful, butWITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNUGeneral Public License for more details.You should have received a copy of the GNU Lesser General Public Licensealong with PulseAudio; if not, write to the Free SoftwareFoundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307USA.***/#ifdef HAVE_CONFIG_H#include #endif#include #include #include #include #include #include #include #define BUFSIZE 1024int main(int argc, char*argv[]) {/* The Sample format to use */static const pa_sample_spec ss = {.format = PA_SAMPLE_S16LE,.rate = 44100,.channels = 2};pa_simple *s = NULL;int ret = 1;int error;/* replace STDIN with the specified file if needed */if (argc > 1) {int fd;if ((fd = open(argv[1], O_RDONLY)) < 0) {fprintf(stderr, __FILE__": open() failed: %s\n", strerror(errno));goto finish;}if (dup2(fd, STDIN_FILENO) < 0) {fprintf(stderr, __FILE__": dup2() failed: %s\n", strerror(errno));goto finish;}close(fd);}/* Create a new playback stream */if (!(s = pa_simple_new(NULL, argv[0], PA_STREAM_PLAYBACK, NULL, "playback", &ss, NULL, NULL, &error))) {fprintf(stderr, __FILE__": pa_simple_new() failed: %s\n", pa_strerror(error));goto finish;}for (;;) {uint8_t buf[BUFSIZE];ssize_t r;#if 0pa_usec_t latency;if ((latency = pa_simple_get_latency(s, &error)) == (pa_usec_t) -1) {fprintf(stderr, __FILE__": pa_simple_get_latency() failed: %s\n", pa_strerror(error));goto finish;}fprintf(stderr, "%0.0f usec \r", (float)latency);#endif/* Read some data ... */if ((r = read(STDIN_FILENO, buf, sizeof(buf))) <= 0) {if (r == 0) /* EOF */break;fprintf(stderr, __FILE__": read() failed: %s\n", strerror(errno));goto finish;}/* ... and play it */if (pa_simple_write(s, buf, (size_t) r, &error) < 0) {fprintf(stderr, __FILE__": pa_simple_write() failed: %s\n", pa_strerror(error));goto finish;}}/* Make sure that every single sample was played */if (pa_simple_drain(s, &error) < 0) {fprintf(stderr, __FILE__": pa_simple_drain() failed: %s\n", pa_strerror(error));goto finish;}ret = 0;finish:if (s)pa_simple_free(s);return ret;}2、录音sample A simple recording tool using the simple API //parec-simple.c/***This file is part of PulseAudio.PulseAudio is free software; you can redistribute it and/or modifyit under the terms of the GNU Lesser General Public License as publishedby the Free Software Foundation; either version 2.1 of the License,or (at your option) any later version.PulseAudio is distributed in the hope that it will be useful, butWITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNUGeneral Public License for more details.You should have received a copy of the GNU Lesser General Public Licensealong with PulseAudio; if not, write to the Free SoftwareFoundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307USA.***/#ifdef HAVE_CONFIG_H#include #endif#include #include #include #include #include #include #define BUFSIZE 1024/* A simple routine calling UNIX write() in a loop */static ssize_t loop_write(int fd, const void*data, size_t size) {ssize_t ret = 0;while (size > 0) {ssize_t r;if ((r = write(fd, data, size)) < 0)return r;if (r == 0)break;ret += r;data = (const uint8_t*) data + r;size -= (size_t) r;}return ret;}int main(int argc, char*argv[]) {/* The sample type to use */static const pa_sample_spec ss = {.format = PA_SAMPLE_S16LE,.rate = 44100,.channels = 2};pa_simple *s = NULL;int ret = 1;int error;/* Create the recording stream */if (!(s = pa_simple_new(NULL, argv[0], PA_STREAM_RECORD, NULL, "record", &ss, NULL, NULL, &error))) {fprintf(stderr, __FILE__": pa_simple_new() failed: %s\n", pa_strerror(error));goto finish;}for (;;) {uint8_t buf[BUFSIZE];/* Record some data ... */if (pa_simple_read(s, buf, sizeof(buf), &error) < 0) {fprintf(stderr, __FILE__": pa_simple_read() failed: %s\n", pa_strerror(error));goto finish;}/* And write it to STDOUT */if (loop_write(STDOUT_FILENO, buf, sizeof(buf)) != sizeof(buf)) {fprintf(stderr, __FILE__": write() failed: %s\n", strerror(errno));goto finish;}}ret = 0;finish:if (s)pa_simple_free(s);return ret;}3、编译含有pulseaudio库的时候,需要添加pulseaudio的动态链接库-libpulse等,(可以在/usr/lib/i386-linux-gnu/目录下找到pulse的动态库/usr/lib/i386-linux-gnu/libpulsecommon-1.1.so/usr/lib/i386-linux-gnu/libpulsedsp.so/usr/lib/i386-linux-gnu/libpulse-mainloop-glib.so/usr/lib/i386-linux-gnu/libpulse-mainloop-glib.so.0/usr/lib/i386-linux-gnu/libpulse-mainloop-glib.so.0.0.4/usr/lib/i386-linux-gnu/libpulse-simple.so/usr/lib/i386-linux-gnu/libpulse-simple.so.0/usr/lib/i386-linux-gnu/libpulse-simple.so.0.0.3/usr/lib/i386-linux-gnu/libpulse.so/usr/lib/i386-linux-gnu/libpulse.so.0/usr/lib/i386-linux-gnu/libpulse.so.0.13.5)例如: gcc -o pacat-simple pacat-simple.c -lpulse -lpulsecommon-1.1 -lpulse-simple三、ALSA音频库 ALSA全称为:Advanced Linux Sound Architecture一个网址为:http://www.alsa-project.org/main/index.php/Main_Page


暴风影音 mplay和kmplayer

不清楚,估计也没啥特别的实用,所以我也不知道,非要说个的话那就是音效可以根据自己口味调节,画质的话一般我也不调。我只是从画质和音质上说下,默认的情况下,只能说音质KMPlayer最好,暴风次之,MPlayer相对最差,默认情况下画质暴风最好,MPlayer,与KMPlayer次之。暴风的广告自己设置下,基本也就也可忽略了,还有流畅度在高清方案中选择暴风方案后,和KMPlayer合MPlayer差不多,反正一般还是用暴风 ,看高清mv用KMPlayer

电脑里安装了已软件后来删了,但控制面板里还有且无法卸载

这是无效的卸载控制,可以选择卸载软件进行卸载

建议使用腾讯电脑管家进行卸载。腾讯电脑管家--软件管理--软件卸载,选择要卸载的软件点击即可,如果有残留,会提示清理残留。或者使用腾讯电脑管家的“强力卸载”,腾讯电脑管家在安装时会在开始菜单中形成“强力卸载”的快捷方式,点击即可。或者使用腾讯电脑管家--工具箱--文件粉碎,进行彻底删除。
或者开机按F8不动,出现高级选项画面时在松手,选“安全模式”按照提示进入安全模式,操作方法与正常模式一样,在控制面板中卸载试试。

如果控制面板有卸载选项,但是卸载不了,可按照下面方法手工卸载。
1、在桌面找到要删除的程序,右击选属性/查找目标,在打开的页面里有这个程序的路径,如果桌面没有图标可以通过搜索查找试试,找到程序软件的文件夹整体删除,如果系统拒绝,请你开机按F8进入安全模式中将软件的文件夹整体删除(或下载Unlocker小软件删除)。然后,开始/运行输入regedit回车打开注册表编辑器,选编辑/查找,你卸载软件的英文名,找到软件的键值项后删除(多次查找反复删除干净)。
2、添加或删除程序在注册表的位置,运行输入regedit回车,打开注册表定位[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\windows\CurrentVersion\Uninstall]子键,在该子键下,可跟据已卸载的应用程序软件图标,删除相对应的软件图标和键值,重新启动电脑即可。

希望我的回答可以帮到你,如未帮上请见谅。


初始化mci时发生问题

在软件安装及播放其它视频文件时,也时常出现这样的问题,重装系统、更新驱动多次也没有解决的情况下,试一下插入MIC(唛克风)试一下,问题立即解决。
一些软件(如筑业软件)的安装界面中,有QQ在线协助、音乐、在线洽谈等后台程序,需要检测到MIC有没有插入,如果没有插入,则弹出对话框,初始化MIC时发生问题,点确定后,再弹出要你从控制面板添加硬件,其实是没有插入MIC。


上一篇:ajax原理

下一篇:利特姜素拉