video

Is there an alternative to the Media Player framework for playing non-fullscreen video in an app?

The docs say that the Media Player framework will play video only in fullscreen. In my case I want to play video in a little portion of the screen, while using UIKit / UIView. What would help out? Do I have to use an openGL ES view for that? ...

Which multimedia container format should I use?

I have to write code for a CCTV(video surveillance system) to store an elementary stream on hard drive in a container format. But there are too many choices, I don't know which format should I use. What format will cost less CPU cycles and permit replay by popular media players? ...

Is there a framework or cocoa API for playing video?

In short, I want to create a simple video player which can play some major video formats like quicktime *.mov, for example. What I need is: video playback (at least the most major formats would be great) play, pause need information about where the movie currently is (how many seconds passed, or how much percent) I'm targeting the ma...

How to burn video DVD from c#?

I need to burn video dvd from my web cam in C# application? What is the right way to do it? What are required steps? I guess I must create image with right folder structure and MPEG2 video and then burn it to DVD? IMAPI2? ...

FFmpeg: "[h264 @ <hexnumber>]AVC: Consumed only n bytes instead of n+6"

When I'm converting an HD video, I get messages saying, "[h264 @ ]AVC: Consumed only n bytes instead of n+6" Is there a way to fix the problem? Or is there an option to get rid of those messages? ~ $ ffmpeg -i original.mp4 -ar 22050 -qscale 7 -s 480x270 result.flv FFmpeg version 0.5, Copyright (c) 2000-2009 Fabrice Bellard, et al. ...

Which video file formats can QTKit play?

Is there an overview of file formats which QTKit understands? ...

Flash Video automatically starts downloading (don't want them to)

This question might be specific to SoThink Video Encoder v2.5, but it might not. I've transcoded some videos [from AVI] to SWF/FLV for embedding in a web page. I used SoThink Video Encoder. The problem is I have 9 videos on a page, and as soon as the page loads, they ALL start downloading. I would like them each to start downlo...

Is there a more performant way of animating an image sequence?

I fear this is evil code: CGRect iRect = CGRectMake(0.0f, 0.0f, 320.0f, 400.0f); UIImageView *imgView = [[UIImageView alloc] initWithFrame:iRect]; imgView.animationImages = [NSArray arrayWithObjects: [UIImage imageNamed:@"b0001.png"], [UIImage imageNamed:@"b0002.png"], // 150 more [UIImage imageNamed:@"b0152....

flex video player doesn't play until the video is fully loaded

the player uses a VideoDisplay and i set the source like videoDisplay.source = "sourceStringURL" and the vid doesn't play until it's fully loaded ...

Getting Silverlight Video Stream

Suppose there is a Silverlight streaming video player on a random web site. How can I intercept the video stream and for example save it to file - i.e. the real source of the file. I know some of the sites embed the source in tag - or at least that was the case with Flash. But sometimes, players are smarter than that and call some logi...

Serverside solution for converting an SWF file to a VIDEO file

Right now i develop an RIA application, for online movie creating. Main data format it`s a server side generated swf files. I need an server side solution for automated swf to video converting. After some researching and experiments, i found two solutions: Rewrite a bit an open source flash player gnash Grab adobe flash player directl...

Determine when Flash component not visible

I'm playing around with streaming live video to the Flash Player. The problem is, it seems (from my logs) that many users will open a live video feed and then just leave it open all day, whether or not they are actually watching it. As you can imagine, this is a horrendous waste of bandwidth. So I would like a way to determine if the us...

Frame/clip grabs using Java from a network video camera/adapter (no activex)

I'm interested in doing image processing in Java with frames collected from a network video adapter. The first challenge is finding network video adapters/cameras which don't require an ActiveX control for PTZ control and therefore require IE. Then the issue is how to do still image grabs from network video adapters which only make MP4...

Upload > Convert > Show With Flash

Hi, I want to convert and show video that user uploaded. I have dedicated server and i use php for programming. Where should i start ? Thank You ...

Audio of a specific video swf doesn't stop when i load another URLRequest

I am trying to stop the audio of the video swf and i can't get it to stop. Here is my code for loading the file var myLoader:Loader= new Loader(); myLoader.x=420; myLoader.y=200; // boolean variable set for use below in our function var screenCheck:Boolean = false; //These three linces keep stafe elements the same size, so they don't d...

Vesa Problems: 0xA0000 or 0xB0000

When dealing with Vesa (version 2) I can detect if its available, get all the available resolutions, but when it comes to setting the resolution... I am able to change to 1024x768 (32bpp) but then the screen is just blank... am testing it on VirtualBox... After setting the mode, is there anything else am supposed to do? ...

automated scrolling video playback

I would like to add an automatically scrolling sidebar to go through my videos and play them back (like this: http://video.on.nytimes.com/). I'm guessing I will need to create some highly customized javascript. Do you guys have any suggestions on how to accomplish this. I'm using drupal 6 and building a custom block module to do this. Th...

iPhone external video playback from an app

I know the iPhone can play video on an external screen if you have the Apple component output cable. I also know you can write an app that plays video. Is there a way to put those two things together and write an app that will play video specifically on an external screen? ...

as3 video full screen mode

I have created a video player, but need to add a button that, when clicked, puts the video into full-screen viewing mode. I don't want to scale everything on the stage - just the video. I can't seem to find how to do this - I thought it would be easy. ...

video conversion in C#

Iam writing an application which will do Conversion from AVI to MPEG, WMV to AVI, WMV to MPEG or H.264/AVC video, AVI to MP4, RMVB to 3GP, etc. I am looking for C# code and tutorials for the same. Any pointers will be really helpful. ...