Questions tagged [progressive-download]

A progressive download is the transfer of digital media files from a server to a client, typically using the HTTP protocol when initiated from a computer.

A progressive download is the transfer of digital media files from a server to a client, typically using the HTTP protocol when initiated from a computer.

The consumer may begin playback of the media before the download is complete. The key difference between streaming media and progressive download is in how the digital media data is received and stored by the end user device that is accessing the digital media.

A media player that is capable of progressive download playback relies on meta data located in the header of the file to be intact and a local buffer of the digital media file as it is downloaded from a web server. At the point in which a specified amount of data becomes available to the local playback device, the media will begin to play. This specified amount of buffer is embedded into the file by the producer of the content in the encoder settings and is reinforced by additional buffer settings imposed by the media player.

Wikipedia: http://en.wikipedia.org/wiki/Progressive_download

89 questions
16
votes
2 answers

Change Jpeg into progressive Jpeg Image

I want to convert from base line Jpeg image to progressive Jpeg image. There are 10,000 images stored in my Disk. I tried one website but it is changing one at time.http://www.imgonline.com.ua/eng/compress-image.php But I want to convert them in…
Varun Sharma
  • 4,632
  • 13
  • 49
  • 103
14
votes
3 answers

Stream video while downloading iOS

I am using iOS 7 and I have a .mp4 video that I need to download in my app. The video is large (~ 1 GB) which is why it is not included as part of the app. I want the user to be able to start watching the video as soon as is starts downloading. I…
11
votes
1 answer

Cache Progressive downloaded content in MPMoviePlayerController

I have a music player implemented in iphone (sdk 4) and it works both with streaming of Mp3 (Transcoded on the fly) or raw progressive download. Is there anyway to make the progressivedownloaded content (which I dont directly control) to be cached…
rydgaze
  • 1,050
  • 13
  • 24
11
votes
1 answer

AVPlayer and Progressive Video Downloads with AVURLAssets

We've got an app we're working on that needs to provide playback of video files via AVPlayer. The files need to be stored on the user's device, but also must playback while downloading. At the moment we've built a download module that uses the…
11
votes
1 answer

Are there any specific requirements to enable "fast-start" progressive download with webm and ogg codecs?

I know that with mp4, the moov atom must be placed at the beginning of the file to enable progressive downloading. That can be done by enabling "faststart" when creating the file. I'm curious if there are any similar requirements when dealing with…
stefmikhail
  • 6,877
  • 13
  • 47
  • 61
9
votes
3 answers

Using WinInet to identify total file size before downloading it

I got the source below from a third-party site explaining how to download a file from the internet using WinInet. I'm not too familiar with API, and I took at look at the WinInet unit but did not see any API calls like what I need. What I'm doing is…
Jerry Dodge
  • 26,858
  • 31
  • 155
  • 327
9
votes
4 answers

iPhone progressive download audio player

I'm trying to implement a progressive download audio player for the iPhone, using http and fixed size mp3-files. I found the AudioStreamer project but it seems very complicated and works best with endless streams. I need to be able to find out the…
joynes
  • 1,627
  • 4
  • 16
  • 19
8
votes
2 answers

Progressive download standard

Is there any document which talks about how progressive download works. I am aware it is based on HTTP but need more information as to how the data is downloaded and what kind of messages flows between the player and the HTTP server. Is there any…
user588601
  • 141
  • 2
  • 6
8
votes
3 answers

How do I display a progressive JPEG in an UIImageView while it is being downloaded?

Downloading an image from the net and showing it in an UIImageView is fairly easy. However, this requires the image to be completely downloaded before it is shown to the user, completely defeating progressive JPEG (and PNG) images. How can I render…
Grzegorz Adam Hankiewicz
  • 7,349
  • 1
  • 36
  • 78
8
votes
1 answer

Any difference between video encoding for progressive download and streaming?

I want to know if we can use the same file for both video streaming and for progressive download. Is there any differences between their encoding? For example, If I have a .flv file, can I use the same file for any of the above delivering methods,…
Renjith K N
  • 2,613
  • 2
  • 31
  • 53
8
votes
1 answer

Progressive Video Download on iOS

I am trying to implement Progressive Downloading of a video in my iOS application that can be played through AVPlayer. I have already implemented a downloader module that can download the files to the iPad. However, I have discovered I cannot play a…
7
votes
1 answer

How do streaming videos work?

So I have some videos in .flv format which I'd like people to be able to view from my site, without being able to download them. So far Flowplayer seems like the best choice for the actual flash player. However, I've been looking into this video…
Ali
  • 261,656
  • 265
  • 575
  • 769
7
votes
3 answers

flash/flex: progressive download vs. rtmp

I'm trying to understand and really pinpoint when to use progressive download vs. rtmp in flex/flash. It seems that the main point is that rtmp is not served with http, whereas progressive download is. Since it's not rtmp, the resource is protected…
drummer
  • 1,211
  • 3
  • 16
  • 16
6
votes
3 answers

How to load low quality and then high quality image afterwards in android (just like WhatsApp profile image)

I am searching for a design pattern i can use so that in android recyclerView i can load images quickly at low quality and then also make a call to for a high quality image will will write over the low quality image afterwards . I see it often where…
j2emanue
  • 60,549
  • 65
  • 286
  • 456
6
votes
5 answers

Streaming an mp4 through a php file progressively

I'm working on a more secure streaming method for our video player. Because each file requires special token authentication and also only allows each token to be loaded once, I'm running MP4 through a php container. This works perfectly inside a…
Jamie Taylor
  • 4,709
  • 5
  • 44
  • 66
1
2 3 4 5 6