有没有办法在iPhone上进行RTMPE和SWF验证?
我已经知道 RTMPE 是通过 Flash 完成的,即使当您将 flash 编译为 iPhone 应用程序运行时,RTMPE 也是不起作用的事情之一。
我只是想确保我的假设是正确的,没有办法让它工作。
I already know that RTMPE is done through Flash and that even when you compile flash down to run as an iPhone application that one of the things that specifically doesn't work is RTMPE.
I just want to make sure that I'm correct in assuming that there is no way to get this working.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
实际上,您可以使用为 iOS 构建的 librtmp 作为通过 rtmpe 协议播放媒体文件的方法。
本质上,它将深入到 C 并创建一个播放器(必要时支持跳过)或使用 rtmpdump。
当/如果你确实遇到这个问题时,请注意,C 文件在 Objective-C 中不能有 main 方法(无需进行大量修改),因此请务必将 rtmpdump 中找到的 main 方法重命名为其他名称。然后,与之交互就相对容易了。或者,如有必要,我将通过修改 Github 上找到的一些文件来上传模拟 rtmpdump 的 Objective-C 版本...
在 Github 上查看的一些人:saiten、BigBadOwl、idevsoftware
Actually, you can use librtmp built for iOS as a method for playing a media file via rtmpe protocol.
In essence, it would be going down to C and creating a player (that supports skips if necessary) or using rtmpdump.
When/if you do get into this, please note that a C file cannot have a main method in Objective-C (without extensive modification) so be sure to rename the main method found in rtmpdump to something else. Then, it is relatively easy to interact with it. Alternatively, I'll upload an Objective-C version that emulates rtmpdump by modifying some files found on Github if necessary...
Some People to Check Out on Github: saiten, BigBadOwl, idevsoftware
正确的。决不。 Mobile Safari 不支持 Flash,RTMPE 在播放器中完成。
Right. No way. Flash isn't supported in Mobile Safari and RTMPE is done in-player.