streaming

HTTP Live Streaming using Apple mediastreamsegmenter

Hello All I would like to implement HTTP live streaming for iPhone/iPad. I am following the apple standards and tools for same. As of now my video source is one giving me live video from rtsp://123.123.123.123:554/mpeg4 (sample IP). but as HTTP live streaming and mediastreamsegmenter required to pass source over UDP network so i have t...

Variable bitrate streaming with Amazon Cloudfront

Hey there - does anyone know what I need to do to set up variable bit-rate streaming with Amazon Cloudfront. I am not using JWPlayer but have built my own flash player. What calls to I need to make to Cloudfront and how do I make them? Or is it all handled on the client side? I am using FMS 3.5. Any help greatly appreciated. ...

iPhone stream audio to browser via Internet

I have the following scenario: My iPhone app receives a stream audio via Bluetooth in "real-time" Then, my iPhone app "forwards" this stream audio to a browser (Firefox) via Internet in "real-time" I can do #1 with Core Audio Remote IO. But I am not sure how to do the #2. It seems to be similar to a Skype capability. What is the b...

Streaming HTTPs using Ruby

I wanted to open a https connection and keep it unclosed. I will be getting an xml document, which I will be saving in a file as it gets streamed. I tried net/https, but I was able to use Net::HTTP::Get.new() method, which stops after getting one response. My primary use is to save the xml that I am downloading into chunks of file. A...

Best Overall FFMPEG FLV Quality

First of all, FFMPEG has the worst documentation of all time... secondly, the syntax is so trivial that it's hard to understand what some lines are doing. What I'm looking to accomplish is the best quality FLV with the lowest file size. After all, isn't that everyone's goal? These video will be streamed if that makes a difference. Perh...

Stream to file while returning a WCF stream?

I have a WCF service that streams large files (100MB+) from a remote FTP server. [ServiceContract] public interface IStreamService { [OperationContract] Stream GetDataFromFtp(); } public class StreamService : IStreamService { public Stream GetDataFromFtp() { Stream ftpStream = Retr(...); return ftpStream...

Packet Loss in Darwin Streaming Server

Hi. I am using Darwin Streaming Server (DSS) to generate rtp streams. The DSS interface configured on the server, however shows some Packet Loss which, to a certain extent, is also visible on the client side while playing the video stream. I would like to know whether this loss signifies the packets lost while traveling over the netwo...

.NET Video Audio Chat

i am a beginner in terms of application development. so far i have developed a peer to peer game of BattleShips in C# and a peer to peer game of Connect 4 in Java. for my next project i have decided to go multimedia. i would like to implement a peer to peer chat program that uses Audio/Video streaming to each client as well as text ch...

How to convert System.Data.Linq.Binary to a Stream?

Thought I could use the BinaryWriter but haven't had any luck. Suggestions? ...

how to play an asx file in flash

i need to steam an .ask file form an remote site is it is possible to do in flash ...... .. ...

Mixing videos in flash

Hello is it possible to mix videos and webcamera streams in flash to send them to flash media server as one stream? Forexample put two webcamera streams side-by side and send them to server as one steam. Thank you. ...

how to stream through mms://

There are some posts about this, but so far, i haven't seen any good answer. Is there a way i can stream audio from mms:// uris with Android?. MediaPlayer seems not to like these streams. Also changing mms:// with http or rtsp doesn't work either. Did someone find a workaround to this?. Thanks! ...

VB.net Downloading into memory and running

With my new client which is linked with an IP Board forum. Once they log into the client the people who donated or bought VIP on my forums will have access to all my applications I have made. It will most likely show a list of all my applications in a listbox/listview. I currently do not have the code to be able to do this nor do I know...

Live streaming h.264 with FMLE 3.1 and FMS 3 not showing video

I'm using FMLE 3.1 to stream live video encoded with H.264 format with FMS 3 and Flash player 10 + AS 3 to connect to the stream. When I connect to the stream, just the audio is played. I'm able even to get the metadata information about the video, but I just receive the audio. I already tried some stuff like "Flash 10 won't play ...

iPhone HTTP live streaming

Have been researching the best way to tap into a live stream already being broadcast by S4C here - mms://media7.unique-media.com/s4c_uk_live (will open in something like quicktime) Need to know best practices to get this streamed to iPhone in development. Any pointers? ...

Live streaming with silverlight 4

Greeting, Is there a live streaming server for silverlight 4 from Microsoft like Flash Media Server from Adobe that support live streaming for Flash??? I know that there are many open source live streaming server that support silverlight 4 but I did not find some one good as Flash Media Server which support Flash!!! please tell me if M...

Can I load mysql data trunk by trunk in java?

Hi all, Currently I am using statement.executeQuery(qStr) in java to select a large amount of data from mysql. Unfortunatly, java keeps running out of memory at the statement.executeQuery(qStr) statement with exception java.lang.OutOfMemoryError: Java heap space. I am wondering if there is a method to stream load data from mysql. So that...

Partitioner without Mapper

I have, essentially a series of reduce jobs I am running on a lot of data using Hadoop Streaming. I am not really using my Mappers for anything, so am just using Identity Mappers, but I do need the default partitioner hadoop is giving me to group my data in a different manner for each step of my MR job.. I don't know enough the system we...

Streaming audio to a "speaker server" in linux

Is there a way to stream all audio from a laptop (which has low quality speakers) to a desktop with much better speakers in linux (on both computers)? I think that this would have to be a kernel driver, since it would have to fit under the alsa system to make it application transparent. Thanks, Andrew ...

AVPlayer vs. AVAudioPlayer

The documentation for AVPlayer states the following: [The] player works equally well with local and remote media files However, the documentation for AVAudioPlayer states the following: Apple recommends that you use this class for audio playback unless you are playing audio captured from a network stream For the work I am doi...