代码改变世界

Linux下批量删除.svn目录

2011-08-24 10:00 by shaobin0604, 182 阅读, 0 推荐, 收藏, 编辑
摘要:find . -type d -name ".svn" | xargs rm -rf 阅读全文

VoIP测试环境搭建

2011-08-23 17:06 by shaobin0604, 1241 阅读, 0 推荐, 收藏, 编辑
摘要:拓扑结构 Server OS:Windows Software:miniSipServer 这里下载miniSipServer 4.0 windows 20 clients版本。安装方法参考 小型企业建立IP-PBX系统指南。 启动之后出现如下界面 SIP Server IP:192.168.10.126 SIP Server Port:5060 点... 阅读全文

Ubuntu 编译 ffmpeg tutorial02.c

2011-08-22 17:36 by shaobin0604, 310 阅读, 0 推荐, 收藏, 编辑
摘要:1. 需要安装SDL库,SDL相关的文档见http://sdl.beuc.net/sdl.wiki/FrontPagesudo apt-get install libsdl1.2-dev2. 使用swscale函数替换img_convert函数,以下是修改后的代码// tutorial02.c// A pedagogical video player that will stream through every video frame as fast as it can.//// Code based on FFplay, Copyright (c) 2003 Fabrice Bellard, 阅读全文

Ubuntu 下安装代码格式化程序 astyle

2011-08-22 10:46 by shaobin0604, 1313 阅读, 0 推荐, 收藏, 编辑
摘要:源代码编译安装1. 下载源代码http://sourceforge.net/projects/astyle/files/2. 解压3. 编译cd astyle/build/gccmakeapt-getsudo apt-get install astyle 阅读全文

Ubuntu 编译 ffmpeg tutorial01.c

2011-08-21 15:36 by shaobin0604, 416 阅读, 0 推荐, 收藏, 编辑
摘要:环境搭建参考Ubuntu 10.10 x64 apt安装 ffmpeg需要修改以下几个地方才能编译通过include 头文件的位置undefined reference to 'img_convert'编译参数以下是修改后的代码// tutorial01.c// Code based on a tutorial by Martin Bohme (boehme@inb.uni-luebeckREMOVETHIS.de)// Tested on Gentoo, CVS version 5/01/07 compiled with GCC 4.1.1// A small sample 阅读全文

Ubuntu 10.10 x64 安装 ffmpeg tutorial 相关支持库

2011-08-21 12:41 by shaobin0604, 317 阅读, 0 推荐, 收藏, 编辑
摘要:sudo apt-get install ffmpeg安装完成之后在终端输入命令 ffmpeg,发现版本是 0.6。如果需要做相关的开发还需要安装 libavformat-dev, libavcodec-dev, libavutil-dev,libswscale-dev libsdl1.2-devsudo apt-get install libavformat-dev libavcodec-dev libavutil-dev libswscale-dev libsdl1.2-dev 阅读全文

开始IMS学习-相关名词和术语(持续更新)

2011-08-18 18:41 by shaobin0604, 316 阅读, 0 推荐, 收藏, 编辑
摘要:一些名词和术语的翻译 IMS(IP Multimedia Subsystem) IP 多媒体子系统 http://en.wikipedia.org/wiki/IP_Multimedia_Subsystem PSTN(Public Switched Telephone Network) 公共交换电话网 http://en.wikipedia.org/wiki/Public_switc... 阅读全文

Android Stagefright MPEG4Extractor分析

2011-08-16 18:18 by shaobin0604, 4882 阅读, 1 推荐, 收藏, 编辑
摘要:视频播放的基本流程 video track +---------------+ frame +--------------+ +--------------->| Video Decoder |---------->| Video Output | | +---------------+ +--------------++----------+ +-----+-----+|DataSo... 阅读全文

Ubuntu 10.10 64bit下使用Android NDK r6编译FFmpeg 0.8.1

2011-08-05 14:30 by shaobin0604, 3847 阅读, 0 推荐, 收藏, 编辑
摘要:编译过程参考在 Mac OS X 下使用 Android NDK r5b 编译 FFmpeg 0.8 1.下载NDK r6和FFmpeg 0.8.1 Android NDK r6 FFmpeg 0.8.1 2.解压缩 android-ndk-r6-linux-x86.tar.bz2 解压到 /home/pekall/opt 目录下,并将NDK的路径加入到PATH环境变量中 ffmpeg-0.8.1... 阅读全文

关于GradientDrawable的angle属性

2011-08-01 22:58 by shaobin0604, 457 阅读, 0 推荐, 收藏, 编辑
摘要:Integer. The angle for the gradient, in degrees. 0 is left to right, 90 is bottom to top. It must be a multiple of 45. Default is 0. 阅读全文
上一页 1 ··· 6 7 8 9 10 11 下一页