欢迎访问我的独立博客
上一页 1 ··· 53 54 55 56 57 58 59 60 61 ··· 67 下一页
摘要: linux下文件的类型是不依赖于其后缀名的,但一般来讲:.o,是目标文件,相当于windows中的.obj文件.so为共享库,是shared object,用于动态连接的,和dll差不多.a为静态库,是好多个.o合在一起,用于静态连接 阅读全文
posted @ 2013-04-05 00:58 github.com/starRTC 阅读(363) 评论(0) 推荐(0) 编辑
摘要: http://www.huxiu.com/article/12403/1.html顺便问一句有几个人用过line?http://line.naver.jp/zh-hans/ 阅读全文
posted @ 2013-04-05 00:41 github.com/starRTC 阅读(343) 评论(0) 推荐(0) 编辑
摘要: Here is a small bash script for automatically cutting a video file into smaller chunks of fixed length. ffmpeg cannot output multiple files, but it has start offset and duration parameters which my script uses to actually split the file.For example, if we have a video called 'video.mpeg' whi 阅读全文
posted @ 2013-04-02 09:27 github.com/starRTC 阅读(380) 评论(0) 推荐(0) 编辑
摘要: #TOP1 All in one SEO Pack本来我以为wordpress下载量第一的应该是akisment这样神一般的插件,没想到排名第一的是SEO的插件,看来SEO还是很重要啊。 迄今为止,这款插件的下载次数为8739345.之前有人说过这个插件对中文的支持不好,不知道是真是假。moioi使用的SEO插件是headspace2 SEO。#TOP2 Akismet神一样的插件,防止垃圾评论特别有效,而且不需要用户输入验证码。启用Akismet插件之后需要输入一枚Akismet API KEY。注册wordpress.com就能获得Akismet API key。目前这款插件的下载次数是7 阅读全文
posted @ 2013-04-01 23:21 github.com/starRTC 阅读(743) 评论(0) 推荐(0) 编辑
摘要: 一、预防垃圾留言不知道从什么时候开始,博客成为了大家做广告绝好的地方,垃圾留言滚滚而来,而WordPress又是出了名的对搜索引擎很友好的程序,加上很多朋友不知道nofollow,所以,大家就开始和垃圾留言做斗争了。默认的反垃圾程序Akismet需要一个API KEY,这样可以共享一个反垃圾的数据库,但这个KEY需要在WordPress.com注册,当然,这个网站在有些时候是无法打开的,但这个插件确实需要一个KEY才有用,所以大家在安装WordPress之后,需要先注册这,获得一个API KEY,其实这个KEY是可以共享的,所以,找相熟的朋友分享一个就OK。目前位置,我见过的拦截垃圾留言最的博 阅读全文
posted @ 2013-04-01 22:38 github.com/starRTC 阅读(337) 评论(0) 推荐(0) 编辑
摘要: 1,检查防火墙2,打开防火墙时若显示“由于不可识别问题 windows 无法显示 windows 防火墙设置。”解决: 将下列文本复制到“记事本”中,然后将文件另存为 Sharedaccess.reg: Windows Registry Editor Version 5.00 [-HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SharedAccess] [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SharedAccess] "DependOnGroup" 阅读全文
posted @ 2013-04-01 21:25 github.com/starRTC 阅读(2674) 评论(0) 推荐(0) 编辑
摘要: ffmpeg可以说是一个比较全能的编解码器,但我在分割视频的时候视频被他重新编码了,明明是copy却变成了encode。我使用的命令是这样的:1ffmpeg -vcodec copy -acodec copy -ss 01:00:00 -t 00:00:30 -i input_file_h264.mp4 output_file.mp4本来只是想分割出一段视频的,但却把分离出来的视频重新编码了,画质也变得惨不忍睹。查了一些国外资料后发现了问题所在。在ffmpeg的手册中对于codec是这样写的:‘-c[:stream_specifier] codec (input/output,per-stre 阅读全文
posted @ 2013-04-01 09:09 github.com/starRTC 阅读(7079) 评论(0) 推荐(0) 编辑
摘要: 目录 1 前言 2 Mathematics (数学) 3 Data Structures & Algorithms (数据结构、算法) 4 Compiler (编译原理) 5 Operating System (操作系统) 6 Database (数据库) 7 C (C 语言) 8 C++ (C++ 语言) 9 Object-Oriented (面向对象) 10 Software Engineering (软件工程) 11 UNIX Programming (UNIX编程) 12 UNIX Administration (UNIX系统管理) ... 阅读全文
posted @ 2013-03-30 19:22 github.com/starRTC 阅读(5653) 评论(1) 推荐(0) 编辑
摘要: AVPacket AVPacket定义在avcodec.h中,如下: typedefstructAVPacket { /** * Presentation timestamp in AVStream->time_base units; the time at which * the decompressed packet will be presented to the user. * Can be AV_NOPTS_VALUE if it is not stored in the file. * pts MUST be larger or equal to dts a... 阅读全文
posted @ 2013-03-30 16:18 github.com/starRTC 阅读(435) 评论(0) 推荐(0) 编辑
摘要: AVFormatContext 这个结构体描述了一个媒体文件或媒体流的构成和基本信息,定义如下: typedefstructAVFormatContext { constAVClass *av_class; /**< Set by avformat_alloc_context. */ /* Can only be iformat or oformat, not both at the same time. */ structAVInputFormat *iformat; structAVOutputFormat *oformat; void *priv_data; ... 阅读全文
posted @ 2013-03-30 16:17 github.com/starRTC 阅读(491) 评论(0) 推荐(0) 编辑
上一页 1 ··· 53 54 55 56 57 58 59 60 61 ··· 67 下一页