I've seen plenty of info about how to stream video from the server to an android device, but not much about the other way, ala Qik. Could someone point me in the right direction here, or give me some advice on how to approach this?
...
Does anyone know how to stream Ogg files without fully downloading them first over a Socket(in byte[] format).
I am trying to create a music streaming application and I managed to do it with MP3's but I understand there's licensing issues invovled after certain limit hence why I want to use OGG(Vorbis). I maanged to find this C# Vorbis ...
Hello,
HTML5 draft contains an API called EventSource to stream data (notifications) trough javascript using only one server call.
Looking it up, I found an exemple on Opera Labs of the javascript part :
document.getElementsByTagName("event-source")[0]
.addEventListener("server-time", eventHandler, false);
function eventHan...
I want to design a web svc that will push out data as they arrive at the backend server. Something like a twitter streaming API. I want to use the .Net platform
The consumers can use json and javascript events to be notified when new stuff is in the pipe.
How can I design something like this?
...
I noticed few similar questions already, but didn't find exatly what I want.
I'm trying to do the following. Have a client and server Webcam application. Server application is on a PC with a webcam connected to it and it streams the webcam output. Client application connects to a Server and shows the webcam video.
What's the best and e...
I've wasted at least a half day of my company's time searching the Internet for an answer and I'm getting wrapped around the axle here. I can't figure out the difference between all the different technology choices (long polling, ajax streaming, comet, XMPP, etc.) and I can't get a simple hello world example working on my PC.
I am runn...
Hi,
I am developing a video streaming website, my problem is how do i limit users by time, like if they have credit balance for 3 hours of streaming, how to i stop or pause the streaming once the credit is used up.
Ideas anyone.
...
Hi guys,
I would like to know how I can open a Mp3 file from within a webview, basically a link that points to an MP3 file which would then open up the standard media player. Is this possible? I know it is because it works on the default webbrowser so I was wondering why I can't get it to work on a standard webview. Any help would be mu...
I have been unable to find any documentation on properly closing database connections in WCF service operations. I have a service that returns a streamed response through the following method.
public virtual Message GetData()
{
string sqlString = BuildSqlString();
SqlConnection conn = Utils.GetConnection();
SqlCommand cmd =...
Is it possible to stream videos from a bunch of video cameras or any device for that matter to iPhone if the devices conform to Bonjour.
My concern was if the devices host their services over a wifi, how will my Iphone app manage to read and understand data(or video feed in this case) from different kinds of devices.
I came across the...
Hello,
We are planning on building a pay per view (PPV) video solution but we have no idea from where to start. Here are the current givens:
it will be hosted on Linux
using PHP
Database: MySQL
And by PPV I mean:
- going to website, selecting a movie to watch/download
- going to payment portal and paying
- being now able to watc...
I have one file. but now need to read this file into a bytes array. In java or c++ it's very easy to do that. but not found how i can read in PHP.
...
I have a simple PHP script that will either serve up a streaming ASF file or not, depending on whether you're logged in and have access to the file. It basically does this:
<?php
header('Content-Type: video/x-ms-asf');
header('Content-Disposition: inline; filename="file.asf"');
readfile('file.asf');
?>
This already works fine in Fir...
I don't have a lot of experience with streams and buffers, but I'm having to do it for a project, and I'm stuck on an exception being thrown when the stream I'm reading is a multiple of the buffer size I've chosen. Let me show you:
My code starts by reading bufferSize (100, let's say) bytes from the stream:
numberOfBytesRead = DataRea...
Hi,
I am working on a App where video has to be displayed.All these video are in .flv format, Is there any mechanism by using that I can convert this video to .mov or .m4v (supported by iphone) on the fly, so that user can view those video on their iphone or ipod.
Thanks,
Ashish
...
I've been searching and searching and I haven't yet come up with a solution to host my own streaming audio player.
I'm looking for a way to host an internet radio player that connects to whatever streams I enter in and plays them. I'm not looking to play my MP3s or anything like that. I'm looking to play content from 181.fm or 1Club.fm,...
I have a web site that displays a column of flash videos. The page is w3c-valid.
The problem is that the page loads very slowly and sometimes crashes my web browser. Until the page is fully loaded, the videos are slow to respond and play. Is there a way to make these videos load their preview images only? What should I do to speed the p...
I know its possible for FFmpeg to render from the webcam to SWF and FLV. But the problem is the SWF file can only be read via AS2 and FLV seems to only be loading a static frame from my Flash Player.
Is there a way for FFmpeg to render a AVM3 SWF or a stream-able FLV?
...
Hello,
I write an (Java-) application that streams a video from one peer to another. I use a library that is able to produce and consume an RTP stream (Xuggler that is). I thought about using Red5 Media Server to relay the stream. What I need next is to send and my video stream.
The documentation I read so far always deals with recor...
Update There is no ready XML parser in Java community which can do NIO and XML parsing. This is the closest I found, and it's incomplete: http://wiki.fasterxml.com/AaltoHome
I have the following code:
InputStream input = ...;
XMLInputFactory xmlInputFactory = XMLInputFactory.newInstance();
XMLStreamReader streamReader = xmlInputFactor...