Click here to Skip to main content
15,891,607 members
Everything / Streaming

Streaming

streaming

Great Reads

by Andrew Kirillov
The article describes cam2web project - an open source application aimed for streaming cameras as MJPEG streams.
by Sergiy Bogdancev
Understanding streaming data
by D Sarthi Maheshwari
Discussing about streams... about streaming... about functional streaming... and nothing else

Latest Articles

by Han Bo Sun
How to stream a large file and support byte range seeking using Spring Boot
by honey the codewitch
Explore some streaming techniques while getting your shiny new ESP32S3 to do some USB and MIDI tricks
by Sander Rossel
How to write a Python app to ingest weather data into Azure using an Azure Event Hub

All Articles

Sort by Title

Streaming 

15 May 2017 by Fahad Iftikhar
i'm using stream reading and writing for file handling in c#. but getting this error. Paste code snippet here What I have tried: i have used stream.close() everywhere where i have used streaming in my whole program's functions of classes.
15 May 2017 by OriginalGriff
Dumping your code on us like that is rude: in future only give us the relevant fragment - the method the error occurs in at most. But...look at your code: FileStream fs = new FileStream(fileName, FileMode.Append, FileAccess.Write, FileShare.None); StreamReader sr = new StreamReader(fs); When...
15 May 2017 by Simon_Whale
Guessing as it seems to appear alot when googled you are trying to access the read stream after it has been disposed. But it is a guess as you haven't posted a code snippet. c# - Stream was not readable error - Stack Overflow[^]
16 Jan 2015 by Ferz Franco
I'm using the .NET System.IO.Ports.SerialPort using the BaseStream as suggested in this post If you must use NET SerialPortBut when I try to close the port or the baseStream, an...
16 Jan 2015 by Philippe Mori
I would think that tou should only close the serial port but not the base stream as it will get close anyway. The error is probably caused by the fact that serial port assumes that the stream is not closed directly.Thus you should consider that the stream is managed by the serial port and...
16 Jan 2012 by Simon Bridge
Multiple-file, searchable, streaming compression library implemented natively in .NET.
22 May 2013 by vijayknarang
HiI have extracted Video Data using gdata API and got 3gp url for format 1,6. This i got extracted from Media:Group --> Media:content element.following are sample...
5 Sep 2013 by para311g
http://nfllive24x7.blogspot.com/[^]http://nfllive24x7.blogspot.com/[^]
2 Aug 2013 by Hitesh K Gupta
I am working on a live streaming project. In that we need to show live scenes on local screens along with broadcasting. But for this, use of encoded stream is not a good choice as encoded stream has delay which can not be use as live feed. So I got an idea to create an archive file during...
26 Jan 2016 by paunescuionica
I'm currently developing an application which will enable visualizing images from different sources (mostly IP cameras) in browser (in a HTML5 video element). The UI will allow for matrix view so, normally 16 or more cameras will be displayed at the same time.From cameras I get MJPEG streams...
9 May 2022 by honey the codewitch
Explore some streaming techniques while getting your shiny new ESP32S3 to do some USB and MIDI tricks
9 Jan 2015 by Qdot543
I've been googling this for a week and I haven't been able to find an answer or a place to start. The resources that exist on the topic are about streaming video files from a webserver or streaming from the androids camera back to a computer. I'm interested in neither of these cases.I need...
21 Jan 2015 by Anoop M Jack
If you are using an ipweb camera you can stream and view the vedio in android using webview..Click me
4 Jun 2013 by mccaber82
Hi,Im looking to know is there a way to stream the videos from youtube onto my web site domain and let my website distribute them?I'm trying to work around the fact that my server has no proxy rules but my client machine (which can browser the web page on the server) has proxy settings...
4 Jun 2013 by Dave Kreskowiak
No, there isn't. Any attempt to do so is a violation of YouTubes Terms Of Service. You'll get a "nice" letter from their lawyers telling you to cease and desist.Once uploaded, the content belongs to YouTube. They have sole rights for distribution in any form and require their permission...
4 Jun 2013 by Ron Beyer
I hate to be the bearer of bad news to Dave, but there is a supported .NET API for YouTube:https://code.google.com/p/google-api-dotnet-client/[^]In fact, there are a lot of API's:https://developers.google.com/youtube/v3/libraries[^]And developer...
27 Oct 2014 by FaizanMubasher
I have converted my Video file into stream and ran the video in browser using HTML5 Video tag.Here is code behind file code: StreamVideo.aspx.vbImports System.IOPublic Class StreamVideo Inherits System.Web.UI.PageProtected Sub Page_Load(ByVal sender As Object, ByVal e As...
20 Oct 2014 by FaizanMubasher
Hi,How to Stream video files in ASP.NET WebForms.I have .flv video in my resources directory and I want to stream it on WebForm.Any step by step tutorial, link or article will be helpful.Note that I do not want video downloadable at client side.Thank You!
19 Dec 2018 by Sibeesh Passion
In this article, we are going to see how we can set up an Azure Function as an Output job topology of an Azure Stream Analytics job. Doesn’t that sound interesting?
1 Feb 2012 by RichardS
Hi,I have a "printf" style function:void myclass::write (int, char *, ...)This function takes the usual printf style params. The conversion I am doing is using the simple vsprintf. After the string is converted, it needs to be stored for later printing (through a std::cout...
1 Feb 2012 by «_Superman_»
Since you only need to store a string, use std::string.
10 Nov 2013 by ibradleyallen
hiim trying to work with video and get access to the streaming data such that i could put a timestamp on about 10 sec of videoi have access to a cheap usb webcam, and at least one iP based camera, i think it streams jpeg and mpegthe goal is to have video coming across and being...
10 Jan 2012 by GabeA
I am currently working on a program that receives UDP packets of size 1460 bytes per packet and continuously streams the bytes to the hard drive of my PC. Currently, my program can only receive and stream 84 packets before data loss occurs. I need my program to be realtime with a fast sampling...
10 Jan 2012 by Richard MacCutchan
Why are you messing about with the data in this way? You receive a stream of bytes from the network so all you need to do is write that stream (whatever length you receive) to the disk. Don't try converting to a string (what does that achieve?) and don't write four bytes as an int.
10 Jan 2012 by CodyDaemon
I few things which should help on the speed front...Open the file and keep it open, and just write data to it as it comes in, and then close the file when the program exits. Open and closing files for each packet is just overhead which can easily removed.Why are you writing each 'int' by...
25 Oct 2011 by Jackie00100
hi im working on a simple IM chat messenger and every thing works fine as long as i sends a "controlled" amount of lines to the server but what i want is to let the user be able from the chat window to send multiple lines. at the moment im using readlines because i cant get .read or .write to...
25 Oct 2011 by BobJanova
NetworkStreams don't guarantee that one send = one receive. So you either need to add a delimiter which marks the end of a message, and buffer results until you reach it (ReadLine is doing this for you automatically), or you need to send a message header which includes the message length before...
13 Dec 2018 by HS_C_Student
It's pretty common that I will use fgets() in a loop to iterate through the lines of a file and process them. Normally it works well but in some cases it sucks. Example 1: If you need to know information about the next line(s) or previous line(s) to decide how to process the current line. ...
13 Dec 2018 by Mohibur Rashid
How about create index? In this case, you will have to read the file twice, but, you will have complete knowledge of your data set. You will create indexes by reading each character and seeking new line, when you hit the newline register it in memory, as array or as linked list. Using this you...
13 Dec 2018 by KarstenK
When it is the work of the app to parse the complete file it should be no problem. Test it. At best you use some standard containers like int this file reading example code.
13 Dec 2018 by CPallini
Quote: Example 1: If you need to know information about the next line(s) or previous line(s) to decide how to process the current line. Example 2: The current line indicates you have read too far and you must send it to a different context of your parser. Both of such problems are usually...
29 Aug 2017 by Andrew Kirillov
The article describes cam2web project - an open source application aimed for streaming cameras as MJPEG streams.
22 Oct 2014 by Member 11094074
In my project I'm reading audiostreams from my web service using NAudio MediaFoundationReader, and it works like a charm over http. However, when the web service is set to use https, mediafoundationreader throws an COMException in NAudio.dll. (Exception from HRESULT: 0x80072EFD)I know I can...
22 Oct 2014 by BillWoodruff
Using Google to search for C#/.Net error messages really does work: look at the top two results for these searches: [^], [^].Very specific issues with specialized, widely-used, 3rd. party .NET tools/libraries are often best asked/answered on the company/open-source-group's Forum, if they...
27 Nov 2011 by emanuelx
I'm good people to do a player but that does not use windows mediaplayer thenchose to directshow.but the program also reads files from the netfor example this video filehttp://dl.dropbox.com/u/22494369/David%20Guetta%20feat.%20Sia%20-%20Titanium.mp4[^]but if for example you have...
16 Dec 2013 by Member 10470202
Hi,as discribed in the "Darwin Streaming Server Adminstrator's Guide" I've created an Access-File to control access to my streaming content. Users have to enter username and passwort to access my streaming-content.2 Problems I would like to fix:1. An endless number of people are able...
21 Apr 2015 by oronsultan
hey guys,about a year ago i developed a program to my comapny that extract customers call from our website, decrypt it and pushed it to our internel software and from ther to the support department.here the problem: during the last week, my basic assumption is that our server did some...
21 Apr 2015 by Sergey Alexandrovich Kryukov
What make you thinking that the e-mail is encrypted? Hardly. If this is base64, it has nothing to do with "encryption".This is how you can work with it: https://msdn.microsoft.com/en-us/library/system.convert.frombase64string%28v=vs.110%29.aspx[^],see other base64 methods:...
26 Apr 2012 by cpquest
Hi all,I am developing a CHAT application is there is any WCF Article that describs the the development of basic or advanced WCF File Transfer service.
26 Apr 2012 by jim lahey
1st two pages when I search google for "wcf streaming":http://msdn.microsoft.com/en-us/library/ms731913.aspx[^]http://msdn.microsoft.com/en-us/library/ms789010.aspx[^]Used this as a reference for a document transfer service, works very well.
1 May 2012 by cpquest
Hi,and also the following link is very simple File transferFile Transfer using WCF and Socket[^]
22 Dec 2020 by honey the codewitch
Highly efficient access to JSON data sources and selective bulk loading JSON on any platform using a new JSON paradigm
17 Mar 2020 by Member 10850253
I am trying to display a google drive video inside a WebView, but if I remove the google drive toolbar, the video never plays. Can someone please help? Thanks. What I have tried: import android.app.ProgressDialog; import...
19 May 2016 by violence666
i have made a code in which i receive the live stream on my client from my Raspberry pion my Pi (server) i have used a netcat command pi@raspberrypi ~ $ raspivid -t 0 -o - | nc -l 5001 on the receiver, i store the received data in a buffer, and then that buffer i pass it to my decoder...
3 May 2018 by Hitesh Rohilla
I am not a pro in FFMPEG but since working on it on non-frequent bases I tried to search for the solution but didn't get one However, I get one for RTSP FFMPEG -rtsp_transport tcp -i "rtsp://://" -f mpegts -codec:v mpeg1video -b:v 800k -r 30 - But my streaming is...
16 Dec 2012 by WebMaster
http://pacn.livetv2pc.com/watch-jacksonville-jaguars-vs-miami-dolphin-live-stream-free-online-sunday-night-football-2012-nfl-week-15-cbs/
12 Oct 2015 by Van Diep Le
ex: tivi online have link video onlinei get url then show my web (video streaming)Help me!!! please
12 Oct 2015 by Krunal Rohit
User and provide your video URL as src. See this : W3C[^]-KR
12 Oct 2015 by Van Diep Le
url of website online videoinsert url into my website (c# mvc)Help me
20 Sep 2018 by paunescuionica
I cannot visualize a H264/MP4 stream generated by ffmpeg in Chrome, IE, Edge. It works only in Firefox. My testing environment is Windows 10, all updates done, all browsers up to date. What I have tried: I have a source MJPEG stream, which I need to transcode to H264/MP4 and show it in...
16 Jan 2013 by Sandeep Mewara
It looks like you want to ask this question to an author related to his/her article.I would suggest you to please use the forum present at the end of the article in order to reach author and get quick response. Rarely you will find authors reading this forum.Please post the same at the...
18 Apr 2018 by Member 13786831
So i'm creating a website for Multi streaming twitch streams just like [DELETED] My problem is that i only know basic html and i don't have a clue what i'm doing. Twitch provides embed links for both stream and chat for every chanel on there. In my head it's really simple. In code i am so...
18 Apr 2018 by OriginalGriff
Quote: My problem is that i only know basic html and i don't have a clue what i'm doing. And that is the problem. HTML will only allow you to create basic, static, websites - and that isn't what you are trying to do. To create complex websites, you need to understand more: starting with...
18 Nov 2013 by Member 10408813
Greetings!Already have Rivendell Radio Audio automation configured and working with Jack2 on Linux Mint 12 (Oneiric) x64.Trying to figure out how set up liquidsoap and icecast2 to stream audio from jack. Configure an stereo output of Jack2 to liquidsoap.liquidsoap: generate...
8 Sep 2015 by Ravi Tuvar
Here is the scenario..I want to share HLS Live Streaming(.m3u8) on Facebook and it should play the live video in user's profile..How can i achieve this..?Here is my Sample Code..
5 Oct 2014 by Member 10235977
I am using ASP.NET Media Player Control plugin (ASP.NET 3.5) for displaying videos in my ASP.NET website. It downloads the entire video before playing it. I would like the player to start showing video and download video as it plays.I believe there is a property like AutoStream = true and...
16 Jan 2014 by Amol Salunkhe
I am creating application for video capturing. But I want live streaming video capturing which can be displayed on website or other windows phone at the time of capturing video. Or Save the video file on server after every 30 sec while capturing the video.
23 Nov 2017 by Member 9927463
Greetings,I am currently working on a project in which we need to stream live video off of a USB device and I was wondering, how I could go about doing it. I was able to accomplish the task using dynamic web twain(Trial Version) but I was wondering if there's another way that would be less...
28 Mar 2013 by Sergey Alexandrovich Kryukov
Please see: http://www.codeproject.com/search.aspx?doctypeid=1&q=%28Webcam+OR+%22Web+camera%22+OR+%22USB+Camera%22%29+%22.NET%22[^].You will find some decent solutions.—SA
19 May 2015 by vishal zende
Hello,I've developed RED5 app, and now i want to develop a java/xuggler app that publish a local file over rtmp,i searched a lot but i didn't come up with any solutionPlease help to, how to develop java/xuggler app which publish a filei need a code.thnx in advance... :)
31 Aug 2016 by Codes DeCodes
My client wants video live streaming in my software. The detail goes like this..Client has his factory in site A and his office is in site B. Now he wants the activities of site A to be monitored from site B via video. This is the feature to be added in the software. Actually, client wants...
17 Jun 2014 by Mahmoud Ksemtini
hello,i want to allow users of my .net application to stream live videos. how can i do that?
17 Jun 2014 by Jafarinejadvazifehkhorani
the explanation is not enough but I hope the following link could be helpful for youlive video streaming in asp.net using c#[^]
5 Mar 2015 by tinoneticm
I have a requirement for a WCF service operation that accepts a large Stream, processes it and returns that stream.I used an https://msdn.microsoft.com/en-us/library/ms733742.aspx[^] as a reference to what I need (unfortunately, I am not allowed to post links).Following the advice in...
23 Feb 2015 by Member 10633644
Hi,I am trying to display continuos stream of tweet in webform. I have already succeded in displaying the streaming tweet in console application but was unsucessful in showing in web form. I am a student and i want this for my college project.Can anyone guide me how i can do this.Any help...
21 Sep 2020 by Gagandeep1996
I want to send receive a audio stream on my pc and put that data into windows virtual mic. Basically I want replicate WO MIC's application stack but I want to understand every single part of the design. What I have tried: I have built the...
22 Apr 2015 by Ganesh Shrestha
i want to capture audio from the mic and then send the date to wcf service. Also when audio is capturedthe audio, at the same time publish it into the wcf service so that the client could get the live audio.Using the NAudio project i was able to capture the byte array, now i want that byte...
16 May 2014 by Member 10824483
I am currently using Visual Studio Ultimate 2012 and ASP.NET webpages with C# language. I am having a hard time implementing a radio website that would stream audio from a server or a host computer on the internet. I have tried installing the Windows SDK hoping I would be able to get the Windows...
16 May 2014 by CHill60
Google is your friend.These results for...
10 Feb 2015 by Pablo L
Hi,I already can stream a buffer using LibVLC (version 2.1.5) on a c++ dll.I make a instance of "libvlc_new" and the streaming works.But I'm trying to change the stream to a secured stream using Username and Password but it do not works, everyone can connect and listen to the stream.The...
17 Oct 2014 by Member 10235977
I have an ASP.NET website with a media player on its page to play a video file from a folder on the server. It downloads the entire video and then starts playing. I want to use Streaming media service to play this video as it downloads.For this I have downloaded...
17 Oct 2014 by Naser Hassan
try using Wcf(Rest) service which gives you stream data as output and try calling it asynchronously from client.I think this will work...
13 Feb 2017 by Amayabay
In this article we explain how YouTube Live broadcasts work, and show how anyone with just basic JavaScript knowledge can come up with a YouTube Live broadcast from an HTML page using the WebRTC technology.
8 Sep 2012 by ranju007
i took a blob value from data base and send that blob value as string to an android application i need recover image from that string value..pls help me....
11 Jul 2017 by Member 13117475
Hi, I am working on capture images by calling RTSP service. For calling RTSP service I have created one sample application (as a client) and in that I have created socket object and call RTSP service listen method. I am also able to receive byte[] using UDP listener, but I am not able to use...
11 Jul 2017 by KarstenK
Why are you sending TCP and receiving UDP packets??? Use TCP alsp on the receiver side. You should use the Image.Save() with a parameter to enforce jpeg. image.Save(path, ImageFormat.Jpeg); Else check for other problems, like the transmitted data and its size.
1 Dec 2014 by AnveshP
Hey Guys,I just got new project of creating live audio streaming service, in that we have to write constant stream of audio to some service like radio and at the other hand we have to read that stream in HTML 5 player / iPhone / Android apps. I did some research for creating live streaming...
1 Dec 2014 by Joezer BH
I'd say, start Here[^] - its a W3Schools - html5 audio tag tutorial, then see this[^] about the source tag.You can also check out the Buzz - A Javascript HTML5 Audio libraryCheers, C
1 Dec 2014 by Maria Lopez
Hi,To implement live streaming in ASP.NET, I think generally you can develop a client side application (Silverlight or Windows Application) to record audio and video, and then send the data to the server by using Web Services.Anyway, maybe these threads can give you a help. Live...
20 Jun 2013 by Hitesh Rohilla
I am trying to implement a windows form application in C# and most of stuff available online... but can someone tell how to implement below mentioned process - 2 for video file Decryption and stream directly to media player without saving file to disk.PROCESSPROCESS - 1 Video Encryption...
20 Jun 2013 by Dave Kreskowiak
Everything you linked to concerns itself with encrypting/decrypting files, which must be written to other files and MediaPlayer won't play content from a buffer of your choosing in memory.To do this without using an unencrypted file or custom media server, you'd be writing a codec to do the...
25 Jul 2012 by Tarun22
I made an streaming application(streamer application) in which i am streaming live video from camera,for streaming part i am using live media libraries available on the link www.live555.comi made an server for receiving the streaming from the streamer and passing it to clients, In my server...
3 Dec 2015 by joemtz88
I'm having problems trying to show wmv files in a windows media player object on a vb.net web form.The wmv are located in a virtual directory and I simply can't show them on the wmp object. I tested if the paths where well constructed and copied and pasted them in the browser and it started...
16 Dec 2018 by bamshad1986
Hello, I have installed xampp on my Lubuntu machine to make a website for video streaming. I know how to present the videos using video tag in html but, I want it to be a live video streaming website. To make it clear, it should be like a live program in a tv Chanel and NOT like youtube. What...
16 Dec 2018 by RickZeeland
For Red5 you need to install the JDK, see instructions here: Installation on Linux · Red5/red5-server Wiki · GitHub[^]
18 Jun 2013 by Kirit Patel
Hi, all I am publisher , I want to know how to make simple youtube video playing android app(direct from URL). If anybody can provide sourcecode and sample apk file,then it will be very helpful to me and my dev.Thanks.You all are awesome.
18 Jun 2013 by Christian Graus
This[^] took two seconds with google.
4 Mar 2014 by parag_1
Hello,I've a software which captures video from webcam and upload to the server.Now what i need is, to live stream the video being captured from my webcam using that software to other user of the software instead of uploading to the server using silverlight.Can anyone help me out on...
23 May 2013 by Sujee1
Hi all, I want to play live camera video in my asp.net application.It'll be streamed directly from webcam or IP camera...how can i do it..so plz help.Your response will be really apreciated.Thanks in advanceSujeet Singh
12 Mar 2015 by orgilhp
In my code, shown below, server sends 2 responses separately at one time to the client. But my client gets only 1st response and did not get 2nd one. What happened to 2nd response?Client side code (section of receiving data from server):while (true){ NetworkStream networkStream =...
13 Mar 2015 by orgilhp
Thanks _duDE_ for the reply,I have tried your solution. But server still sends only first respose. :(
30 Apr 2020 by Member 14631177
Using ffmpeg_streaming module in Python web project with Flask, I try to set up video streaming from online camera into local file. My purpose is saving input stream that comes as HLS-compatible data. To implement this property, I've inserted...