7,429
questions
331
votes
24
answers
525k
views
An attempt was made to access a socket in a way forbidden by its access permissions. Why? [duplicate]
private void StartReceivingData(string ipAddress, int iPort)
{
try
{
if (!_bContinueReciving)
{
//initializeMainSocket(ipAddress, iPort);
_mSocket = new ...
293
votes
9
answers
262k
views
Streaming video from Android camera to server [closed]
I've seen plenty of info about how to stream video from the server to an android device, but not much about the other way, ala Qik. Could someone point me in the right direction here, or give me some ...
222
votes
8
answers
215k
views
Best approach to real time http streaming to HTML5 video client [closed]
I'm really stuck trying to understand the best way to stream real time output of ffmpeg to a HTML5 client using node.js, as there are a number of variables at play and I don't have a lot of experience ...
177
votes
10
answers
592k
views
Streaming via RTSP or RTP in HTML5
I'm building a web app that should play back an RTSP/RTP stream from a server http://lscube.org/projects/feng.
Does the HTML5 video/audio tag support the rtsp or rtp? If not, what would the easiest ...
118
votes
4
answers
142k
views
Live-stream video from one android phone to another over WiFi
I have searched the internet for days now on how to implement a video streaming feature from an android phone to another android phone over a WiFi connection but I can't seem to find anything useful. ...
110
votes
1
answer
65k
views
How do streaming resources fit within the RESTful paradigm?
With a RESTful service you can create, read, update, and delete resources. This all works well when you're dealing with something like a database assets - but how does this translate to streaming ...
105
votes
6
answers
146k
views
Chrome hangs after certain amount of data transfered - waiting for available socket
I've got a browser game and I have recently started adding audio to the game.
Chrome does not load the whole page and gets stuck at "91 requests | 8.1 MB transferred" and does not load any more ...
100
votes
2
answers
115k
views
HTML5 - How to stream large .mp4 files?
I'm trying to setup a very basic html5 page that loads a .mp4 video that is 20MB. It appears that the browser needs to download the entire thing rather than just playing the first part of the video ...
100
votes
4
answers
44k
views
What is the difference between MediaPlayer and VideoView in Android
I was wondering if there's a difference between them when it comes to streaming videos.
I know VideoView can be used for streaming and what is Mediaplayer for? As far as I know, MediaPlayer can do ...
89
votes
8
answers
77k
views
Play YouTube videos with MPMoviePlayerController instead of UIWebView
I'm trying to stream some youTube videos using the MPMoviePlayerController but I'm having some problems. The code I'm using is pretty simple and I can play .m4v videos by passing a URL to ...
86
votes
8
answers
422k
views
Playing m3u8 Files with HTML Video Tag
I am trying to use HTTP Live Streaming (HLS) to stream video to my computers and my iPhone. After reading through the Apple 'HTTP Live Streaming Overview' as well as 'Best Practices for Creating and ...
84
votes
9
answers
368k
views
Download/Stream file from URL - asp.net
I need to stream a file which will result in save as prompt in the browser.
The issue is, the directory that the file is located is virtually mapped, so I am unable to use Server.MapPath to determine ...
79
votes
8
answers
154k
views
What is the difference between RTP or RTSP in a streaming server?
I'm thinking about developing a streaming server and I have the following question, do over RTSP (example url: rtsp://192.168.0.184/myvideo.mpg) or RTP (example url: rtp://192.168.0.184).
As I have ...
70
votes
6
answers
57k
views
How to send image generated by PIL to browser?
I'm using flask for my application. I'd like to send an image (dynamically generated by PIL) to client without saving on disk.
Any idea how to do this ?
68
votes
11
answers
77k
views
Is there a streaming API for JSON? [closed]
Is DOM the only way to parse JSON?