HTTP server push (also known as HTTP streaming) is a mechanism for sending data from a web server to a web browser.
1
vote
0answers
11 views
AVPlayer seekToTime: doesn't use buffer
I am developing an application for playing video using HTTP Live Streaming technology.
For this I use AVPlayer which init as follows:
[[AVPlayer alloc] initWithURL:[NSURL URLWithString:VIDEO_URL]];
...
-1
votes
1answer
16 views
Http Streaming Server [closed]
I want to create an HTTP video streaming model. I am using Air PlayIT to utilize as streaming server.
Using flow player setting the clip configuration as:
clip {
url: 'xxx.xxx.xx.x:xxxxx',
...
0
votes
2answers
30 views
How to control chunks in jetty?
I'm writing HTTP webservice that may take quite long to produce results. I use embedded Jetty 8.1.5 and JAX-RS (Apache CXF)
I decided to go with some kind of control protocol: when new request comes, ...
2
votes
0answers
26 views
Use Django 1.5 StreamingHttpResponse to deliver reportlab pdf
just wondered if anyone have done pdf generation using reportlab and the new StreamingHttpResponse objects that are supported in Django 1.5;
...
0
votes
0answers
32 views
FFMpeg receives single connection with multiple bitrates?
I'm trying to use ffmpeg to serve hls streaming, as source of the streaming I'm using FMLE to output multiple bitrate by RTMP.
I know that we can output several bitrates/sizes, as the example bellow, ...
0
votes
0answers
23 views
How can I capture the bytes being streamed in httpClient via the HttpRequestInterceptor?
I am trying to intercept the byes that are being streamed to a servlet via httpClient. I need to do some other processing on the bytes and I would like to do it one time (when it is being streamed). ...
0
votes
0answers
74 views
Increase video buffer for HLS (Apple HTTP Live Stream), possible?
We're using Wowza 3.5 in our server to stream videos, and JW Player for the player.
The streaming of videos are working fine when viewed in iPhone and iPad.
What we are trying to do now is, when a ...
1
vote
1answer
56 views
Catching connection issues (and network I/O issues) in java BufferedReader?
Note: expressed in Scala. Using a BufferedReader to process a gzipped HTTP stream and iterating through each line to read the incoming data. Problem is that if there is ever a reset connection due to ...
0
votes
0answers
113 views
How does HTTP Dynamic Streaming locate f4f files?
As far as I know, hds client can locate f4m file at first, but how to locate f4f file? You know , f4f file in important and has more fragments of content.
I have used File Packager do one test with ...
0
votes
0answers
30 views
iOS HTTP streaming playback failure
I have an HTTP video stream that has the video layer encoded in H.264 MPEG 4 and audio encoded in Mpeg AAC 48000 128 kbps.
When I try to play this stream in iOS, there's only audio and no video.
VLC ...
0
votes
0answers
45 views
HTTP Streaming with node.js (one way)
I'm learning Node.js at the moment, I want to create a server where multiple clients can connect and receive a stream of live data, data is the same for each client. For this I'm using HTTP and not ...
0
votes
0answers
115 views
MPMoviePlayerViewController iOS 4.3 can't stream m3u8 file
I'm performing HTTP Streaming using MPMoviePlayerViewController, the url is a playlist file ends with .m3u8 type. It works fine with iOS 5.0 and greater versions, but when I am trying to play in iOS ...
6
votes
3answers
204 views
XHR streaming closes connection by design?
I was reading this article: http://blog.pusher.com/what-came-before-websockets/, and the following text gets my attention:
XHR Streaming worked in all browsers the responseText of the
...
1
vote
0answers
126 views
Sending a model object and a binary stream in one multipart response
I´m currently recovering from a change in the company network configuration, which assassinated the file transfer in my document management application when users are connected via VPN. The ...
0
votes
0answers
89 views
MPMoviePlayerController seeking to beginning weird behavior?
I have MPMoviePlayerController-obj that play a hls stream from my video server. Segment duration is set to 3 seconds.
Because of the stream's video content is transcode on the fly so when user seek ...
0
votes
1answer
65 views
Is there a way to clear XDomainRequest.responseText in IE8
I'm implementing server push solution.
Is there a way to clear XDomainRequest.responseText of IE8, since it gets filled with the every response chunk?
(to get same effect as in Firefox ...
4
votes
3answers
249 views
Streamed HTTP with GZIP being buffered by StreamReader?
Struggling to find anyone experiencing a similar issue or anything similar.
I'm currently consuming a stream over http (json) which has a GZip requirement, and I am experiencing a delay from when the ...
0
votes
0answers
78 views
http cam stream on ios using ajax with authentication
I have looked around for a solution to stream live video stream from user's webcam to viewers on IOS devices over the device browser with authentication and unexposed stream url source. I am using ...
0
votes
1answer
290 views
CISCO 2500 IPC streaming in Windows Phone 8
I am developing a WP8 app, which needs to implement the real-time video streaming feature. Thus far, I have followed these steps, to configure the Silverlight video player in my app. I have Cisco 2500 ...
0
votes
0answers
41 views
Display Http Streaming COntent in Browser
I have a requirement , where i need to display the Streaming Content (Stock Symbols ) to the JSP Page .
I am thinking of what could be the best approach in this case
I have a Servlet as shown
...
1
vote
0answers
86 views
Reading Twitter Stream Using Twitter APIs
I'm creating a service using c# to read stream of tweets (TimeLine) on a specific hash-tag (ex. #ReformJO), so after reading twitter APIs documentations, the most efficient way I came with is by using ...
0
votes
0answers
40 views
Dos HTTP adaptive streaming support frame-accurate seeking?
Do technologies like HLS, HDS or Smooth Streaming support frame-accurate seeking or is it restricted to the nearest key frames?
Thx
-5
votes
1answer
198 views
Decrypting AES encrpted .ts files [closed]
I want to simply decrypt the encrypted ts files using AES 128 bit encryption in Android.
I know that If I play m3u8 then Player can take care of this but I want direct access of ts and want to play ...
0
votes
2answers
114 views
How HTTP streaming is different from Comet for server push?
I want to implement Server Push in my Java web application.
HTTP Streaming is that I can open a connection with the client and its always open and sends data whenever server gets it.
1. But how is ...
1
vote
0answers
377 views
HTTP Pseudostreaming using PHP w/ ffmpeg to JW Player
We're trying to do HTTP Pseudostreaming from a PHP source that's outputting the results from ffmpeg.
Below is the code we're using to output the stream. If I access this URL directly (../stream.php) ...
1
vote
0answers
141 views
Write live stream to response in WCF
I couldn't find an exact example of what I'm looking for.
I have a REST/WCF endpoint that takes in a Stream and returns a Stream. I am able to do "live" streaming of the request, by that I mean that ...
3
votes
1answer
106 views
Consuming an HTTP stream on google appengine
I am trying to consume an http stream using GAE.
the logical flow is
{source1..N} --> [GAE] --> browser reporting & display
As I understand it, an HTTP stream will run forever, so a simple ...
2
votes
0answers
117 views
switch between video streaming
I am struggling with switching between multiple live streams. For example, I have five live streaming servers streaming(HTTP or RTSP) and I want to put some broker between those (five) streaming ...
1
vote
1answer
49 views
Is it possible to play HTTP Live video on a browser? 2012
I was wondering if it is possible to stream to the user HTTP Live video. NOT a video file.
LIVE video. Using any technology. Flash or HTML5. I did some research and most of the players I found support ...
4
votes
1answer
253 views
Http streaming using red5
I wanted to perform http streaming from red5 server so as to use it to broadcast for Iphone. Can u guys suggest a way to do it. Is there a way to play rtmp stream from red5 in Iphone. Any help is ...
0
votes
0answers
46 views
http streaming TO server FROM client (mobile device)
I know it's possible to stream content from a server to a web browser. I'm curious if there is a method to allow the same in reverse; and once a page is requested/connection established to then try ...
0
votes
1answer
79 views
What are some good tools / techniques for testing HTTP PUSH (HTTP streaming)
What are some good tools / techniques for testing HTTP push? (HTTP streaming)
I require a tool to test a REST web service that utilizes HTTP PUSH (HTTP streaming). The tool needs the ability to make ...
0
votes
0answers
141 views
Servers _specialized_ for HTTP pseudostreaming (MP4/M4A) [closed]
Are there any free or open source HTTP server software that is specialized in pseudostreaming MP4/M4A; if any exist?
Currently I am using Nginx with the MP4 module but I am not getting satisfactory ...
0
votes
1answer
244 views
Streaming app.net's public stream with node js
I'm new to this streaming/http long living connection stuff.
This is what I got so far:
var accessToken = require('./config.js').accessToken
, https = require('https')
;
var req = ...
13
votes
4answers
1k views
My Understanding of HTTP Polling, Long Polling, HTTP Streaming and WebSockets
I have read many posts on SO and the web regarding the keywords in my question title and learned a lot from them. Some of the questions I read are related to specific implementation challenges while ...
3
votes
1answer
806 views
How to stream an HTTP file upload without the Content-Length header?
Is it possible to upload a file to an apache php server without including the content-length header ?
I am trying to stream a file that I am creating on the fly as a file upload. When I don't use the ...
0
votes
1answer
1k views
HTML5 video from MVC3 action not working correctly
I'm serving video from an MVC3 site, with the controller action that returns the video returning a FilePathResult, and when trying to play back in the browser, I'm seeing some frustrating issues, ...
1
vote
0answers
136 views
Playing a video via HTTP streaming inside an app
I need to play a video inside my app. The video will reside on a server. I have seen in some places if you do a server interaction to view a video it should be supported with HTTP streaming. Has ...
0
votes
0answers
254 views
how to get merged video in VLC
VLC media player 2.0.2 Twoflower (revision 2.0.1-453-g40d9fef)
vlc file-in-1.avi file-in-2.avi --sout-keep --sout-all vlc://quit ...
0
votes
0answers
77 views
Example of http psudo streaming package like JFLVStream or any other package to play flv videos in servlet
I would like to play .flv or mp4 videos in servlet . this servelt will be called from webView of android. i would like to play the video just like you tube does.
Please provide the code example so ...
1
vote
2answers
1k views
streaming video file using vlcj
I am trying to play a video file ..but getting few errors ,
not sure how to solve these errors , can anybody help me out please, thanks in advance
`Streaming 'C:\Desktop\movie.mp4' to ...
0
votes
0answers
412 views
JWPlayer you can not seek video using http stream
I have a problem with my asp.net video site, I want to prevent downloader catch link so I use a http stream read and response video file for JWplayer. It work fine but user can't seek video, when seek ...
6
votes
2answers
696 views
Optimization: Dumping JSON from a Streaming API to Mongo
Background:
I have a python module set up to grab JSON objects from a streaming API and store them (bulk insert of 25 at a time) in MongoDB using pymongo. For comparison, I also have a bash command to ...
2
votes
0answers
440 views
http streaming using vlc, apache web server
I was wondering if you could help me in the following scenario.
Currently I am receiving a udp stream in H.264 format and would like to use vlc to transcode it to a mobile device format and turn it ...
0
votes
0answers
245 views
MPMoviePlayerController won't load an HTTP audio stream
I'm trying to use an MPMoviePlayerController on iOS to play back an audio stream over HTTP.
I've imported MediaPlayer.framework and used the code from MPMoviePlayerController's documentation, but I ...
0
votes
1answer
299 views
How to check for a local Drawable, and lacking one, how to make one from a remote resource? [closed]
I need to take a given drawable name from a cloud DB and check to see if a matching Drawable exists in the local package. If it doesn't, I need to create a local copy of the image for use so I'm not ...
1
vote
0answers
204 views
OSB 11g Streaming with WCF doesn't work
I'm trying to use the OSB 11g to stream large data to .NET WCF.
I use .NET client and server to check this feature.
I created a proxy which make a service callout to the WCF on the .NET server
but ...
-1
votes
1answer
2k views
Android video live streaming
I am in big trouble, I could not play m3u8 file in my android videoview but it is so easy in iPhone. I googled and visited several forums and all are saying that it is not possible. But I tried ...
1
vote
2answers
197 views
What is the best way to handle streaming JS content in browser?
Imagine we have a server side application that generates streaming content full of JavaScript commands. The easiest way for me to show the example application is to use Python/Flask, however you can ...
4
votes
2answers
142 views
ColdFusion and Streaming APIs… (i.e. Twitter)
Has anyone had any luck using ColdFusion as a way to collect data via streaming APIs?
i.e. - https://dev.twitter.com/docs/streaming-api
I know the best option is to use an app that literally sits ...
