使用 FFmpeg 将 gif 转为 mp4

2015-06-04
阅读 1 分钟
13.8k
前言 Twitter 宣布支持 gif 图片,它其实是将 gif 转为 mp4 再通过 <video> 标签展示的,这样的好处有: 不必等全部资源加载完成再进行展示 gif 文件转为 mp4 格式后,文件大小差别相当大,gif 大小为 2MB,转为 mp4 大小为 260KB 可以对动画进行播放、暂停、拖曳控制 使用 FFmpeg 转换 当然你得先安装 FFmpeg,直...

XMLHttpRequest FormData

2015-06-04
阅读 2 分钟
5.8k
XMLHttpRequest Level 2 adds support for the new FormData interface. FormData objects provide a way to easily construct a set of key/value pairs representing form fields and their values, which can then be easily sent using the XMLHttpRequest send() method.

Android actionbar 笔记

2015-05-31
阅读 6 分钟
3k
按照 Android Studio 内置的例子做了个 actionbar 的 Demo,现在写下来做笔记,IDE 为 Android Studio 1.2。