video-streaming

Video Conferencing in .NET

回眸只為那壹抹淺笑 提交于 2019-12-09 05:57:53
问题 I'm adding a chat functionality to one of our softwares, I've got the chat functionality up and running using WCF. I'm thinking of trying to add a video chat functionality again using WCF, basically instead of sending the clients messages I will send the video stream. I was wondering if anybody has done this with WCF? Is it very recommended to do this with WCF? Also has anybody used (and recommends) any components (preferably open source) or libraries for video conferencing in .NET 4. Thanks

Java Android download video in parts and Play combined

拥有回忆 提交于 2019-12-08 13:17:09
问题 I don't know how to do. Please suggest how to download a large video file in parts and play all parts one by one. Actually I have to stream FTP large file in Android VideoView . I have searched a lot and found that android do not support FTP streaming. So, I tried to download the file in multiple parts and play them one by one. But the problem is that only first part of file plays, others don't. Please suggest. Code to download file in parts. URL url = new URL(fileUrl); URLConnection ucon =

What type of .avi video jmf plays?

主宰稳场 提交于 2019-12-08 12:42:23
After struggling through exceptions in using jmf, on How do I remove nullpointerexception . I am able to now play my video, but only the .mov file here at this website . But I am creating my video file using ffmpeg using images and .wav audio files. I can create it in any format, .avi , .mov , .mp4 , but what is important is I should be able to play it in my player, which I built using JMF. Currently, I am getting this error, Unable to handle format: FMP4, 1366x768, FrameRate=30.0, Length=3147264 0 extra bytes java.lang.NullPointerException at java.awt.Container.addImpl(Unknown Source) at java

how to stop MPMoviePlayerViewController from downloading video if the app is in background

为君一笑 提交于 2019-12-08 12:32:34
问题 I use MPMoviePlayerViewController to play some videos form the internet. When the user presses home button and the app goes in background, the iphone still downloads a lot of information. Can anyone recomend me how the trafic can be stopped, without disabling multitasking or calling exit(0)? I have tried to stop the MPMoviePlayerViewController, but in some cases, when the MPMoviePlayerViewController is not fully loaded, the it doesn't respond(not the video, the MPMoviePlayerViewController).

Concatenate multiple HLS master playlists

安稳与你 提交于 2019-12-08 12:11:35
问题 The DASH Manifest provides the notion of “Periods” to concatenate multiple clips - each with its own track information - in a single manifest. Is there a similar functionality which allows to concatenate multiple master playlist files in a kind of “master master”-playlist file? 回答1: Short answer: No, not on a Master Playlist level. I guess the closest thing to Periods of MPEG-DASH in HLS are Discontinuity Sequences. You would have to concatenate the variant playlists and add an EXT-X

How to stream a video to play from a particular time in android?

耗尽温柔 提交于 2019-12-08 12:05:55
问题 Can anyone in guide me how to play a video from a particular time? I have a video url ,i need to play the video from a particular time i used seekTo() but its not working. so i thought that first we need to stream the video to a file and then we need to play...but i dnt how to stream a video from a url. Can anybody provide me the sample code. Thanks. 回答1: Hi try the following it will help you <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk

Video recording web app

有些话、适合烂在心里 提交于 2019-12-08 11:53:21
问题 I have a website requirement , users can able to record video (with sound) and upload to server. First i think about flash and red5(media server) but found that flash does not support IPAD or iphone. Now am think about HTML5 video recording, but somebody told me that html5 video recording still in beta and not stable and it does not support all browsers. Please advice which is best , help is highly appreciable. Thanks, 回答1: To upload a video from an iPhone to a web server, you can use an

Android WebRTC save remote stream

家住魔仙堡 提交于 2019-12-08 11:52:50
问题 Hi I'm trying to save the remote stream received from the webrtc, I followed some code sample from git, tried various approach to get remote stream but,not able to get stream from socket or any other way, if some one have any idea please suggest here is snippet of my Class of WebRTCClient here is my class: package fr.pchab.webrtcclient; import android.app.Activity; import android.util.Log; import android.widget.Toast; import com.github.nkzawa.emitter.Emitter; import com.github.nkzawa.socketio

Streaming Video in Parts

雨燕双飞 提交于 2019-12-08 11:37:12
问题 I have a question about how I can stream a large video in parts. Lets say I have a video that is 1G large and I want to break into 10 equal parts (~100MB each). Now what I want to do is have a video player (preferably HTML5 /JS and not a Flash Player) that plays these 10 videos from start to finish without any noticeable gaps in-between. The purpose of this is to to make sure that the entire video is NOT being downloaded in cases when user isn't watching the entire video. Is this a pointless

streaming on iOS through rtmp

别等时光非礼了梦想. 提交于 2019-12-08 10:10:27
问题 I am desperately looking for a solution to stream through rtmp from red5 server on iOS. And I couldn't get rtmp c lib work on my Xcode project. Could anyone please post any tutorials? or share some other solutions maybe? 回答1: here is what i found till now. very useful obj-c libs, but costs smt. - http://www.themidnightcoders.com/products/weborb-for-mobile/universal-mobile-connectivity-overview.html - http://www.aftek.com/afteklab/aftek-iphone-RTMP-library.shtml Then, i tried to implement