在哪里放置视频以流式传输 android
我希望我的 Android 应用程序能够播放视频。我有一个网站存储在网络服务器中。问题是:我应该把视频文件放在哪里?我可以将它们放在我网站的根目录中,还是我也需要流媒体服务器?我希望这个问题没有脱离主题。
提前致谢!!
i want my android app to stream video. I have a website stored in a web server. The question is: where should i put the video files? Can i put them in my website's root directory, or do i need a Streaming Server too? I hope this question is not out of topic.
Thanks in advance!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果它们是标记为“安全流式传输”的 MP4(MOOV 原子位于第一个 MDAT 原子之前,例如通过
MP4Box -hint
),则可以将它们托管在任何 Web 服务器上。If they are MP4s marked as "safe for streaming" (MOOV atom is before the first MDAT atom, such as via
MP4Box -hint
), you can host them on any Web server.