video-streaming

IP Camera - Streaming video with the basic authentication on Chrome

◇◆丶佛笑我妖孽 提交于 2019-12-06 12:43:28
问题 I have an Amcrest IP Camera. I would like to stream video to my web page. Its url is rtsp://mycamera.com:5554/stream In order to get the stream of the camera, the camera has a following API http://mycamera.com/video.mjpg It requires the basic authentication to work. By formatting the URL and putting it into the image tag like below, I can make it work on Firefox, Safari <img src="http://username:password@mycamera.com/video.mjpg" /> However, Chrome (v.40 on mine) does not allow this kind of

Microsoft Lync video streaming to webbrowser

◇◆丶佛笑我妖孽 提交于 2019-12-06 12:42:45
is it possible to stream (previously recorded and/or live) video to many Microsoft Lync SDK webbrowser clients? Thanks in advance, Etam. The short answer is No - not without some pain. The long answer depends on your exact scenario. If you can control the client build, and are able to ensure Lync is installed, then you should be able to automate Lync from the Silverlight app to connect to the conference that is hosting the video content you want to display. With this solution, it will be Lync that's actually displaying the video, not Silverlight. That's pretty simple, and covered in the Lync

Display gstreamer-sharp video stream in WinForms

这一生的挚爱 提交于 2019-12-06 11:56:58
问题 I am looking for an example/help for displaying a gstreamer-sharp feed in a WinForms application. I am using VS 2012 and have the "glue" project built for this version of VS. I also have glib-sharp, gstreamer-sharp installed and referenced by my project. I have the gstreamer bin directory set as my project's working directory. If have the following code in a button click handler I get the GStreamer D3D video sink test Window which pops-up on top of my Form. Gst.Application.Init(); var

Re-Stream a MPEG2 TS PAL Stream with crtmpserver

我的未来我决定 提交于 2019-12-06 11:12:22
问题 I want to build up some kind of stream wrapper: I own an old Dreambox PAL Sat Reciever with Networking. This stream I want to transcode to a lower resultion an restream it. My Goal is, to have a simple website, where this stream is embedded via rtmp. I thougt crtmpserver should be the right software. For now I have a site running and can play local files through jwplayer/crtmpserver. I am looking for a solution for this: httpUrl -> ffmpeg -> crtmpserver Is that possible? May I redirect the

Video feed to ThingsBoard dashboard

萝らか妹 提交于 2019-12-06 10:28:03
问题 I'm currently using ThingsBoard as an IoT broker to capture and display telemetry data from several sensors to a dashboard. I would like to add the capability of displaying a live video feed from a iPhone camera or webcam, and I'm wondering if anyone here knows if ThingsBoard supports any sort of video data stream (either live or timed screen capture based)? Ideally, I'd like to mount the phone/camera to a servo-controlled mount which I can used to position the camera using controls on the

Streaming Mp4 video through RTP protocol using Gstreamer in Ubuntu

狂风中的少年 提交于 2019-12-06 10:28:02
问题 I'm trying to fetch the video file from my local directory,enable the stream from server and capture these frames from my Client side.I have used the following pipelines: Server side: gst-launch -v filesrc location=/home/gokul/Videos/Econ_TestVideo/radioactive.mp4 ! qtdemux ! rtpmp4vpay ! udpsink host=192.168.7.61 port=5000 sync=true Setting pipeline to PAUSED ... Pipeline is PREROLLING ... /GstPipeline:pipeline0/GstRtpMP4VPay:rtpmp4vpay0.GstPad:src: caps = application/x-rtp, media=(string

Can't receive RTSP live stream from an IP cam

末鹿安然 提交于 2019-12-06 10:00:01
问题 I want to receive live streaming from an IP camera using RTSP, I'm getting 'Can't play this video' , and the following Exception: 07-16 14:06:26.945: D/MediaPlayer(19411): setDataSource IOException happend : 07-16 14:06:26.945: D/MediaPlayer(19411): java.io.FileNotFoundException: No content provider: rtsp://192.168.30.108:554 07-16 14:06:26.945: D/MediaPlayer(19411): at android.content.ContentResolver.openTypedAssetFileDescriptor(ContentResolver.java:1052) 07-16 14:06:26.945: D/MediaPlayer

Unable to get tracks of AVAsset using HLS while retrieveing bitrate

回眸只為那壹抹淺笑 提交于 2019-12-06 09:25:07
问题 I am using HLS streaming in my application and I am using AVPlayer. Now I want to get bitrate of the video track using AVAsset. Although I have added observer and other stuff I am getting tracks array as empty always.Am I on right track or missing anything? 回答1: HLS is adaptive, therefore, bitrate can vary across the duration of the stream based on various conditions. You are on completely the wrong track, unlike playing a file, either local or from a network URL, currentItem.asset.tracks

I want to display a videothumbnail image of a video from url in my uiimageview for iphone

安稳与你 提交于 2019-12-06 09:05:12
问题 Is it possible to get the first image frame of a video and display it in uiimageview . My video is saved in the server. i need to call the url to play the video 回答1: An example: NSURL *videoURl = [NSURL fileURLWithPath:videoPath]; AVURLAsset *asset = [[AVURLAsset alloc] initWithURL:videoURl options:nil]; AVAssetImageGenerator *generate = [[AVAssetImageGenerator alloc] initWithAsset:asset]; generate.appliesPreferredTrackTransform = YES; NSError *err = NULL; CMTime time = CMTimeMake(1, 60);

.NET Options Stream Video Files as WebCam Image

梦想的初衷 提交于 2019-12-06 07:51:59
I am interested in developing an application that will allow me to build a list of videos from xml (containing video title, duration, etc) and play that list as my webcam stream. Meaning, if I were to visit ustream.tv, or activate my webcam on live messenger my video playlist would register as my active webcam. Does anybody have experience in this area, and perhaps have some advice to offer? I don't have a lot of experience in this area, but I would start by looking at the MSDN docs for the DirectShow API . A couple of .NET wrapper libraries exist as well: Managed DirectShow DirectShow.NET