是否可以在 ionic 上流式传输 RTSP iptv
Is it possible to stream RTSP iptv on ionic
是否可以在 ionic (cordova) 上播放 rtsp 视频和音频?
如果是这样,我们怎样才能完成它?
我想用我的 ionic 应用流式传输实时 rstp。
许多音频和视频功能都依赖于底层设备的功能和规则。
具体来说,如果您的应用要在移动网络上运行 (https://developer.apple.com/library/ios/documentation/NetworkingInternet/Conceptual/StreamingMediaGuide/UsingHTTPLiveStreaming/UsingHTTPLiveStreaming.html#//apple_ref/doc/uid/TP40008332-CH102-SW5),iOS 设备此时要求您使用 HLS:
Requirements for Apps
Warning: iOS apps submitted for distribution in the App Store must conform to these requirements.
If your app delivers video over cellular networks, and the video exceeds either 10 minutes duration or 5 MB of data in a five minute period, you are required to use HTTP Live Streaming. (Progressive download may be used for smaller clips.)
If your app uses HTTP Live Streaming over cellular networks, you are required to provide at least one stream at 64 Kbps or lower bandwidth (the low-bandwidth stream may be audio-only or audio with a still image).
These requirements apply to iOS apps submitted for distribution in the App Store for use on Apple products. Non-compliant apps may be rejected or removed, at the discretion of Apple.
确实存在似乎能够在 iOS 上播放 RTSP 的应用程序(例如 https://itunes.apple.com/us/app/rtsp-player/id1070125481?mt=8 ),因此不清楚它们是否符合上述持续时间大小规则,或者这只是一个Apple 的示例 'discretion'.
Android 设备应支持 RTSP(取决于版本和可能的型号等)- https://developer.android.com/guide/appendix/media-formats.html,尽管 Android 媒体播放器可能很棘手(查看有关视频播放的 Whosebug 问题Android).
是否可以在 ionic (cordova) 上播放 rtsp 视频和音频?
如果是这样,我们怎样才能完成它?
我想用我的 ionic 应用流式传输实时 rstp。
许多音频和视频功能都依赖于底层设备的功能和规则。
具体来说,如果您的应用要在移动网络上运行 (https://developer.apple.com/library/ios/documentation/NetworkingInternet/Conceptual/StreamingMediaGuide/UsingHTTPLiveStreaming/UsingHTTPLiveStreaming.html#//apple_ref/doc/uid/TP40008332-CH102-SW5),iOS 设备此时要求您使用 HLS:
Requirements for Apps
Warning: iOS apps submitted for distribution in the App Store must conform to these requirements.
If your app delivers video over cellular networks, and the video exceeds either 10 minutes duration or 5 MB of data in a five minute period, you are required to use HTTP Live Streaming. (Progressive download may be used for smaller clips.)
If your app uses HTTP Live Streaming over cellular networks, you are required to provide at least one stream at 64 Kbps or lower bandwidth (the low-bandwidth stream may be audio-only or audio with a still image).
These requirements apply to iOS apps submitted for distribution in the App Store for use on Apple products. Non-compliant apps may be rejected or removed, at the discretion of Apple.
确实存在似乎能够在 iOS 上播放 RTSP 的应用程序(例如 https://itunes.apple.com/us/app/rtsp-player/id1070125481?mt=8 ),因此不清楚它们是否符合上述持续时间大小规则,或者这只是一个Apple 的示例 'discretion'.
Android 设备应支持 RTSP(取决于版本和可能的型号等)- https://developer.android.com/guide/appendix/media-formats.html,尽管 Android 媒体播放器可能很棘手(查看有关视频播放的 Whosebug 问题Android).