The company I work for is developing an Android App that plays a video file from a URL on web. The video URL is a parameter for a PHP script that encode it properly and redirects to the encoded video as shown below:
header('Content-Type: video/'.$format);
header('Location:'.$output_video);
$output_video
kodlanmış video (biz tarayıcısında bu URL'yi kullanırsanız çalışır) ve $format
video formatı için URL nerede.
Ben akış modunu kullanarak API Demos gelen MediaPlayerDemo_Video yürütme çalıştığınızda Ama, ben böyle bir hata alıyorum:
MediaPlayer Command PLAYER INIT completed with an error or info PVMFErrCorrupt
MediaPlayer error (1. -10)
MediaPlayer Error (1.-10)
Biz sabit kod PHP komut URL ve format varsa, o da çalışmak, ama farklı bir hata ile değil:
MediaPlayer info/warning (1. 28)
MediaPlayer Info (1 .28)
Herkes bu geçici çözüm için nasıl bir fikir var mı?
Şimdiden teşekkürler!