摘要: 某次想要把一个exe文件编译成dll,一时不知道怎么链接,好吧:make -n all /* -n这个命令的意思是读进makefile并且输出它更新工作目标时将会执行的命令,但是不会真的执行它们。然后知道怎么编译exe了,编译出来dll就容易多了。from:http://bbs.chinaunix.net/thread-3769353-1-1.html 阅读全文
posted @ 2013-04-16 21:17 kevin.lee 阅读(336) 评论(0) 推荐(0) 编辑
摘要: Codding Horror : http://www.codinghorror.com/bloghttp://gigliwood.com/blog/ffmpeg rtp missed packets 阅读全文
posted @ 2013-04-14 21:45 kevin.lee 阅读(137) 评论(0) 推荐(0) 编辑
摘要: Ticket #697 :Some H.264 cannot decodedTicket #285 :RTSP h264 video stream always reports corrupted macroblock强制使用tcp方式获取rtsp:ffmpeg -rtsp_transport tcp -i rtsp://admin:admin@cam.no-ip.org:554/video.mp4 -vcodec copy -acodec copy -r 25 -f flv http://127.0.0.1:8010/feed1.ffmWeb Digest还有众多网络文摘,仅供个人收藏和.. 阅读全文
posted @ 2013-04-14 21:29 kevin.lee 阅读(292) 评论(0) 推荐(0) 编辑
摘要: 声明:转载自 blog.fpzeng.com1.首先写Makefile,由于ffmpeg提供了很多动态库,你首先需要指定gcc编译、链接的参数,这个可以用pkg-config命令来获取。# use pkg-config for getting CFLAGS and LDLIBSFFMPEG_LIBS= libavformat \ libavcodec \ libavutil CFLAGS += -Wall -O2 -gCFLAGS +=... 阅读全文
posted @ 2013-03-25 21:59 kevin.lee 阅读(590) 评论(0) 推荐(0) 编辑
摘要: 参考自:http://blog.csdn.net/cyh24/article/details/80387001.先说明前提在windows平台下,使用MSYS+Mingw 编译ffmpeg2.使用pkg-config编译ffmpeg的例子在ffmpeg编译的时候,会产生一些.pc文件,在ffmpeg的doc/example文件夹里面,有一些例子,可以使用pkg-config来编译。3.pkg-config默认的环境变量是:/usr/share/pkgconfig 如果你ffmpeg编译产生的.pc文件不在此路径,那么就会报错,可以用以下方法来修正 3.1 将所有编译出来的.pc文件拷贝到/us 阅读全文
posted @ 2013-03-25 21:41 kevin.lee 阅读(2162) 评论(0) 推荐(0) 编辑
摘要: MSYS模仿了Linux下的编译环境,但与Windows上IDE比起来,不足的是需要自己写Makefile。因此也可以搭建类似Linux的automake环境来生成Makefile。1 下载与安装 下载如下工具或组件:autoconf,automake,m4,libtool,perl,crypt。 下载地址:http://sourceforge.net/projects/mingw/files/MSYS/ 其中autoconf,automake是主要使用工具;m4,libtool是必要工具;perl是支撑工具;crypt是支撑库。libtool和crypt以库的形式下载。 下载好的文件如下,解 阅读全文
posted @ 2013-03-03 17:46 kevin.lee 阅读(1293) 评论(0) 推荐(0) 编辑
摘要: ------------------------------------------------------------------------------------------------- 阅读全文
posted @ 2013-03-02 09:44 kevin.lee 阅读(312) 评论(0) 推荐(0) 编辑
摘要: http://www.ostools.net/非常好! 阅读全文
posted @ 2013-02-16 13:22 kevin.lee 阅读(88) 评论(0) 推荐(0) 编辑
摘要: 火狐浏览器中,对于已经保存的密码表单,火狐浏览器可以通过以下方式查看:打开菜单中的:工具>页面信息>安全>查看已保存密码 阅读全文
posted @ 2013-02-16 10:55 kevin.lee 阅读(795) 评论(0) 推荐(0) 编辑
摘要: 火狐浏览器中pentadatyl插件的一些设定 阅读全文
posted @ 2013-02-16 10:46 kevin.lee 阅读(278) 评论(0) 推荐(0) 编辑