tagged [streaming]
HTML5 Video Autoplay not working correctly
HTML5 Video Autoplay not working correctly I'm using this code: I want the video to autopla
- Modified
- 27 Apr at 15:2
Streaming Audio from A URL in Android using MediaPlayer?
Streaming Audio from A URL in Android using MediaPlayer? I've been trying to stream mp3's over http using Android's built in MediaPlayer class. The documentation would suggest to me that this should b...
- Modified
- 27 Jan at 22:15
HTML5 live streaming
HTML5 live streaming For school I need to set up an HTML5 live stream site. They have a flash stream-player they've been using but now they want it to use HTML5 instead. How can I do this? I tried usi...
- Modified
- 11 Dec at 11:33
Play button in browser
Play button in browser I want to put songs on a web page and have a little play button, like you can see on Last.fm or Pandora. There can be multiple songs listed on the site, and if you start playing...
An attempt was made to access a socket in a way forbidden by its access permissions. Why?
An attempt was made to access a socket in a way forbidden by its access permissions. Why? ``` private void StartReceivingData(string ipAddress, int iPort) { try { if (!_bContinueRecivi...
Create http audio stream with VLC in C#, from a WAV audio being recorded
Create http audio stream with VLC in C#, from a WAV audio being recorded I am using `NAudio` library to record systems mic input - continuously. ``` private void RecordStart() { try { _sourc...
- Modified
- 22 Apr at 18:29
How do I dispose my filestream when implementing a file download in ASP.NET?
How do I dispose my filestream when implementing a file download in ASP.NET? I have a class `DocumentGenerator` which wraps a `MemoryStream`. So I have implemented `IDisposable` on the class. I can't ...
- Modified
- 21 Jun at 12:5
Download image from the site in .NET/C#
Download image from the site in .NET/C# I am trying to download images from the site. The code which I am using is working fine while the image is available. If the image it not available it is creati...
Playing streaming video in WPF
Playing streaming video in WPF I've written a WCF service that streams media files. I'm now writing a WPF application that consumes this service and have only just found out that the MediaElement does...
Playing m3u8 Files with HTML Video Tag
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 wel...
- Modified
- 20 Feb at 07:36
Android media streaming/incremental download question
Android media streaming/incremental download question I'm currently developing an application that uses Android's MediaPlayer setDataSource(url) method to play SHOUTCast streams. I'm in the process of...
Download/Stream file from URL - asp.net
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 un...
WebAPI Request Streaming support
WebAPI Request Streaming support I am writing an ASP.NET Web API application that requires me to accept a file upload and forward that file on to another HTTP endpoint. I am concerned that if many use...
- Modified
- 22 Jan at 09:48
Streaming large video files .net
Streaming large video files .net I am trying to stream a large file in webforms from an HttpHandler. It doesn't seem to work because its not streaming the file. Instead its reading the file into memor...
- Modified
- 31 May at 17:30
Developing a Video Chat Application with high quality video streaming
Developing a Video Chat Application with high quality video streaming I am working for a company where we are developing video chat support on an existing application. I have looked at various solutio...
Streaming large images using ASP.Net Webapi
Streaming large images using ASP.Net Webapi We are trying to return large image files using ASP.Net WebApi and using the following code to stream the bytes to the client. ``` public class RetrieveAsse...
- Modified
- 24 Apr at 07:59
Is it necessary to close the Stream of WebInvoke method
Is it necessary to close the Stream of WebInvoke method I have a service interface with a method that has a parameter of type `Stream`. Should i close the stream after i have read all data from this s...
- Modified
- 20 Dec at 09:29
moving audio over a local network using GStreamer
moving audio over a local network using GStreamer I need to move realtime audio between two Linux machines, which are both running custom software (of mine) which builds on top of Gstreamer. (The soft...
- Modified
- 26 Apr at 16:52
Reading data from an open HTTP stream
Reading data from an open HTTP stream I am trying to use the .NET WebRequest/WebResponse classes to access the Twitter streaming API here `"http://stream.twitter.com/spritzer.json"`. I need to be able...
- Modified
- 15 Nov at 15:52
How to process images of a video, frame by frame, in video streaming using OpenCV and Python
How to process images of a video, frame by frame, in video streaming using OpenCV and Python I am a beginner in OpenCV. I want to do some image processing on the frames of a video which is being uploa...
- Modified
- 4 Feb at 17:39
"The remote host closed the connection" in Response.OutputStream.Write
"The remote host closed the connection" in Response.OutputStream.Write This code streams large files to our users: ``` // Open the file. iStream = new System.IO.FileStream(filepath, System.IO.Fi...
WMV streaming file size limit
WMV streaming file size limit I have a windows media player embedded in my web page view: ```
- Modified
- 7 Jul at 13:10
Hadoop streaming with C# and Mono : IdentityMapper being used incorrectly
Hadoop streaming with C# and Mono : IdentityMapper being used incorrectly I have mapper and reducer executables written in C#. I want to use these with Hadoop streaming. This is the command I'm using ...
- Modified
- 2 Nov at 04:44
Streaming videos with ASP.NET Core 3
Streaming videos with ASP.NET Core 3 I'm currently building a API in ASP.NET Core 3 as my first project with .NET Core. I'm currently trying to send a video to my React.js frontend to watch it in the ...
- Modified
- 4 Jan at 17:49