video-streaming

Add making video call and voice call to my site php [closed]

江枫思渺然 提交于 2019-12-03 23:18:12
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center . Closed 7 years ago . I am creating a social network for some crowd.At there I need to add video calling and voice calling functionalities(like facebook or skype) to this site.I need to do this with PHP.Is there any api or help menu for this? <a href="callto://+2345634563456">Link will initiate Skype call to number</a> <a href="skype

IP camera Python error

时光总嘲笑我的痴心妄想 提交于 2019-12-03 22:59:28
问题 I am trying to access a video from an IP camera. I am using OpenCV and Python to do so. The code that I have tried is given below: import numpy as np import cv2 from cv2 import cv camera=cv.CaptureFromFile("http://root:root@192.168.0.90/axis-cgi/mjpg/video.cgi?resolution=640x480&req_fps=30&.mjpg") if camera is None: print 'Camera is null' else: print 'Camera is not null' cv.NamedWindow("win") while True: image=cv.QueryFrame(camera) cv.ShowImage("win", image) k=int(cv.WaitKey(10)) if k is 27:

Android Video Streaming

给你一囗甜甜゛ 提交于 2019-12-03 22:09:03
I need HTTP/RTSP Video Streaming with Android. Any Ideas ? Is that possible to go with JMF with Android ? Any Working examples ? Already tried with http://davanum.wordpress.com/2007/12/29/android-videomusic-player-sample-from-local-disk-as-well-as-remote-urls/ Its not working with my case. Are there any specific types of videos that Android can stream ? Thanks. You don't necessarily need JMF. Android has built in support for HTTP/RTSP video streaming . Try this: String LINK = "type_here_the_link"; setContentView(R.layout.mediaplayer); VideoView videoView = (VideoView) findViewById(R.id.video);

Live video streaming, how to play it on iPhone?

不想你离开。 提交于 2019-12-03 21:45:23
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 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. I did worked on the live video streaming. Unfortunately, i didn't got any solution regarding this. Till the day apple don't have included the RTSP streaming support in its SDKs.

iPhone: HTTP live streaming without any server side processing

做~自己de王妃 提交于 2019-12-03 21:13:41
I want to be able to (live) stream the frames/video FROM the iPhone camera to the internet. I've seen in a Thread ( streaming video FROM an iPhone ) that it's possible using AVCaptureSession's beginConfiguration and commitConfiguration. But I don't know how to start designing this task. There are already a lot of tutorials about how to stream video TO the iPhone, and it is not actually what I am searching for. Could you guys give me any ideas which could help me further? That's a tricky one. You should be able to do it, but it won't be easy. One way that wouldn't be live (not answering your

how to play online video those are on server

允我心安 提交于 2019-12-03 21:00:06
I have videos on my server. I would like to play those video on iPhone and iPad. Could anyone suggest how to deal with such case? I know how to play video when the same video is in my project using MPMoviePlayerController . Dilip You can use WebView to play video. In .h file add this code : #import <MediaPlayer/MediaPlayer.h> @interface VideoViewController : UIViewController<UIWebViewDelegate> @property (nonatomic, strong) UIWebView *playerView; And in .m file : @synthesize playerView; - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil { self = [super

C# better compression for remote desktop broadcast application

时光毁灭记忆、已成空白 提交于 2019-12-03 20:39:45
I am in the process of creating a TCP remote desktop broadcasting application. (Something like Team Viewer or VNC) the server application will 1. run on a PC listening for multiple clients on one Thread 2. and on another thread it will record the desktop every second 3. and it will broadcast the desktop for each connected client. i need to make this application possible to run on a connections with a 12KBps upload and 50KBps download DSL connection (client's and server). so.. i have to reduce the size of the data/image i send per second. i tried to reduce by doing the following. I. first i

iPhone HTTP Streaming .m3u8 and .ts files - how to create using ffmpeg

人盡茶涼 提交于 2019-12-03 20:34:26
I'm trying to get apple-validated http media streams using ffmpeg and am getting errors. Here are some error examples: WARNING: Playlist Content-Type is 'application/x-mpegurl', but should be one of 'application/vnd.apple.mpegurl', 'audio/x-mpegurl' or 'audio/mpegurl'. WARNING: 258 samples (88.966 %) do not have timestamps in track 256 (avc1). 4: us2-1.ts ~~~~~~~~ WARNING: Media segment duration outside of expected duration by 47.733 % (5.23 vs. 10.00 seconds, limit is 20 %). 40: us2-19.ts ~~~~~~~~~ Average segment duration: 10.16 seconds Average segment bitrate: 320.12 kbit/s Average segment

FFMPEG error with avformat_open_input returning -135

独自空忆成欢 提交于 2019-12-03 20:34:25
I have a DLL one of my applications uses to receive video from RTSP cameras. Under the hood, the DLL uses FFMPEG libs from this release zip : ffmpeg-20141022-git-6dc99fd-win64-shared.7z We have a wide variety of cameras in house and most of them work just fine. However, on one particular Pelco Model Number: IXE20DN-OCP, I am unable to connect. I tested the camera and rtsp connection string on VLC and it connects to the camera just fine. I found the connection string here : http://www.ispyconnect.com/man.aspx?n=Pelco rtsp://IPADDRESS:554/1/stream1 Oddly, even if I leave the port off of VLC, it

Serve video file to iPhone from ASP.NET MVC2

早过忘川 提交于 2019-12-03 17:45:42
问题 I'm attempting to serve video files from ASP.NET MVC to iPhone clients. The video is formatted properly, and if I have it in a publicly accessible web directory it works fine. The core issue from what I've read is that the iPhone requires you to have a resume-ready download environment that lets you filter your byte ranges through HTTP headers. I assume this is so that users can skip forward through videos. When serving files with MVC, these headers do not exist. I've tried to emulate it, but