android: play media in app

During my research in the possibilities of playing audio and video from app, I found several ways of playing media. The simplest one is to use external player. It was described in the post “Android: how to play audio and video from app“. Here are some examples how to play media in app.

Android: how to play audio and video from app

I was looking for a way how to play video and audio streams from Internet from my app. There are several ways how to do it and some of them worked for me. 1. Play in inner VideoView. The solution I found here how to play video from url String path=”http://www.ted.com/talks/download/video/8584/talk/761″; String path1=”http://commonsware.com/misc/test2.3gp”; VideoView videoView… Continue reading Android: how to play audio and video from app