video-streaming

Android webrtc not working with 3g, 4g

徘徊边缘 提交于 2019-12-03 03:55:09
In android application i have user webrtc for video calling app. If mobile is connected with wifi then app work perfectly. When i change wifi to mobile data and start app then app not work and also not display video . I have user webrtc in my app and server side kurento. Below list of scenario with status : Browser Client + Mobile Client -> Both on same Wifi network(KMS Server on same wifi network) -> Working fine . Mobile Client + Mobile Client -> Both on same Wifi network(KMS Server on same wifi network) -> Working fine . Browser Client + Mobile Client -> One of them on wifi(KMS Server on

Use MediaCodec for H264 streaming

倾然丶 夕夏残阳落幕 提交于 2019-12-03 03:53:42
I'm currently trying to use Android as a Skype endpoint. At this stage, I need to encode video into H.264 (since it's the only format supported by Skype) and encapsulate it with RTP in order to make the streaming work. Apparently the MediaRecorder is not very suited for this for various reasons. One is because it adds the MP4 or 3GP headers after it's finished. Another is because in order to reduce latency to a minimum, hardware accelaration may come in handy. That's why I would like to make use of the recent low-level additions to the framework, being MediaCodec , MediaExtractor , etc. At the

writing an iPhone application with embedded video

≯℡__Kan透↙ 提交于 2019-12-03 03:47:20
I am researching video streaming for an iPhone application that I may have to write in the near future. The application does a whole lot other than stream video, but video aspect is the part that I have no experience with. Anyone know of any good articles on writing streaming video apps? Google seems to inundate me with links that have everything not to do what I seek. Thanks, m Apple provide good documentation on the media framework i ntheir docs. Search for MPMoviePlayerController. The following sample code plays a movie from a URL. (disclaimer, this code lifted from Apple). -(void

AVPlayer seekToTime does not play at correct position

点点圈 提交于 2019-12-03 03:38:12
问题 I have an AVPlayer which is playing a HLS video stream. My user interface provides a row of buttons, one for each "chapter" in the video (the buttons are labeled "1", "2", "3"). The app downloads some meta-data from a server which contains the list of chapter cut-in points denoted in seconds. For example, one video is 12 minutes in length - the list of chapter cut-in points are 0, 58, 71, 230, 530, etc., etc. When the user taps one of the "chapter buttons" the button handler code does this:

Streaming Avi files from C# using RTP

五迷三道 提交于 2019-12-03 03:27:58
I have a read/seek input stream of a video file (.avi mpeg4\xVid\ect..) in C# and I would like to stream it to a video player with jump to moment X feature enabled. How can I implement this? I heard that RTP might be a good protocol. What I'm really looking for is a library in C# that will help me out. Thanks in advance. Yes, Streamcoders solution is very good if you have some €1890. But if you do not want to pay money you should look at some free libraries or write your own from scratch. Take a look at these articles with C# sources: RTP VOIP Library Project How to use the managed RTP classes

Raspberry Pi no delay (<10ms) video stream

喜夏-厌秋 提交于 2019-12-03 03:21:26
问题 I'm building quadcopter based on Raspberry Pi. I want to stream video from webcam via cellular conection to my computer. I tryed ffmpeg and mjpg but it has to big delay to make it possible to control Quad only with watching video. My question is if it's possible to stream video with realy small delay (so small that I will be able to drive quad without problems)? If Raspberry's hardware isn't good enough, BeagleBord may do it? Also, mounting smartphone to quad will be last possible solution

how to show the progress bar before playing the video

泪湿孤枕 提交于 2019-12-03 03:21:09
i want to show the progress dialog before playing video. i tried below link example for playing video. http://davanum.wordpress.com/2009/12/04/android-%E2%80%93-videomusic-player-sample-take-2/ it works but it takes more time to take for playing video so i want to show a progress dialog before start the video. so please tel me how to show the progress dialog before playing the video. Thank you. Best Regards. First, declare the progress dialog private static ProgressDialog progressDialog; Then, in onCreate, before calling runOnUiThread, start the dialog progressDialog = ProgressDialog.show(this

Create a Live Streaming APP for Android [closed]

天大地大妈咪最大 提交于 2019-12-03 03:17:38
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 3 years ago . I am having quite a trouble lately. I want to develop an Android App with a livestreaming embeded, but I just don't know how to start. I tried using an Webview with the livestreaming tag embeded, but it didn't work (most likely the stream is provided via Flash). I also tried to

Video Streaming Website Development [closed]

旧巷老猫 提交于 2019-12-03 03:17:26
Closed . This question needs to be more focused. It is not currently accepting answers. Learn more . Want to improve this question? Update the question so it focuses on one problem only by editing this post . This is the first time I am going to work on full-flagged video website development in my life and no idea about streaming technology and related stuffs. I have no issue with html, css, js, php and other video or any art related tool and familiar with JW Player too. Now my confusion are as below How to create streaming video (preferred HTML5 to support all latest platform and devices) Do

Play embedded video resource as stream

蹲街弑〆低调 提交于 2019-12-03 03:06:49
EDIT : I changed my question to better clarify the issue. How is it possible to play a video from a byte array (taken from embedded resource) using DirectShow.Net library? Since I'm going to prevent users from accessing the video file, I need to embed the video file as resource and play it. Thanks in advance. It's a bit non-standard, but you could use something like WCF to self-host an endpoint inside your desktop application. Then set the source of the video input to be the "URL" to your self-hosted endpoint. That would work for WPF or WinForms. Not sure about Silverlight though. The self