gpt4 book ai didi

iphone - 暂停在 uiwebview 中运行的视频 (mp4)

转载 作者:搜寻专家 更新时间:2023-10-30 20:26:52 26 4
gpt4 key购买 nike

我正在将视频 (mp4) 和音频 (mp3) 文件加载到 UIwebview 中。它简单明了,效果很好

NSURLRequest *request = [[NSURLRequest alloc] initWithURL: videoURL cachePolicy: NSURLRequestUseProtocolCachePolicy timeoutInterval: 30.0];  
[webView loadRequest: request];
[request release];

问题:如何防止视频/音频自动播放?我希望视频暂停并让用户点击“播放”(假设他想播放)。

谢谢。

最佳答案

回答我自己的问题

使用下面的代码就可以完成工作

NSString *videoHTML = [NSString stringWithFormat: @"<html><head><style></style></head><body><video id='video_with_controls' height='438' width='672' controls autobuffer autoplay='false'><source src='%@' title='' poster='icon2.png' type='video/mp4' durationHint='durationofvideo'/></video><ul></body></html>",videoURL];

webView.opaque = NO;
webView.backgroundColor = [UIColor clearColor];
[webView loadHTMLString:videoHTML baseURL:nil];

关于iphone - 暂停在 uiwebview 中运行的视频 (mp4),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6492472/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com