video-streaming

Android MJPEG stream

我们两清 提交于 2019-12-31 02:25:13
问题 I have implemented Android and MJPEG and also implemented async and certifications to run it that is mentioned here. Now i have managed to run the jpeg video stream but the issue is It keeps blinking when running the stream. It keeps getting on and off. I think it could be the issue of frames. Anyone has the idea how to handle this. Here is the complete code that i have implemented: MjpegSample.java public class MjpegSample extends Activity { private static final boolean DEBUG=true; private

Video Streaming from IP Camera in Python Using OpenCV cv2.VideoCapture

天大地大妈咪最大 提交于 2019-12-31 01:57:34
问题 I am trying to get video stream in python from IP camera but i am getting an error. I am Using Pycharm IDE. import cv2 scheme = '192.168.100.23' host = scheme cap = cv2.VideoCapture('http://admin:Ebmacs8485867@'+host+':81/web/admin.html') while True: ret, frame = cap.read() # Place options to overlay on the video here. # I'll go over that later. cv2.imshow('Camera', frame) k = cv2.waitKey(0) & 0xFF if k == 27: # esc key ends process cap.release() break cv2.destroyAllWindows() Error: "E:

Streaming CustomView ARcore with Twilio video

☆樱花仙子☆ 提交于 2019-12-31 01:51:10
问题 I've a problem when i want to streaming a custom view with twilio video api along with ARcore, basically it stream a black screen. I used ViewCapturer class from example to this link https://github.com/twilio/video-quickstart-android/tree/master/exampleCustomVideoCapturer from the official documentation, but doen't work with arcore, probably due to the presence of the surface view in the arFragment. Thank you for your support. activity_camera.xml <?xml version="1.0" encoding="utf-8"?>

Writing video file and simultaneously playing it

二次信任 提交于 2019-12-31 01:15:07
问题 In my fun project, I'm downloading video file from youtube, and writing to a file on local disk. Simultaneously I want to play it. The objective is to cache the file on local disk, so that when I want to see the video again, the app can play it locally, thereby saving bandwidth. I'm using Python 3.3.1 , PyQt4/Phonon and LibVLC. So far, I'm able to do the following things: Given a youtube watch url, I can download the video file and then play it using both PyQt4/Phonon and LibVLC,

How to write on a virtual webcam in Linux?

岁酱吖の 提交于 2019-12-30 08:42:01
问题 I want to capture a video from a real webcam, apply filters with openCv and write the filtered video on a virtual webcam, to stream it on web. I don't have problem with the first 2 points, but I don't know how I can write on a virtual webcam. It's possible? How can I do it? I use openCv with C++ on Debian . Thanks 回答1: Well, actually this is possible. A quick and dirty way to do this is to use WebcamStudio. That will create a new video device (e.g., /device/video2) that other programs see as

How to write on a virtual webcam in Linux?

﹥>﹥吖頭↗ 提交于 2019-12-30 08:41:50
问题 I want to capture a video from a real webcam, apply filters with openCv and write the filtered video on a virtual webcam, to stream it on web. I don't have problem with the first 2 points, but I don't know how I can write on a virtual webcam. It's possible? How can I do it? I use openCv with C++ on Debian . Thanks 回答1: Well, actually this is possible. A quick and dirty way to do this is to use WebcamStudio. That will create a new video device (e.g., /device/video2) that other programs see as

Live video streaming between Server and client - Using Java

南楼画角 提交于 2019-12-29 18:09:08
问题 this is part of a project I am working on. I have two desktop java application , one runs on the server (which has real IP), and the other is the client. I just want to stream a live video from a webcam connected to the server application , and play it on the client application. I want to do this streaming from more than one camera. I have been looking searching for days between Xuggler, JMF, Red5, VLCj. I just can't figure from where I should start as I am new to dealing with media in

Live video streaming between Server and client - Using Java

徘徊边缘 提交于 2019-12-29 18:05:12
问题 this is part of a project I am working on. I have two desktop java application , one runs on the server (which has real IP), and the other is the client. I just want to stream a live video from a webcam connected to the server application , and play it on the client application. I want to do this streaming from more than one camera. I have been looking searching for days between Xuggler, JMF, Red5, VLCj. I just can't figure from where I should start as I am new to dealing with media in

rtsp stream capturing

北慕城南 提交于 2019-12-29 14:16:32
问题 I'm looking for some universal way to dump rtsp stream. I want to figure out, that some rtsp stream is working well and server is sending some watchable video. openRTSP At first, google recommends me openRTSP tool. openRTSP -4 ${stream_link} > ${output_file} But output video file dumped by that tool is not really correct. Video decoder (ffdec) returns many errors like "Failed to decode video packet" and "[h264] no frame!", which don't suit me. ffmpeg Then I've tried to dump rtsp stream with

rtsp stream capturing

时光怂恿深爱的人放手 提交于 2019-12-29 14:14:48
问题 I'm looking for some universal way to dump rtsp stream. I want to figure out, that some rtsp stream is working well and server is sending some watchable video. openRTSP At first, google recommends me openRTSP tool. openRTSP -4 ${stream_link} > ${output_file} But output video file dumped by that tool is not really correct. Video decoder (ffdec) returns many errors like "Failed to decode video packet" and "[h264] no frame!", which don't suit me. ffmpeg Then I've tried to dump rtsp stream with