live-streaming

How to check whether LiveStream (Audio Only) is up on Wowza or not?

痴心易碎 提交于 2019-12-11 00:06:53
问题 I am streaming from Wowza to Mobile (Android) . I am using Vitamio streaming library. The actual flow is like, Wowza don't have live stream up, when my app hits the Wowza, but after a while Wowza gets live stream up. Now I again want to hit the Wowza to check whether live stream up or not. All I want is, my app should hit the Wowza in every 5 sec to check the stream up or not. 回答1: It sounds like you just need to query your Wowza server to see if your stream is active or not. If so, then you

HTTP Live Streaming MPEG TS segment

烂漫一生 提交于 2019-12-10 17:15:42
问题 I'm using FFMPEG and a free segmenter (Carson Mcdonald's) to produce my ts segments which i later save to a web server and play with Quicktime by playing the .m3u8 If I have segments 1,2,3,4 and another stream with segments 1,2,3,4 and would like to interleave them what should I do. If i do as follows: 1,2, other stream's 3, 4 It works fine. However, If i want to do as follows: 1,2, other stream's 4, 4 it doesn't work. In other words the segment to be added must have the same number as the

Embed RTMP live streaming link to browser

笑着哭i 提交于 2019-12-10 15:54:58
问题 Anyone knows how to embed rtmp link to be viewed in a browser? I already tried Moeya but it is still not running. Anyone knows other solution to how can I embed this to a browser? thanks. 回答1: below is a sample code, hope it helps. <embed width="768" height="456" src="http://www.focusonthefamily.com/family/JWPlayer/mediaplayer.swf" flashvars="allowfullscreen=true&allowscriptaccess=always&autostart=true&shownavigation=true&enablejs=true&volume=50&file=20100809-wait-no-more-v1.mp4&streamer=rtmp

Web Audio API Stream: why isn't dataArray changing?

♀尐吖头ヾ 提交于 2019-12-10 12:08:20
问题 EDIT 2: solved. See answer below. EDIT 1: I changed my code a little, added a gain node, moved a function. I also found that IF I use the microphone, it will work. Still doesn't work with usb audio input. Any idea? This is my current code: window.AudioContext = window.AudioContext || window.webkitAudioContext; window.onload = function(){ var audioContext = new AudioContext(); var analyser = audioContext.createAnalyser(); var gainNode = audioContext.createGain(); navigator.mediaDevices

Application for Live video streaming using red5 server

左心房为你撑大大i 提交于 2019-12-10 11:47:54
问题 I am new to flex & first time using red5 server . can someone help me in streaming a live cam using red5 server on a web page. Also how to install application on server running on ubuntu 11.04. 回答1: For streaming Live web cam on Web page. First create a flash which will display the web cam video on its stage. Then embed the flash onto a div in the web page. Use the code for showing the video on the screen and simultaneously publishing it to red5 server _camera = Camera.getCamera(); _camera

How can I read a live webstream in java using xuggle? (I can do it in ffmpeg, just not xuggle)

久未见 提交于 2019-12-10 03:32:01
问题 So if I run: ffmpeg -t 10 -re -i "rtmp://170.93.143.150/rtplive/ app=rtplive/ playpath=e000990f025f0075004d823633235daa swfUrl=http://www.chart.state.md.us/video/mediaplayer/player.swf pageUrl=http://www.chart.state.md.us/video/video.asp?feed=e000990f025f0075004d823633235daa stop=5000 flashver=`LNX 11,2,202,262` live=true" test.flv -report It gives me a 5 second snapsnot of video from that webstream that gets put into test.flv. Now I would like to do the same thing in java using xuggle except

Android Media Player RTSP

喜欢而已 提交于 2019-12-09 06:49:39
问题 I'm trying to watch RTSP streaming on Android device. But if the server set password for the streaming my Android cannot play it. If without password it's ok. Here is my codes. public class VideoFragment extends Fragment implements View.OnClickListener, SurfaceHolder.Callback, MediaPlayer.OnPreparedListener { VideoView m_videoView; SurfaceView m_surfaceView; SurfaceHolder m_surfaceHolder; MediaPlayer m_mediaPlayer; SharedPreferences m_sharedPref; Boolean m_videoStarted; public VideoFragment()

What is MediaPlayer.OnInfoListener “code 703”?

本小妞迷上赌 提交于 2019-12-08 19:20:51
问题 I am running a stream via MediaPlayer . When buffering starts, the code 701 is thrown. When buffering ends, the code 702 is thrown. All codes are found on this link. However, MediaPlayer.OnInfoListener first throws the code 703, which I cannot find anywhere. Here is the code and debug output. mPlayer.setOnInfoListener(new MediaPlayer.OnInfoListener() { @Override public boolean onInfo(MediaPlayer mediaPlayer, int i, int i2) { Log.d(TAG, "MediaPlayer.OnInfoListener: " + i); return false; } });

Read stream from Facebook Live Videos

元气小坏坏 提交于 2019-12-08 16:44:33
I would like create a server to create subtitles for live videos on Facebook. I use Google Speech to convert sound to text. However, in order to do that, I need to read the facebook live streams. Using Facebook Live API, with me/live_videos , I get the following response: { "status": "LIVE", "stream_url": "rtmp://rtmp-api.facebook.com:80/rtmp/{id}", "secure_stream_url": "rtmps://rtmp-api.facebook.com:443/rtmp/{id}, "embed_html": "<iframe src=\"https://www.facebook.com/video/embed?video_id={video_id}\" width=\"400\" height=\"400\" frameborder=\"0\"></iframe>", "id": "{id}" }, How can I read the

Where is cam in YouTube live streaming API?

佐手、 提交于 2019-12-08 10:30:15
问题 I am not able to load my video live streaming on YouTube. I have gone through the YouTube documentation, tried searching on Google but no result to get success. I have a complete running PHP example code to stream video live on YouTube and video is broadcasting but message is Please stand by, Starting Soon I am using this code <?php // Call set_include_path() as needed to point to your client library. require_once 'Google/Service/Resource.php'; require_once 'Google/Service.php'; require_once