I have this code and on the iPhone/iPad it plays fine. In the android emulator of all things it even plays fine. The Emulator is using version 4.1. The device is using 2.2. It's an old phone and I cannot update it past that.
var vidPlayer = Ti.Media.createVideoPlayer({ width:320, height:240, top:0, left:0, backgroundColor:'#ffffff', autoplay:false }); win.add(vidPlayer);The video on the android device appears to be blurred. As if I applied a gaussian blur to it. It also appears to be playing very choppy, but that is probably because of the blur. Has anyone had this happen?
1 Answer
well, the Titanium built in player gave me some head ache as well, but you can use intents on Android to just let videos be played by another app on the device. Many devices come with a pre installed movie player and a lot of people have 3rd party apps like MX Player installed. that was my "solution" for Android ...
Your Answer
Think you can help? Login to answer this question!