I have generate this video
moov is before mdat but this video is'nt read by android or quicktime
http://www.spherency.com/modules/spherencydao/daoapi/upload/4.mp4
you have an idea
thanks
> An update on the streaming feature in MediaPlayer. The MediaPlayer /
> VideoView only support "progressive streamable contents", which has to
> satisfy two criterion:
> 1. the movie atom has to precede all the media data atoms;
> 2. the clip has to be reasonably interleaved;
>
> Here is a simple way to tell whether a file is "progressive streamable
> contents" type of content. If there are any "mdat" string before "moov"
> string, then it is NOT progressive streamable contents. (As shown in the
> examples here)
>
> *Not progressive streamable content:*
> $ strings /tmp/3.3gp |grep -n "mdat\|moov"
> 16:mdat
> 17:mdat
> 18:mdat
> 2278:WHmdat<c
> 2617:moov
> *
> Progressive streamable content:*
> $ strings /sdcard/box.mp4 |grep -n "mdat\|moov"
> 3:#moov
> 99:mdat
> 101:mdat
>
> A following test URLs that I received from this group earlier are not
> Progressive Streamable Content.
>
> MeghaOn Sat, Mar 22, 2008 at 2:54 PM, Megha Joshi <
mjo...@google.com> wrote:
> > Hi,
>
> > Streaming does not work for certain mp4 URLs that I got from this forum. I
> > am not sure why this is happening yet, I have logged a bug internally with
> > those test URLs included.
>
> > Thanks,
> > Megha
>