Difference between Normal file and PD streamable clip
Assumptions:
------------------
1.Quicktime, mp4,3gp file having hint track can be transferred thru http or ftp protocols
 
2.Moov atom index must be at the beginning of the file ... so that player can play the file before downloading the entire content...
3.Self contained movie can be streamable...
Solutions:
-----------
  Any Quicktime,mp4 or 3gp files can be able to do Progressive Download Streaming 
if moov  atom is @ first..Moov atom index must be at the beginning of the file ... so that player can play the file before downloading the entire content.
 For Example 
3gp file atoms are like this:
------------------------------
 ftyp
 moov
  mdat 
we can stream it in PD streaming.
if the 3gp atoms are as follows:
 ftyp
 mdat
 moov
 this indicates Moov atom is at the end of the file... So it can't be streamable in Progressive Download.
PD Stack:
-----------
 within PD stack,we will wait for the File Size and information about the video and audio track info...
if it doesnt receive the video, audio track info and file information it will not proceed to download the content.
  

0 Comments:
Post a Comment
<< Home