I am experimenting with the Vugoria Augmented Reality SDK, and these are samples. I successfully compiled a sample of the video pipe and launched it on the tablet. Then I tried to download the video from the URL, not from the device. Following the comments in the sample code, in VideoPlayerHelper.java I commented on this part:
AssetFileDescriptor afd = mParentActivity.getAssets()
.openFd(filename);
mMediaPlayer.setDataSource(afd.getFileDescriptor(),
afd.getStartOffset(), afd.getLength());
afd.close();
and commented on this part and added the url to the online video file:
mMediaPlayer.setDataSource("http://oneshot.qualcomm.com/webAR/content/strawberryfields_H264_AAC.mp4");
, , , , , , , . . , , ? vuforia. , (, , ) , , , :
Uri videolink = Uri.parse("http://oneshot.qualcomm.com/webAR/content/strawberryfields_H264_AAC.mp4");
mMediaPlayer.setDataSource(mParentActivity,videolink);