hi,
im currently working on a app for a podcast (katg.com) which will let you listen live etc... however, i have not found any open source code available to stream shoutcast. I know there are some ways of doing it, but I find it hard to find any available code on the net that explains it for a java/android beginner like myself. Anyone k...
How to create HTTP server push (also known as HTTP streaming) with PHP (better streaming video)?
Tuts
Libs
are vary welcome
...
Whith the assistance of a very good fellow from this forum (Mr. DJHnz) i solve my first issue regarding the creation of a stream database
Now i'm facing another issue
I'm giving you the code:
USE [master]
GO
/****** Object: StoredProcedure [dbo].[sp_AddStreamDB] Script Date: 12/21/2009 09:55:47 ******/
SET ANSI_NULLS ON
GO
SET QUO...
Is it possible to record video through Flash's "Webcam" facility and receive encoded video on server side without any further processing (i.e. just saving the stream to a file)? Or is server side software always needed to encode the input?
If server side software is necessary, are there free / Open Source solutions available?
...
Hi everyone,
I'm trying to get our video files (m4v) converted to the Apple http streaming and ran into some questions.
I have a file that is 6mb in size and when I pass it through the segmenter using all default settings the files that output add up to 32mb in size. The last file is 17mb in size.
I'm not sure if that is how it is sup...
I have a script that generates wave files, based on user input.
I want to be able to stream those wave files online(not necessarily as wave files, they can be converted on the fly to mp3 or whatever). Preferably through a embedded flash streamer, but a html5 version would be good too.
The files are generally small, around 5 seconds long,...
How to live stream videos from iPhone to server like Ustream or Qik? I know there's something called Http Live Streaming from Apple, but most resources I found only talks about streaming videos from server to iPhone.
Is Apple's Http Living Streaming something I should use? Or something else? Thanks.
...
Hi
I searching for fast and safe way to apply Regular Expressions on Streams.
I found some examples over the internet that talking about converting each buffer to String and then apply the Regex on the string.
This approach have two problems:
Performance: converting to strings and GC'ing the strings is waste of time and CPU and sure...
Hi,
I'm looking for the best way to stream live data over the http protocol with java.
I'm currently using HttpURLConnection to receive json feeds, I would like to know if it can be used to stream feeds too.
...
Is it possible to stream realtime in a dht network like kademlia?
...
I'm about to start a mapreduce project which will run on AWS and I am presented with a choice, to either use Java or C++.
I understand that writing the project in Java would make more functionality available to me, however C++ could pull it off too, through Hadoop Streaming.
Mind you, I have little background in either language. A simi...
How can I embed any type of video onto a webpage, youtube seems to be able to upload any type of video and I'd like to know if I can do that too without huge amounts of resources and money (the website would be very small with definitely under 100 member, most likely under 50)
Is there a player that plays all formats, or would I have t...
Just looking at various ways of ftp'ing a file in c#.
I noticed some examples do:
streamReader.ReadToEnd()
then convert to bytes, then send the file in one go.
while others do a:
while (contentLength != 0)
stream.write(buff, 0, contentLength);
contentLength = fileStream.Read(buff, 0, buffLength);
Is sending the file 2048 a...
We are investigating the use of the Win32 streaming API to pull out files stored with the FILESTREAM capabilities in SQL 08. If a web application, sitting on the public side of the firewall uses the streaming API to pull back a file, what ports must be opened to make this happen?
Also, are there any NTFS file/directory permission issue...
We're streaming a CSV file from a web service. It appears that we're losing the new line characters when streaming - the client gets the file all on a single line. Any idea what we're doing wrong?
Code:
public static void writeFile(OutputStream out, File file) throws IOException {
BufferedReader input = new BufferedReader(new Fi...
Browsers render content after "enough" data has been received or once data stops flowing in (Content Length reached, for example).
I want to slowly stream data to the browser; to do this, I have to work around this data caching.
For example, instead of sending 40 bytes of JavaScript, I have to send the 40 bytes of JS followed by about...
Is there a library written in .NET that allows me to read a video frame by frame?
Sample usage could be as follows:
Video vid = Video.Open("test.avi");
foreach (Bitmap bmp in vid.Frames)
PictureBox1.Picture = bmp;
...
Hello,
Is there a way to cancel a netstream publish from flex to a flash media server?
The issue is I have code where I can Start/Stop a recording to my Flash media server. However in my front end I have a cancel button which allows the user to cancel the current recording and all this code essentially does it close the netstream. ...
Usually, flash streaming is done by capturing webcam video/audio and streaming using NetConnection and other objects to servers like FMS,Red5,Wowza etc.
I haven't found any example on how to create your own stream of images and stream as a video to the server.
I know it would be possible to convert the image to bytes and send via Share...
Hi!
I’m trying to set up a WcfService with the use of NetTcpBinding. I use Transfer mode Streamed since I will transfer large files. I need to use Session, and I have read that NetTcpBinding supports this, but when I turn it on like:
SessionMode=SessionMode.Required
I get the error:
System.InvalidOperationException: Contract requir...