Skip to content

Instantly share code, notes, and snippets.

View zhaoxiaobao's full-sized avatar
🤒
Out sick

zhaoyuan zhaoxiaobao

🤒
Out sick
View GitHub Profile
@zhaoxiaobao
zhaoxiaobao / ffmpeg.md
Created July 27, 2016 08:32 — forked from v5tech/ffmpeg.md
ffmpeg视频合并、格式转换、截图

使用ffmpeg合并MP4文件

ffmpeg -i "Apache Sqoop Tutorial Part 1.mp4" -c copy -bsf:v h264_mp4toannexb -f mpegts intermediate1.ts
ffmpeg -i "Apache Sqoop Tutorial Part 2.mp4" -c copy -bsf:v h264_mp4toannexb -f mpegts intermediate2.ts
ffmpeg -i "Apache Sqoop Tutorial Part 3.mp4" -c copy -bsf:v h264_mp4toannexb -f mpegts intermediate3.ts
ffmpeg -i "Apache Sqoop Tutorial Part 4.mp4" -c copy -bsf:v h264_mp4toannexb -f mpegts intermediate4.ts
ffmpeg -i "concat:intermediate1.ts|intermediate2.ts|intermediate3.ts|intermediate4.ts" -c copy -bsf:a aac_adtstoasc "Apache Sqoop Tutorial.mp4"
@zhaoxiaobao
zhaoxiaobao / Some-Animation-List
Created June 24, 2016 16:08
部分动画代码片段
1.http://stackoverflow.com/questions/7787494/adding-bounce-effect-to-appearance-of-uiimageview
2.http://stackoverflow.com/questions/20637140/animation-slows-down-as-it-ends/20637179#20637179
@zhaoxiaobao
zhaoxiaobao / objective-c-2
Created June 16, 2016 15:06
stackoverflow-tag-objective-c-2
1.UIRefreshControl without UITableViewController?
http://stackoverflow.com/questions/12497940/uirefreshcontrol-without-uitableviewcontroller
http://stackoverflow.com/questions/10291537/pull-to-refresh-uitableview-without-uitableviewcontroller?lq=1
2.UITableView - scroll to the top?
http://stackoverflow.com/questions/724892/uitableview-scroll-to-the-top
3.How to disable back swipe gesture in UINavigationController on iOS 7?
http://stackoverflow.com/questions/17209468/how-to-disable-back-swipe-gesture-in-uinavigationcontroller-on-ios-7
@zhaoxiaobao
zhaoxiaobao / stackoverflow-tag-objective-c-1
Created June 16, 2016 13:24
stackoverflow-tag-objective-c
1.How do I convert an NSString value to NSData?
NSString* str = @"teststring";
NSData* data = [str dataUsingEncoding:NSUTF8StringEncoding];
2.How to check iOS version?
[[UIDevice currentDevice].systemVersion floatValue]
3.How do I create delegates in Objective-C?
http://stackoverflow.com/questions/626898/how-do-i-create-delegates-in-objective-c
@zhaoxiaobao
zhaoxiaobao / code for happiness
Created May 23, 2016 12:28
脚本统计oc代码行数
find . "(" -name "*.m" -or -name "*.mm" -or -name "*.cpp" -or -name "*.h" -or -name "*.rss" ")" -print | xargs wc -l
@zhaoxiaobao
zhaoxiaobao / gist:96f2c89ced46a7e57e363f25f8d6a840
Created May 8, 2016 12:41
UIButton - 避免多次重复点击
#import <UIKit/UIKit.h>
@interface UIButton (antiMultiplyTouch)
- (void)antiMultiplyTouch:(NSTimeInterval)delay block:(void(^)(void))operation;
@end
== .m文件
#import "UIButton+AntiMultiplyTouch.h"