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

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...

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...

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...

27 Jan at 13:21

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...

4 Aug at 15:33

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...

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 ...

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...

25 May at 10:32

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...

21 Aug at 03:52

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...

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...

18 Mar at 17:57

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...

29 Dec at 20:35

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...

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...

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...

22 Jan at 20:38

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...

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...

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...

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...

Stream audio from PC to smartphones?

Stream audio from PC to smartphones? For Christmas 2016, me and my dad want to do a Lightshow for our neighborhood with lights and . [](https://i.stack.imgur.com/s86mw.jpg) We have the lights set up, ...

31 Jul at 21:49

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...

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...

6 May at 19:57

WMV streaming file size limit

WMV streaming file size limit I have a windows media player embedded in my web page view: ```

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 ...

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 ...