Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
media.videoPlay(url, success, error)我们可以将视频存储在本地设备(iPhone 或 Android)中并使用URL 指向本地目录来播放视频吗?谢谢
media.videoPlay(url, success, error)
您是否尝试过以下操作?(我目前在没有伪造的计算机上)。
forge.file.getLocal('videos/whatever.mpg', function(localFile) { forge.media.videoPlay(localFile, function() {}, function(content) {}); }, function(content) {});