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
3
votes
0 answers

Android progressive video streaming

I just want to stream video in android app, I tried following approachs: 1) Using VideoView and setting setVideoURI(vidUri):Problem: Works fine for small videos but starts stuttering for large videos and request for range headers multiple times. 2)…
3
votes
1 answer

why does this progressive jpeg not load progressively?

I have some large images on my web site, and so I saved them as progressive jpegs. That way the user should see that something is happening while they download. But nothing shows up for several seconds until the entire jpeg is downloaded. What am I…
3
votes
1 answer

progressive video download using android media player

I'm working on Video streaming over Delay-Tolerant Networks using android mobiles. For that im trying to implement progressive video download based on the tutorial given by pocket…
2
votes
3 answers

Loading image in several passes

I know it is possible. I have seen it a couple of times, but it always struck me with: "how did they pull this off?". Those images that build up while loading, it's some kind of progressive image loading. It starts out with a low res version, and…
Kasper
  • 1,282
  • 4
  • 20
  • 39
2
votes
0 answers

CSS background-image JPG saved as progressive but website renders baseline

I have a JPG which was saved as progressive using GIMP. When I check the JPG using online tools it shows as progressive. However the image always loads baseline In CSS this JPG is set as a background-image with a linear-gradient over…
Andy
  • 919
  • 2
  • 9
  • 22
2
votes
1 answer

Move "moov" atom to front of video natively in Android

I've noticed that the moov atom is placed at the end for many .mp4 videos. I'd like to relocate this atom to the front of the video so that I can enable progressive downloading. Is there a way to do this programmatically in Android without using any…
2
votes
1 answer

MPMoviePlayerController: when will I know that the downloading of the file reaches 10 percent?

I am playing videos from our web server and I'm using the MPMoviePlayerController to play it. It first, downloaded the file while simultaneously playing it. I need to post a log back in our web server every time a video reaches the 10% mark while…
1
vote
0 answers

MPMoviePlayerController: how to read a temporary video file

My application is relatively simple: User selects a video from a list, he selects some presets and it is automatically exported into application's temp directory. To preview exported files, I launch a MPMoviePlayerController about 10 seconds after…
zebeurton
  • 319
  • 3
  • 9
1
vote
0 answers

How to Check / Fix Broken Background Transfers - WP7

I am developing an application which provides video download feature using Background Transfer. Some times it says download is completed but on loading it in MediaLauncher it says can't play this file immediately or after playing it for partial…
1
vote
1 answer

Get the time of the beginning and the end of the download

I have to get the time of download in my android application, that's why I need to determine the time of beginning and end of dowload to determine the period od download. I added these line in the beginning and the end of doInBackground:…
Linconnue55
  • 187
  • 3
  • 7
  • 16
1
vote
0 answers

PinRemoteImage - Load another image to a UIImageView after one image download has been completed

I'm trying to create a function as an extension of UIImageView that loads non-progressive image progressively, using PinRemoteImage. The URL passed to the function provides a progressive PNG image, which seems unable to load progressively even with…
1
vote
1 answer

jQuery: On load event not working consistently

I'm trying to lazy-load images using the following script (lazy-load.js): function lazyLoadImage(imgContainers) { var img = $(''); imgContainers.each(function (i, elm) { img.attr('src', $(elm).data("large")); …
Bipul Roy
  • 506
  • 2
  • 7
  • 18
1
vote
3 answers

AS3 FLVPlayback with progressive .mp4

So I have a dynamically created FLVPlayback object and for the most part everything is working just peachy. However, when I load an MP4 file (via HTTP) with it, it will not play until the entire file is downloaded. After doing some research, I used…
EnochTwig
  • 11
  • 3
1
vote
1 answer

Seeking to a part of video that hasn't been loaded yet (on progressive download)

I was told there is a server technology that allows user to seek to a part of video that has not been loaded yet even if I am using progressive download, not true streaming. What technology is it?
daniel.sedlacek
  • 8,129
  • 9
  • 46
  • 77
1
vote
1 answer

Playback of F4V using FLVPlayback won't use progressive download

I am using FLVPlayback Component in Flash AS3 to play an F4V video hosted on a different server. I want it to start playing as soon as possible, but the video won't start playing until the F4V is completely downloaded (I checked with Firebug). I…
Brian D'Astous
  • 1,314
  • 1
  • 18
  • 26