video-streaming

Cropping a video file with defined width, length, and pixel location

狂风中的少年 提交于 2019-12-07 03:41:43
问题 I an trying to create a program that will detect a face in a video. There are a few requirements that must be passed before I accept the "face". After all of the requirements are met I then want to take the frames that hold that "face" and crop them to make the face the area of focus. The program will go through every frame and do this, then take the new video and make that into a video file. I have never worked with video files, or image file so this is all new to me. I am currently writing

Android get Video source path from VideoView

╄→尐↘猪︶ㄣ 提交于 2019-12-07 03:30:41
问题 I have VideoView instance. I need to know video source path from it. Is it possible? Can anybody help me? My code from WebChromeClient class is: @Override public void onShowCustomView(final View view, final CustomViewCallback callback) { super.onShowCustomView(view, callback); if (view instanceof FrameLayout) { final FrameLayout frame = (FrameLayout) view; if (frame.getFocusedChild() instanceof VideoView) { // get video view video = (VideoView) frame.getFocusedChild(); } } } How to get video

Are overlays on top of full-screen flash video possible?

情到浓时终转凉″ 提交于 2019-12-07 03:18:30
Is there a generic way, preferably in Javascript but flash would be okay, I guess, to put an overlay on top of full-screen flash video without editing the video player? The particular use case is that I'd like to add growl-like notifications to some live streaming stuff without writing a lot of AS that ties me to a specific player. It seems that most of the players would not allow this anyway. Even finding out that this is definitively impossible would be okay. Thanks. Answer: no Only way around this would be to load what you want to appear over the top of the full-screen video into the SWF

Video calling in desktop application .net

六月ゝ 毕业季﹏ 提交于 2019-12-07 02:49:17
问题 I am working on a wpf application which is suppose to have video calling feature. So I am going for Skype to provide me with the solution. I am using Skype4COM library to do it. I got all the friends from Skype in my application, I can make call to my friends and even can do video call, but I cant control streaming. Video is being shown in Skype window, I want to show it inside my application like a part of my application. I don't even know which control should I use to handle the video

Android App to Stream IP Camera using P2P mode over Mobile port?

China☆狼群 提交于 2019-12-07 01:46:42
问题 I am trying to stream the video via IP camera on an Android App. I have been successful to get the video using the following: RTSP using Media Player and Surface View. RTSP using Video View. Redirecting to VLC for streaming the video. Redirecting to Native Video Player for streaming the video. Now, all these cases are working but with a lag of 7-8 seconds on average even over the local network. I see some apps that steam without any lag even on remote network, that use mobile port (18600) .

how to stream rtsp url using exoplayer?

£可爱£侵袭症+ 提交于 2019-12-07 01:24:58
问题 I want to stream rtsp video using exoplayer. I am using ExoMedia library which is an An Android ExoPlayer wrapper. I have search on stackoverflow but I didn't find any good answer. After some google search I found that exoplayer does not support rtsp stream issue 55. Is there any way to stream rtsp url using exoplayer? Here is my code. public class MainActivity extends AppCompatActivity implements OnPreparedListener{ EMVideoView emPlayer; @Override protected void onCreate(Bundle

Why MPMoviePlayerController fullscreen button icon change to caption icon in iOS 10?

北城以北 提交于 2019-12-06 20:53:56
问题 I try to use MPMoviePlayerController as embedded video player but I spot a problem where the fullscreen icon were changed in iOS 10? Is there any solution to change it back to original fullscreen button ? Thank you, This is what it look like in iOS 8 and iOS 9: This is what it look like in iOS 10: 回答1: Here is some code to workaround that iOS 10 bug which you can write in a WorkaroundInlinePlayerFullScreenButtonBug.m file: @import MediaPlayer; @import ObjectiveC; static void (

How to set JVM arguments in IntelliJ IDEA?

落花浮王杯 提交于 2019-12-06 18:49:07
问题 I am confused about the instruction when using Kinesis Video Stream Run DemoAppMain.java in ./src/main/demo with JVM arguments set to -Daws.accessKeyId={YourAwsAccessKey} -Daws.secretKey={YourAwsSecretKey} -Djava.library.path={NativeLibraryPath} for non-temporary AWS credential. How to set these arguments in IntelliJ IDEA? I followed the documentation and found the "Run/Debug Configurations" and don't know what to do next. Any help? Thanks! 回答1: You're correct about the Run/Debug

Streaming video in play framework using videojs

瘦欲@ 提交于 2019-12-06 16:17:52
问题 Recently I have been working with my friend on a web application in play framework 1.2.4 where we were trying to stream a video stored in the /public directory of the project using the videojs player. This video was in .mp4 format but I guess this is irrelevant for this question. We were accessing the video directly without using any server side scripts. We have spotted 2 issues the arose during our tests. The video was never buffered all the way to the end. Only a few seconds ahead were

c# streaming over http to iphone

一个人想着一个人 提交于 2019-12-06 15:56:35
问题 i am trying to stream video over http to iphone without a streming server with .net. After some tests i found that if you just upload iphone compatible video to your server, iis7 works just fine and iphone startsplaying video after small buffer time and continues to download in the background. My problem is, i am unable to do it with .net. I have tried with public static void SmallFile(string filename, string filepath, string contentType) { try { FileStream MyFileStream = new FileStream