video-streaming

Audio and video conference with NodeJS

左心房为你撑大大i 提交于 2020-01-03 05:11:29
问题 I would like to build a web application that lets two peers see and hear each other using video and audio streaming with HTML5 and no plugins (except for IE, that I pretend to use getUserMediajs to use a flash fallback). I also want to transmit that data using NodeJS but I have no idea where to start. In an example: Peer A <---> Node JS <---> Peer B I'm interested in this Peer 2 Server 2 Peer approach instead of a Peer 2 Peer solution like PeerJS because: 1) I think it will be more compatible

Bag file to run the image stream from ARDRONE - rostopic suggestion needed

南楼画角 提交于 2020-01-03 04:38:12
问题 I am new to ROS. I am working on a video feed from ARDRONE but I am not able to stream the video. Should I have to change the topics in publisher and subscriber to stream the video ??? It is mentioned that I have to use bag file to stream. My publisher and subscriber nodes are the following : def __init__(self): self.image_pub = rospy.Publisher("image_topic_2",Image,queue_size=10) self.bridge = CvBridge() self.image_sub = rospy.Subscriber("image_topic",Image,self.callback) def callback(self

Cant get RTSP stream - nonmatching

青春壹個敷衍的年華 提交于 2020-01-03 03:54:13
问题 I'm using Raspberry Pi3 and I`m trying to get a RTSP stream through my wireless IP camera, but I'm getting this error: pi@raspberrypi:~ $ alprd -f INFO - Running OpenALPR daemon in the foreground. INFO - Using: /etc/openalpr/alprd.conf for daemon configuration Missing config value for company_id Missing config value for pattern INFO - Using: /home/pi/Database/pictures for storing valid plate images INFO - country: br -- config file: /etc/openalpr/openalpr.conf INFO - pattern: INFO - Stream 1:

Microsoft Lync video streaming to webbrowser

风流意气都作罢 提交于 2020-01-02 20:19:08
问题 is it possible to stream (previously recorded and/or live) video to many Microsoft Lync SDK webbrowser clients? Thanks in advance, Etam. 回答1: 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

iPhone MPMoviePlayerController : download files while streaming en play them locally

|▌冷眼眸甩不掉的悲伤 提交于 2020-01-02 06:11:21
问题 I've m3u8 file with all the TS files. MPMoviePlayerController play them fine via http request on the streaming server. But I'd like to get the files locally in order to play them again later without any connection. I managed to download m3u8 file and all the TS files locally on my device, I edited m3u8 files to point to local .ts instead of http ones, but I can't read them from this emplacement. (VLC can do it well) Is there a way to download the segments while playing (to avoid 2 downloads)

Android VideoView MediaPlayer OnInfoListener - events not fired

萝らか妹 提交于 2020-01-02 02:00:19
问题 this following source code snippet is given: videoView.setOnPreparedListener(new MediaPlayer.OnPreparedListener() { @Override public void onPrepared(MediaPlayer mediaPlayer) { mediaPlayer.setOnInfoListener(new MediaPlayer.OnInfoListener() { @Override public boolean onInfo(MediaPlayer mp, int what, int extra) { if (what == MediaPlayer.MEDIA_INFO_BUFFERING_END){ activity.dismissDialog(DialogID.DIALOG_LOADING); return true; } return false; } }); } }); I am streaming HLS streams with Android 3.x+

Getting 'av_interleaved_write_frame(): Broken pipe' error

核能气质少年 提交于 2020-01-01 18:55:47
问题 I am trying this blog post.I am new to python, numpy as well as FFMPEG. I could not figure out what causes this issue. http://zulko.github.io/blog/2013/09/27/read-and-write-video-frames-in-python-using-ffmpeg/ here is the code: import subprocess as sp import numpy print ("Hello World!"); FFMPEG_BIN = "ffmpeg" # on Linux ans Mac OS #FFMPEG_BIN = "ffmpeg.exe" # on Windows command = [ FFMPEG_BIN, '-i', '/Users/eananthaneshan/Movies/myvideo.mp4', '-f', 'image2pipe', '-pix_fmt', 'yuv444p', '-s',

Getting 'av_interleaved_write_frame(): Broken pipe' error

情到浓时终转凉″ 提交于 2020-01-01 18:55:25
问题 I am trying this blog post.I am new to python, numpy as well as FFMPEG. I could not figure out what causes this issue. http://zulko.github.io/blog/2013/09/27/read-and-write-video-frames-in-python-using-ffmpeg/ here is the code: import subprocess as sp import numpy print ("Hello World!"); FFMPEG_BIN = "ffmpeg" # on Linux ans Mac OS #FFMPEG_BIN = "ffmpeg.exe" # on Windows command = [ FFMPEG_BIN, '-i', '/Users/eananthaneshan/Movies/myvideo.mp4', '-f', 'image2pipe', '-pix_fmt', 'yuv444p', '-s',

Symfony2 video streaming

穿精又带淫゛_ 提交于 2020-01-01 18:21:12
问题 I'm writing app in symfony2 and I have a problem with video streaming. If one action takes a long time to execute - for example 1 minute , the whole app is frozen (when opened in second tab) and must wait for end of that execution. Where is the problem? //EDIT public function streamAction($fileName) { $user = $this->get('security.context')->getToken()->getUser(); $request = $this->getRequest(); $uid = $request->get('uid') != 'null' ? $user->getId() : $request->get('uid'); $libPath = $this->

Symfony2 video streaming

a 夏天 提交于 2020-01-01 18:21:10
问题 I'm writing app in symfony2 and I have a problem with video streaming. If one action takes a long time to execute - for example 1 minute , the whole app is frozen (when opened in second tab) and must wait for end of that execution. Where is the problem? //EDIT public function streamAction($fileName) { $user = $this->get('security.context')->getToken()->getUser(); $request = $this->getRequest(); $uid = $request->get('uid') != 'null' ? $user->getId() : $request->get('uid'); $libPath = $this->