live-streaming

Can someone help me with using livestream's api to make a cross domain xml request?

情到浓时终转凉″ 提交于 2019-12-01 08:12:54
问题 I'm trying to use livestream's extremely helpful mobile api found at http://www.livestream.com/userguide/?title=Mobile_API#Requesting_a_mobile_stream to make an xml request. All I am interested in is the isLive response value. I am trying to use an ajax request like this $.ajax({ type: "GET", url: "http://xproshowcasex.channel-api.livestream-api.com/2.0/getstream", datatype: "xml", success: function(xml){ //this is where I need help. This is what I would like to happen if (isLive == true) { /

Streaming using GStreamer

ぐ巨炮叔叔 提交于 2019-12-01 02:38:23
I have got one HD video "ed_hd.avi" on System#1. Would like to stream it over network and play the content from System#2. I am using GStreamer on Ubuntu 11.04, tried a lot on this. Variety of errors makes this objective difficult to diagnose. Will be thankful for getting a working command for the System#1-end and System#2-end. What I have tried is as follows: System #1: gst-launch filesrc location=ed_hd.avi ! decodedin ! x263enc ! video/x-h264 ! rtph264pay ! udpsink host=127.0.0.1 port=5000 System #2: gst-launch udpsrc port=5000 ! rtph264depay ! decodebin ! xvimagesink Objective is : Convert

Live transcoding and streaming of MP4 works in Android but fails in Flash player with NetStream.Play.FileStructureInvalid error

一笑奈何 提交于 2019-12-01 00:07:43
Recently I had a task to use ffmpeg as a transcoding as well a streaming tool. The task was to convert the file from a given format to MP4 and immediately stream it, by capturing it from stdout. So far so good. The streaming works well with the native player of android tabs as well as the VLC player. The issue is with the flash player. It gives the following error: NetStream.Play.FileStructureInvalid : Adobe Flash cannot import files that have invalid file structures. ffmpeg flags used are $ ffmpeg -loglevel quiet -i somefile.avi -vbsf h264_mp4toannexb -vcodec libx264 \ -acodec aac -f MP4

Live Stream video using Android with pure java

家住魔仙堡 提交于 2019-11-30 23:39:23
i am trying to do a live streaming app in android, my question is what is the difference between using http and rtsp is there any way to only java code to do this, i refer so many projects already done are using java with other language combination, is there any way to stream in efficient way using java only RTSP means Real Time Streaming Protocol , is a protocol specifically designed for streaming purpose, with RTSP you can control absolute positioning within the media stream, recording and possibly device control etc RTSP introduces a number of new methods and has a different protocol

Live Stream video using Android with pure java

不羁岁月 提交于 2019-11-30 18:14:24
问题 i am trying to do a live streaming app in android, my question is what is the difference between using http and rtsp is there any way to only java code to do this, i refer so many projects already done are using java with other language combination, is there any way to stream in efficient way using java only 回答1: RTSP means Real Time Streaming Protocol , is a protocol specifically designed for streaming purpose, with RTSP you can control absolute positioning within the media stream, recording

Embedding a live RTSP stream of H.264 video in a webpage

你。 提交于 2019-11-30 11:49:59
问题 I have a server providing live H.264 video over a network via RTSP (rtsp://...), and I've been trying to find a way to display the stream to users in their browser (on at least Windows and OS X - Linux is a bonus). I currently have VLC Player embedded and have it working in both IE9 and Mozilla Firefox 12.0, but it would be ideal if, at most, the user just has to install a plugin for their browser or something similar (as opposed to a whole program). I am able to use Open Source solutions,

How to add a MOOV atom in a mp4 video file

ε祈祈猫儿з 提交于 2019-11-30 03:45:55
I am working on live device to server streaming in android. I am able to send data in bytes on server but when i play that file during recording on server VLC say that MOOV atom not found. After a lot of workaround i found that MOOV atom of a mp4 file generates in the end. But i have to play that file on server while recording means live. I go through the source code of SPYDROID and SIPDROID but non of them is working. I tried to add move atom on serverside using FFMPEG but didn't get any success. Any one have any idea how can i achieve this. Thanx in advance. You got a problem. The 'moov' box

How can I play Apple HLS live stream using html5 video tag

你。 提交于 2019-11-29 23:02:00
<video id="live" autoplay controls> <source src="http://[WOWZA-IP]:1935/Live/mp4:[LIVESTREAMNAME]/playlist.m3u8" type="video/mp4" /> </video> I am trying to play h264 encoded live stream using html5 video tag. Live stream is broadcasted by wowza media server and when visiting src link I get a valid playlist file. When trying to play the stream on android chrome browser, player does nothing and shows black screen. Is this html5 video tag related issue or maybe broadcaster? These are the formats you can play using html5 source tags. Think of a video format as a zip file which contains the

html5 audio livestreaming

断了今生、忘了曾经 提交于 2019-11-29 07:57:26
问题 I'm creating my own audio, without controls of the browser. <audio src="http://50.7.98.194:8081/~dl3/cgi-bin/dl.cgi/bqmu5mltxcqy43mxecgo4gnw743qr7fd7io22q5xj4/gl1mwvp6b326.mp3" id="audio"> </audio> I have these functions, called when clicked some buttons: function play() { audio.play(); } function play() { audio.pause } function stop() { audio.pause(); audio.src = audio.src; } But for now, I only can reproduce mp3 or ogg files, but not a live stream radio . I read about some plugins, but I

How to play rtmp live stream using videojs?

Deadly 提交于 2019-11-29 04:28:09
I'm using OBS to push live stream to my local rtmp server(node-rtsp-rtmp-server), and it works well with VLC media player. I just want to put it into a webpage and i found videojs. It didnt work and returns Specified “type”-attribute “rtmp/mp4” is not supported. it seems my rtmp server didnt reveive any requests from this webpage. So what i missed? here is my code: <head> <meta charset="utf-8"> <link href="./video-js-6.0.0/video-js.css" rel="stylesheet"> <script src="./video-js-6.0.0/video.js"></script> <script src="./video-js-6.0.0/videojs-flash.min.js"></script> <script> videojs.options