> s_filePath = "/data/local/video/test_qcif_200_aac_64.mp4";
This is probably not going to work, since playback is actually handled by a different process, which probably doesn't have permissions to access that file. The preferred way of handling this is to get a FileDescriptor for the file in question, and then using the version of MediaPlayer.setDataSource() that takes a file descriptor. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~----------~----~----~----~------~----~------~--~---

