Tagged Questions

11
votes
2answers
225 views

Http and file uploading - How does it really work (under the hood)

Ok this may seem like a bit of a noob question but one many Web developers I know dont have a full understanding of. Basically how does a file uploading from a web page file input box to a webserver …
8
votes
3answers
606 views

Streaming large file uploads to ASP.NET MVC

For an application I'm working on, I need to allow the user to upload very large files--i.e., potentially many gigabytes--via our website. Unfortunately, ASP.NET MVC appears to load the entire …
8
votes
2answers
680 views

H.264 Streaming Requirements

I am looking for more information about the minimum requirements needed for a visitor to successfully stream a 1 Mbps 640x360 H.264-encoded video. I know that the user needs the latest Flash 9 …
7
votes
3answers
247 views

Read from a growing file in C#?

Hi, In C#/.NET (on Windows) is there a way to read a "growing" file using a file stream? The length of the file will be very small when the filestream is opened, but the file will be being written to …
7
votes
5answers
6k views

C# Streaming WebCam Video

I want to make a simple server application where people can connect using a browser-based client (which i will make later) to watch streaming video. And I want to use C#. What do I need to capture …
7
votes
2answers
581 views

How do I capture an mp3 stream with python

What's the best way of capturing an mp3 stream coming off of http and saving it to disk with python? Thus far I've tried target = open(target_path, "w") conn = urllib.urlopen(stream_url) while True: …
6
votes
4answers
2k views

Best way to stream files in ASP.NET

What's the best way to stream files using ASP.NET? There appear to be various methods for this, and I'm currently using the Response.TransmitFile() method inside an http handler, which sends the file …
6
votes
6answers
734 views

Quick and acceptable MP3 streaming solution

Hi, I have to do a job overnight to enable a very simple interface for users listening to a radio channel over the internet. I am wondering what is the best soluition for streaming. I thought of …
6
votes
2answers
1k views

WCF Chunking / Streaming

Hi, I'm using WCF and want to upload a large file from the client to the server. I have investigated and decided to follow the chunking approach outlined at …
5
votes
6answers
157 views

How best to manage Linux’s buffering behavior when writing a high-bandwidth data stream?

Hi all, My problem is this: I have a C/C++ app that runs under Linux, and this app receives a constant-rate high-bandwith (~27MB/sec) stream of data that it needs to stream to a file (or files). …
5
votes
8answers
1k views

how to write super fast file streaming code in C# ?

I have to split huge file into many smaller files. each of the destination file is defined by offset and length as number of bytes. I'm using the following code: private void copy(string srcFile, …
5
votes
9answers
494 views

Can you recommend an effective and cheap CDN for video streaming?

I am looking for a streaming CDN recommendation. Cost and performance are my chief concerns. Video viewers may be all over the globe, with the, US, Europe, Russia and South America topping the list …
5
votes
3answers
612 views

Streaming MP3s from Amazon S3

Is there a way to stream MP3s stored on Amazon S3 via a Flash widget embedded in a website, or some other method?
4
votes
4answers
122 views

What is the easiest way in pure Perl to stream from another HTTP resource?

What is the easiest way (without opening a shell to curl and reading from stdin) in Perl to stream from another HTTP resource? I'm assuming here that the HTTP resource I'm reading from is a …
4
votes
1answer
126 views

Implementing COMET clientside

I have read up about what COMET streaming is, and all the various hacks required to get it working across the major browsers. The problems encountered seem to be two fold: 1. Server being able to …

1 2 3 4 5 21 next
15 30 50 per page