amazon s3 - Stream a video stored on AWS S3 from an Android app -


i have checked similar questions did not seem solve purpose hence asking question along code logic.

i able rest url s3 of format : https://s3.amazonaws.com/{bucket}/file.mov?signature=xyz&expires=abc&awsaccesskeyid=lmn

now need media player play(stream) video.

my code :

mediaplayer mp = new mediaplayer();  try {         mp.setdatasource(urls3rest);         mp.prepare();         mp.start();     } catch{...} 

the error thrown here : prepare failed. : status=0x105

any suggestions?

const pvmfstatus pvmferrrtsp458parameterisreadonly = (-105); might not have permission write file,files can read.


Comments

Popular posts from this blog

php - mySql Join with 4 tables -

css - Text drops down with smaller window -

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -