源码阅读请参考读懂「 唱吧KTVHTTPCache 」设计思想
KTVCache播放不了android发送的视频
问题
- iOS端播放不了android发送的视频
- iOS播放端播放器:KTVCache+ZFPlayer,边下边播。
思考
- 排查视频播放格式:ZFPlayer使用的AVPlayer播放;切换到IJKPlayer也播放不了。
- 对比发现:播放不了的使用的KTVCache就已经有错误日志了。下面是跟到报错的第一条信息:
2021-04-22 16:57:50.815304+0800 BLing[6639:2793971] KTVHCDownload : 0x2816428b0, Complete
Error : Error Domain=NSURLErrorDomain Code=-999 "已取消" UserInfo={NSErrorFailingURLStringKey=https://bling-file.percent.cn/chat/video/f861b2cd-81a1-464e-bb25-316b67079c60_original.mp4, NSErrorFailingURLKey=https://bling-file.percent.cn/chat/video/f861b2cd-81a1-464e-bb25-316b67079c60_original.mp4, _NSURLErrorRelatedURLSessionTaskErrorKey=(
"LocalDataTask <55516087-B8D5-4AA0-824E-76A43B483301>.<8>"
), _NSURLErrorFailingURLSessionTaskErrorKey=LocalDataTask <55516087-B8D5-4AA0-824E-76A43B483301>.<8>, NSLocalizedDescription=已取消}
- 上网查了下以为是HTTPS的问题,然后去信任了HTTPS的证书。结果还是报错。
- 考虑视频格式,可能后缀是mp4,其实是其他视频格式,找android同事确认,反馈说是mp4。我这边下载了vlc和quicktime看着也是mp4。被这段迷惑了很久。
-
最后把视频拷贝到手机端的safari:
1311619082164_.pic.jpg
后缀是amr。
思考
- amr支持边下边播吗
- android统一发送格式
- 我们这边框架能否支持
解决方案
- KTVCache不仅支持视频,也支持其他文件格式。不过默认配置只支持了常用的视频格式。
- 在播放失败的时候,downloadSetUnacceptableContentTypeDisposer打印类型,contentType = multipart/form-data
[KTVHTTPCache downloadSetUnacceptableContentTypeDisposer:^BOOL(NSURL *URL, NSString *contentType) {
BLLogVerbose(@"Unsupport Content-Type Filter reviced URL : %@, %@", URL, contentType);
return NO;
}];
- 把contentType添加支持的下载类型。问题解决
NSMutableArray * acceptableContentTypes = [NSMutableArray arrayWithArray:[KTVHCDownload download].acceptableContentTypes];
[acceptableContentTypes addObject:@"multipart/form-data"];
[KTVHCDownload download].acceptableContentTypes = acceptableContentTypes;
- 只修改了配置,不侵入业务
使用KTVCache需要考虑哪些问题
- 怎么分块的
- 视频播放器关闭之后,边下边播任务是否停止。再次进入断点续传逻辑是怎么样的?
- 拖到进度条之后,文件是怎么下载的。
针对上面的问题,我是直接分析了下载文件。KTVCache源码相对比较复杂,在满足需求的情况下,后续慢慢阅读。
ZFPlayer横屏后屏幕无响应
- 这个bug跟了许久,view里所有代码都注释掉,只剩视频播放器,横屏后依然无响应。只能从源码角度分析:
-
ZFPlayer源码分析了一遍,里面代码view层级梳理下:
ZFPlayer层级.png - 对比与正常视频旋转后的的不同:
a. ZFLandscapeWindow继承自window,ZFLandscapeViewController是window的rootViewController
b. window.hidden一下吸引了我,查找下设置hidden。跟踪到下面代码: - 旋转后:
//ZFOrientationObserver
- (void)_rotationToLandscapeOrientation:(UIInterfaceOrientation)orientation {
if (UIInterfaceOrientationIsLandscape(orientation)) {
UIWindow *keyWindow = UIApplication.sharedApplication.keyWindow;
if (keyWindow != self.window && self.previousKeyWindow != keyWindow) {
self.previousKeyWindow = UIApplication.sharedApplication.keyWindow;
}
if (!self.window.isKeyWindow) {
self.window.hidden = NO;
[self.window makeKeyAndVisible];
}
}
}
- 再旋转到正常:
//ZFOrientationObserver
- (void)ls_didRotateFromOrientation:(UIInterfaceOrientation)orientation {
if (self.orientationDidChanged) self.orientationDidChanged(self, self.isFullScreen);
if (!self.isFullScreen) {
UIView *containerView = nil;
if (self.rotateType == ZFRotateTypeCell) {
containerView = [self.cell viewWithTag:self.playerViewTag];
} else {
containerView = self.containerView;
}
[containerView addSubview:self.view];
self.view.frame = containerView.bounds;
UIWindow *previousKeyWindow = self.previousKeyWindow ?: UIApplication.sharedApplication.windows.firstObject;
[previousKeyWindow makeKeyAndVisible];
self.previousKeyWindow = nil;
self.window.hidden = YES;
}
}
- 旋转后记录了previousKeyWindow与当前生成的window
- 旋转到横屏会触发ZFLandscapeViewController中的viewWillTransitionToSize,而无响应的按钮则不会触发。
- 对比后发现:旋转能响应的进入了forceRotaion条件
- (BOOL)ls_shouldAutorotate {
if (self.fullScreenMode == ZFFullScreenModePortrait) {
return NO;
}
UIInterfaceOrientation currentOrientation = (UIInterfaceOrientation)[UIDevice currentDevice].orientation;
if (![self _isSupported:currentOrientation]) {
return NO;
}
if (self.forceRotaion) {
[self _rotationToLandscapeOrientation:currentOrientation];
return YES;
}
if (!self.activeDeviceObserver) {
return NO;
}
[self _rotationToLandscapeOrientation:currentOrientation];
return YES;
}
- fullScreen
- (void)setFullScreen:(BOOL)fullScreen {
_fullScreen = fullScreen;
[self.window.landscapeViewController setNeedsStatusBarAppearanceUpdate];
[UIViewController attemptRotationToDeviceOrientation];
}
- 最后发现必现在使用播放器的地方设置:
- (BOOL)shouldAutorotate {
return NO;
}
小结
横屏之后会调用[UIViewController attemptRotationToDeviceOrientation],接着调用了viewWillTransitionToSize:方法,但viewController需要配置shouldAutorotate。
网友评论