live-streaming

Play Live Video Stream On Website

六眼飞鱼酱① 提交于 2019-12-24 12:25:19
问题 I'am trying to make a website that only has a video player in it. I currently have a softrware that streams video in HLS through a url, if i open the url in iphone with some HLS Player i can see the video. What I'am trying to do is to publish the stream in all browsers(or some of them) with some video player I'v tried jwplayer, but it doesnt stream my site, i tried jplayer but it doesnt do live streamin. I basicly need a plyer that i can give it the url for example: http://someurl.com

Raspberry Pi ffmpeg video4linux2, v4l2 mmap no such device

江枫思渺然 提交于 2019-12-24 07:58:08
问题 On my Raspberry pi I've installed ffmpeg. At the begin I type uv4l --driver raspicam --auto-video_nr --width 640 --height 480 --encoding jpeg to run driver. Then I check if devoce0 is registered: ls -la /dev/video* and it returns video0 so it is registered. Then I type command to run server: ffmpeg -v verbose -r 5 -s 640x480 -f video4linux2 -i /dev/video0 http://localhost/webcam.ffm and the camera lights up for a while and then turns off and I get error like bellow: [video4linux2, v4l2] mmap:

Embed ustream live video in android app

蓝咒 提交于 2019-12-23 12:29:20
问题 Has anyone found a way to easily embed ustream live video within a android app? I have sent emails to the ustream support, but no response. I tried with webview and playerview but dint work. There is way available to do it iOS. here is the link How to Embed Ustream video into iOS Any help will be really appreciated. 回答1: Embed using WebView then enable JavaScript using webview.getSettings().setJavaScriptEnabled(true); 来源: https://stackoverflow.com/questions/12949755/embed-ustream-live-video

Read stream from Facebook Live Videos

可紊 提交于 2019-12-23 02:38:29
问题 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=

H264 RTP stream with gstreamer-1.0

孤街浪徒 提交于 2019-12-22 18:34:41
问题 I try to make a H264 RTP stream from a Raspberry Pi 3 with a camera module to a video tag. Using the following code to start the stream raspivid -t 0 -h 720 -w 1080 -fps 25 -hf -b 2000000 -o - | \ gst-launch-1.0 -v fdsrc \ ! h264parse \ ! rtph264pay \ ! gdppay \ ! udpsink host="192.168.0.11" port=5000 Then I provide a simple webpage with a video tag: <video id="videoTag" src="h264.sdp" autoplay> <p class="warning">Your browser does not support the video tag.</p> </video> The src references

PLay M3U8 on Windows Phone

无人久伴 提交于 2019-12-22 04:30:13
问题 I have been searching for ways to play an M3U8 media live stream on WIndows Mobile using the media framework. Kindly share any info on this. 回答1: You need to read and parse the m3u8 file (it's a simple text file). Then stream the parsed Uri(s). 回答2: After more research i found out that m3u8 is a format supported by APPLE. Unfortunately we cannot play the m3u8 files on windows phone directly. Rather we can use the streaming media framework to play .manifest files. The .manifest files are

Why AVPlayer downloading first instead live streaming?

有些话、适合烂在心里 提交于 2019-12-21 09:26:29
问题 First time I am working with AVPlayer and I want to play a mp3 file using HTTP request with live streaming. I use AVPlayer that is working fine to play mp3 files, but the problem is AVPlayer needs to download the mp3 first then play it. I don't know why AVPlayer downloads the file and then play it instead of live playing. My Xcode 8.2.1 and I am using Swift 3. Here is my code snippet. var audioPlayer = AVPlayer() var avplayerItem : AVPlayerItem? override func viewDidLoad() { super.viewDidLoad

Http Live Streaming with the Apache web server

不打扰是莪最后的温柔 提交于 2019-12-21 07:46:08
问题 Is it possible to do HLS with an Apache web server? Would it be enough to "put here the playlist with data chunks"? Is it that simple? Or is there some module, which can be used for that purpose? Thanks a lot for the reply 回答1: Yes, it's sufficient to merely have the m3u8 and segmented ts files available. The benefit of HLS is that it is bog simple HTTP. It's possible that you'll have to setup the mime types in Apache, but it's probably correct by default. 回答2: The VideoLan wiki has a how to

Http Live Streaming with the Apache web server

女生的网名这么多〃 提交于 2019-12-21 07:43:09
问题 Is it possible to do HLS with an Apache web server? Would it be enough to "put here the playlist with data chunks"? Is it that simple? Or is there some module, which can be used for that purpose? Thanks a lot for the reply 回答1: Yes, it's sufficient to merely have the m3u8 and segmented ts files available. The benefit of HLS is that it is bog simple HTTP. It's possible that you'll have to setup the mime types in Apache, but it's probably correct by default. 回答2: The VideoLan wiki has a how to

Live video streaming, how to play it on iPhone?

核能气质少年 提交于 2019-12-21 06:28:22
问题 I am wondering what is available to play live video feed on my iPhone, in a developer way. Few apps exists and play live stream like : http://qik.com/ http://www.ustream.tv http://orb.com/en/orblive Do you have an idea how they achieve this ? Thanks a lot. Thierry 回答1: iPhone 3.0 software includes new APIs for video streaming. Unfortunately, it's under NDA at the moment, so no one can really talk about it on these forums. 回答2: I did worked on the live video streaming. Unfortunately, i didn't