live-streaming

How to broadcast live video from iPhone [closed]

谁说我不能喝 提交于 2019-12-02 17:43:31
I want to develop iPhone application to broadcast live video to web. Ustream has application that broadcast from iPhone to web. Any suggestion? Which API I should use? Which Media media sever should I use? Thanks, Adil For live streaming we have to use HTTP streaming or RTMP Streaming with wowza MEdia server here we have to give the host address with port number (by default port number is 1935). here is the some useful link i have used in my application http://www.themidnightcoders.com/fileadmin/docs/ios/index.html?asyncall.htm you can also find demo apps from github here is the link https:/

Live Video Stream on a Node.js Server

烂漫一生 提交于 2019-12-02 17:09:47
I have been researching this a lot but am frustrated as I feel like the solution should be simple though I know wont be. Ideally i'd just want to use node to host the server, webrtc getusermedia to get the live stream on the local client and use something like socket.io to send the stream to the server and then the server would broadcast the stream to the remote client; as if it was a simple messaging chat app. Just thinking about this some more it seems as an approach this simple would be impossible because a live video requires continuous large amounts of data to be sent, which does not

Create a Live Streaming APP for Android [closed]

天大地大妈咪最大 提交于 2019-12-02 16:48:08
I am having quite a trouble lately. I want to develop an Android App with a livestreaming embeded, but I just don't know how to start. I tried using an Webview with the livestreaming tag embeded, but it didn't work (most likely the stream is provided via Flash). I also tried to use a VideoView component but it also didn't work. I know it's possible because those publishers have their own APP, but the format we are provided is usually Flash. Not a mobile friendly format. Can someone, please, show me any idea on how to start or if there is some workaround? Thanks in advance! EDIT: What I would

MediaPlayer() audio stuttering(android)

左心房为你撑大大i 提交于 2019-12-02 10:00:32
I am using the MediaPlayer function to stream a live audio stream from a remote server, in my android app. But the audio is choppy and stuttering. The problem is not my internet as the feed plays perfectly when I play it on the computer. What could be the problem?*Note: the streams are live. This is the code I'm using: MediaPlayer mp = new MediaPlayer(); try{ mp.setDataSource("http://radiotool:80/feed 342.mp3");//hardcoded for testing purposes mp.prepare(); mp.start(); } catch(Exception e) {Log.d("Error came up man",", check the internet connection and stuff.."); Brad The stream you are

I get only one image while transferring in a loop over a socket in java

独自空忆成欢 提交于 2019-12-02 07:54:16
问题 What basically i want to do is implement live video streaming in java. i.e grab video infront of webcam of one computer and send that video to other computer in real time This is my server side code where i grab images in a loop using opencv libraries and and then save it to a file. I then open it using a Filestream and send it to other network and below is my client side code Error: I get only one image on client side i.e the first captured image from webcam What is the workaround to get all

How can I play YouTube live streams with the YouTube Android Player API?

混江龙づ霸主 提交于 2019-12-02 04:30:37
I have managed to play YouTube videos using YouTubePlayer. However, when I try to play live streams using YouTubePlayer, nothing happens. Is playing live streams supported by the API? If so, how do I do it? There is no difference in playing normal YouTube videos and live videos.I was unable to play live videos on android version 4.1. however on version 4.2.2, live videos played successfully. Latest version of Official Youtube app must be installed in order to use API. Code: public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); YouTubePlayerView youTubeView =

Playing RTSP stream in VLC player

一世执手 提交于 2019-12-01 21:16:30
I am trying to make a simple rtsp streaming server in java. The server is able to stream the video properly to the custom written player. The problem I that I am not able to play the same stream in vlc media player. When I start the vlc media player and enter the streaming details, my server is displaying the following request made by vlc: OPTIONS rtsp://192.168.2.8:8210/movie.3gp RTSP/1.0 CSeq: 1 User-Agent: VLC media player (LIVE555 Streaming Media v2010.01.07) In response, I am sending the following to the vlc player: RTSP/1.0 200 OK Supported: play.basic, con.persistent CSeq: 1 Server:

Grabbing the current viewer count for youtube live streams

℡╲_俬逩灬. 提交于 2019-12-01 12:59:43
问题 I am looking to source the current stream viewers from the Youtube API v2 for live streams. This information seems to be available on Youtube live streams ("102 Watching Now") both on the main page and after you click on a stream to view. http://www.youtube.com/watch?v=oNfdKebcrOI&feature=lb Just below the video on the right. For the time being I am using: https://gdata.youtube.com/feeds/api/charts/live/events/live_now?v=2&alt=json&inline=true&max-results=20&start-index=1 And I do not see

Stream live video to Facebook from iOS

百般思念 提交于 2019-12-01 11:24:23
I’m using Live video API, i want to show privacy (Public, Friends, only me) before streaming live video on Facebook from iOS app. 1 Does FBSDKShareKit supports live video content ? 2 Can i retrieve friend list and display privacy in custom views ? I've made the facebook-live-ios Swift library last week that provides you an Facebook-SDK-like interface for configuring, starting and stopping Facebook Live sessions in your own iOS app. Give it a try! 来源: https://stackoverflow.com/questions/38469713/stream-live-video-to-facebook-from-ios

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

亡梦爱人 提交于 2019-12-01 09:43:01
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) { //perform action } else { //perform other action } I am using the plugin found at http://james.padolsey