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 - SPIP: From Tag directly to an article -

jquery - isAjaxRequest always return false -

ruby on rails - In a controller spec, how to find a specific tag in the generated view? -