DeviLeo

Results 27 comments of DeviLeo

有个临时的解决办法,需要修改WebDriverAgent的代码。 找到WebDriverAgent/WebDriverAgentLib/Commands/FBElementCommands.m文件。 定位到 __+ (id)handleTap:(FBRouteRequest *)request__ 方法。 修改如下: ``` Objective-C + (id)handleTap:(FBRouteRequest *)request { FBElementCache *elementCache = request.session.elementCache; CGPoint tapPoint = CGPointMake((CGFloat)[request.arguments[@"x"] doubleValue], (CGFloat)[request.arguments[@"y"] doubleValue]); XCUIElement *element = [elementCache elementForUUID:request.parameters[@"uuid"]];...

Do you mean the video is stuck in loading forever or each a few seconds after come back from lock screen?

Sorry for late reply. I've found that the ffmpeg will stop reading or take a few seconds to read the ts stream after the player resumed playing. I need to...

After `play` method is called, the player will buffer 2 seconds and then display. You can change `DLGPlayerMinBufferDuration` value in `DLGPlayer/common/DLGPlayerDef.h`. If the video is 1080p or higer, large `DLGPlayerMinBufferDuration`...

I'm sorry to tell you there are no settings for performance enhancement. The player was originally developed to watching low bitrate live monitoring (rtmp and hls). It works on ~3M...

Both local files and http streaming.

I suggest you open the media in `viewDidAppear`. If you insist `viewDidLoad`, do the following changes in `DLGPlayerViewController.m`. ``` Objective-C - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup...

Please see issue #21

OpenSSL-1.1.0 will cause the error "openssl not found". Please use OpenSSL-1.0.2o. You need to edit __build-libssl.sh__ in step __2. Use x2on/OpenSSL-for-iPhone to build OpenSSL for iOS__ since the default version...