关于我
A man is not old until regrets take the place of dreams.
-
最近文章
分类目录
文章归档
- 2012 年三月 (1)
- 2012 年二月 (1)
- 2012 年一月 (1)
- 2011 年十月 (3)
- 2011 年九月 (5)
- 2011 年八月 (4)
- 2011 年七月 (7)
- 2011 年六月 (2)
- 2011 年五月 (3)
- 2011 年四月 (4)
- 2011 年三月 (4)
- 2011 年二月 (4)
- 2011 年一月 (2)
- 2010 年十二月 (3)
- 2010 年十一月 (2)
- 2010 年八月 (1)
- 2010 年七月 (2)
- 2010 年六月 (2)
- 2010 年五月 (4)
- 2010 年四月 (9)
- 2010 年三月 (15)
- 2010 年二月 (7)
- 2000 年一月 (1)
近期评论
- ? 在 推荐一个观看youtube的给力软件minitube,很爽阿。 上的评论
- 2345网址导航 在 mupdf ,速度很快的pdf阅读器 上的评论
- 贼头 在 昨夜西风凋碧树,独上高楼,望尽天涯路 上的评论
- youthcould 在 安装 vim 配色方案 colorscheme 详解 上的评论
- fred 在 解决 bluefish 和fcitx的快捷键冲突导致bluefish中无法输入中文 上的评论
友情链接
个人管理
Category Archives: 脚本
linux下的格式工厂,利用mencoder高速转换压缩视频到mp4
转换之前的准备工作, 因为一些原因,直接从源里面安装的 mplayer,mencoder,gpac 无法完成这个转换工作,所以,我们需要从受限源里面安装, https://help.ubuntu.com/community/Medibuntu 第一步:在终端输入下面的代码并回车,这个是添加medibuntu源 1sudo wget –output-document=/etc/apt/sources.list.d/medibuntu.list http://www.medibuntu.org/sources.list.d/$(lsb_release -cs).list && sudo apt-get –quiet update && sudo apt-get –yes –quiet –allow-unauthenticated install medibuntu-keyring && sudo apt-get –quiet update 第二步:安装mplayer,w32codecs,mencode,gpac, 1sudo apt-get install mplayer mencoder w32codecs gpac libdvdcss2 第三步:测试,找到一个需要转换的文件,运行脚本几十秒,中断,然后看它生成的mp4文件是否正常,如果正常,则表明安装的依赖足够了,就可以开工转换了。 脚本相关说明 … Continue reading
Posted in linux, 脚本
3 Comments
有奔头使用备份之scrot截图
我对截图软件的要求不高,主要是能方便的鼠标点击一下,划定区域,松开左键,截图完成,这个就是我需要的,
而linux下的scrot 很轻便,支持的参数也多,
我主要是使用的一个脚本加上一个启动器,添加到面板上,完美了
apt-get install scrot
使用的截图脚本是 Continue reading
Posted in 脚本
Leave a comment