webm youtube format in ICS

vb1992

Well-Known Member
Licensed User
Longtime User
Has anyone successfully played a youtube video in
the HTML5 video format for ICS?

Through a webview / iframe or an intent?


Format / Codec: VP8

Decoder available in: (Android 2.3.3+)

Streamable only in Android 4.0

WebM (.webm) / Matroska (.mkv, Android 4.0+)
 

vb1992

Well-Known Member
Licensed User
Longtime User
I was able to get .3gp working via rtsp on this chinese tablet
with no flash, but the quality of the youtube video is poor
since it's 176x144 size

So what do you suggest?

Mp4 via videoview? (From youtube api somehow )

The challenge here is to play a video from youtube
without flash, and I would like to play the video within
the app with videoview or webview, but I am open to
also trying it with intents to the stock video player

( I don't want to download an additional video player or browser )

This is why I am trying to get HTML5 youtube videos working
 
Last edited:
Upvote 0

thedesolatesoul

Expert
Licensed User
Longtime User
I see.
Well, as you want to use youtube, i think its not the format that is the issue.
The Mediaplayer/VideoView should play anything thats supported (MP4/H264 Baseline should be universally playable). The main problem is that can the VideoView stream youtube.
did you try :
vv.LoadVideo("http",youtubeurl)
How did you get 3gp rtsp working? was it a youtube url?
 
Upvote 0
Top