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
5
votes
2 answers

VideoView and Progressive download

In my application I need to provide the user with a preview on a progressive download (video file). In order to achieve this, I'm using VideoView component to show the content of the video (.mp4, .3gpp) which is being downloaded. The problem is that…
a.bertucci
  • 12,142
  • 2
  • 31
  • 32
5
votes
4 answers

How to make QTMovie play file from URL with forced (MP3) type?

I'm using QTKit to progressively download and play an MP3 from a URL. According to this documentation, this is the code I should use to accomplish that: NSURL *mp3URL = [NSURL URLWithString:@"http://foo.com/bar.mp3"]; NSError *error = nil; QTMovie…
Michael
  • 11,612
  • 10
  • 41
  • 43
5
votes
1 answer

How to serve videos like Youtube? Almost instant play and fast seeking

How to serve videos like Youtube does ? Even if the video is long (almost 2 hours long) and is viewed in HD, it would almost instantly play and seeking to not yet loaded parts are very fast. I'm using a dedicated server from Rackspace with 100Mb…
4
votes
2 answers

wcf progressive download

I am trying to write a WCF service that can send mp3 files to the client. I need it to transfer the mp3 file using progressive download because the client is an android app and I want it to start playing as soon as possible. How can I do progressive…
Nithin
  • 139
  • 2
  • 9
4
votes
1 answer

Displaying interlaced (progressive) Image in ImageView android

I am trying to display a JPEG image as it downloads like this library but its for IOS is there anything like this in android. While R&D found this but its also for ios. 1) Right now i am using this way to load it works but the overhead is i have to…
4
votes
3 answers

How to load XML progressively in C#?

I need to process loaded from ResponseStream on Async callbacks XML progressively. Reply is have: ..... ... schema, and i need to have ability process 's before they…
datacompboy
  • 301
  • 5
  • 17
4
votes
1 answer

Can I use javascript to locally create and save a humongous file?

I’d like to use javascript to create and save a large .csv file client-side. This has been asked and answered before (see 1, 2, 3, or 4, for example), and this comes down to two approaches (among others): Use FileSaver.js to implement w3c’s…
Teepeemm
  • 4,331
  • 5
  • 35
  • 58
4
votes
3 answers

Online Video Streaming from http url with caching in android Application

In my Application, I am showing videos to user from an online source in progressive manner (I have an Http url for every video). It is quite possible with SurfaceView and MediaPlayer in combination and also with VideoView as an alternative. But I…
4
votes
2 answers

WPF Image control to progressively load multipage tiff

I'm wondering if there's an existing control or if it would be straightforward to develop a control allowing a multipage tiff to be progressively loaded over a network? I'm working with some tiff images that are up to thousands of pages, and it…
hitch
  • 899
  • 1
  • 11
  • 26
4
votes
1 answer

Where/how does the Android MediaPlayer cache progressive downloads

I need to know where/how the MediaPlayer caches audio/video content when it is "streamed" via progressive download, by default. We're evaluating options for an Android media player app. One item of concern is preventing the content from being…
Chuck Spencer
  • 103
  • 1
  • 6
3
votes
2 answers

Silverlight WebClient Progressive Download

I'm trying to progressively download an array of serialised data. The goal is to send a single large block from the server, and partially process it on the client whilst it downloads. I'm using the System.Net.WebClient class and setting it's…
Gareth Saul
  • 1,307
  • 1
  • 9
  • 19
3
votes
1 answer

Android - Progressive download over HTTPS

I am using following code to play a video from SDCard and HTTP links Intent intent = new Intent(Intent.ACTION_VIEW); intent.setData(Uri.parse(**videoUrl**)); intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); startActivity(intent); if the videoUrl is…
3
votes
1 answer

Progressive download and streaming of video content using Amazon S3

Does Amazon S3 support progressive download? I just want my videos start playing before its fully loaded. I don't need real streaming yet.
Peter
  • 904
  • 1
  • 13
  • 26
3
votes
1 answer

Save MediaElement file source to isolated storage

With a MediaElement using an external source -- is it possible to play an mp3 while it's downloading, and then when it's finished downloading, save it to isolated storage for future use? If not, what's the best way to accomplish this?
3
votes
1 answer

FLVPlayback component won't seamlessly loop

Everything I've tried so far with a FLVPlayback component to seemlessly loop a progressively-downloaded 15 second video has failed. There's always a split-second pause when it's time to loop. For the scenario, embedding video in a flash project is…
jtrim
  • 3,465
  • 4
  • 31
  • 44