Android Remote Video with Titanium
        Posted  
        
            by 
                Tim
            
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Tim
        
        
        
        Published on 2010-12-29T00:15:38Z
        Indexed on 
            2011/01/13
            7:53 UTC
        
        
        Read the original article
        Hit count: 310
        
Greetings all!
I'm trying to play a video that is hosted on our webserver on an android phone. I've already built this for iPhone and it works great.
Droid, however is a different issue. Instead of getting video, I'm just getting a black screen, no error or anything.
The code I am using is:
activeContent = Titanium.Media.createVideoPlayer({ contentURL: content, backgroundColor:'#111', movieControlMode:Titanium.Media.VIDEO_CONTROL_DEFAULT });
win.add(activeContent); activeContent.play();
The video I'm downloading does play on the droid when not using Titanium, so I know its not a format issue. (its an .MP4 incase anyone is wondering.)
I've used Titanium SDK's 1.5.1 and am on the continuous build of 1.6.0 from earlier today.
using the 2.2 Droid SDK, and Titanium Developer 1.2.2
Does anyone have any thoughts on this? One of the big selling points for android is its ability to pull media from the net, and I'm honestly a little concerned about this shortcoming if its an issue with Titanium.
© Stack Overflow or respective owner