当前位置: 编程技术>移动开发
本页文章导读:
▪天翼空间云测试平台评测中.看看小弟我的评测报告 天翼空间云测试平台评测中........看看我的评测报告
天翼空间云测试平台评测中........看看我的评测报告,我的朋友们都来定下我的帖子哈,谢谢!
http://bbs.189works.com/thread-46100-1-1.html
......
▪ 滚动文字的兑现 滚动文字的实现
CGRect frame = label.frame;
frame.origin.x = -180;
frame.origin.y = -220;
label.frame = frame;
[UIView beginAnimations:@"testAnimation" context:NULL];
[UIView setAnimationDuration:8.8f];
[UIView setAnimationCurve:UIViewAni.........
▪ ffmpeg取得视频音频长度 ffmpeg获得视频音频长度
ffmpeg -i ~/Movies/a.3gp 2>&1 | grep 'Duration' | cut -d ' ' -f 4 | sed s/,//
......
[1]天翼空间云测试平台评测中.看看小弟我的评测报告
来源: 互联网 发布时间: 2014-02-18
天翼空间云测试平台评测中........看看我的评测报告
天翼空间云测试平台评测中........看看我的评测报告,我的朋友们都来定下我的帖子哈,谢谢!
http://bbs.189works.com/thread-46100-1-1.html
[2] 滚动文字的兑现
来源: 互联网 发布时间: 2014-02-18
滚动文字的实现
CGRect frame = label.frame; frame.origin.x = -180; frame.origin.y = -220; label.frame = frame; [UIView beginAnimations:@"testAnimation" context:NULL]; [UIView setAnimationDuration:8.8f]; [UIView setAnimationCurve:UIViewAnimationCurveLinear]; [UIView setAnimationDelegate:self]; [UIView setAnimationRepeatAutoreverses:NO]; [UIView setAnimationRepeatCount:999999]; frame = label.frame; frame.origin.x = 350; frame.origin.y = 300; label.frame = frame; [UIView commitAnimations];
[3] ffmpeg取得视频音频长度
来源: 互联网 发布时间: 2014-02-18
ffmpeg获得视频音频长度
ffmpeg -i ~/Movies/a.3gp 2>&1 | grep 'Duration' | cut -d ' ' -f 4 | sed s/,//
最新技术文章: