Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
4answers
130 views

Java: How do I create a movie from an array of images?

I basically have an matrix of bytes. Each row (meaning byte[]) represents an image. How do I create a movie out of that (any format - avi, mpeg, whatever), and save it as a file? Each image can be ...
9
votes
3answers
2k views

MPMoviePlayerViewController Hide Status Bar

I have an iPad application that creates and shows a video with an MPMoviePlayerViewController. Here's my code: MPMoviePlayerViewController *mpvc = [[MPMoviePlayerViewController alloc] ...
8
votes
4answers
460 views

Are there any good movie/film APIs out there?

Working on a movie website and would love to find an API that I could use to get information about different movies. I code in PHP but I'm assuming this would probably return XML.
7
votes
3answers
3k views

Playing videos in UIWebView broken in iOS4?

I have an app that's worked since version 2.0 of the SDK where I create and add a UIWebView and then load the URL of an .mov to play a movie. Ever since the early version of the 4.0 beta up until the ...
7
votes
3answers
3k views

MPMoviePlayerController alternatives on iPhone?

I am looking for alternatives to the MPMoviePlayerController on the iPhone. As a video player its functionality is very limited. According to the class reference there is no way to get the current ...
6
votes
4answers
579 views

Embed video in html file loaded in UIWebView from Documents folder of application

I have an html file named videoplay.html with following content <!DOCTYPE html> <html> <head> <title>Title</title> </head> <body> <p> ...
6
votes
1answer
274 views

MPMoviePlayerController, disallow fullscreen but allow navigation through clip?

I have a video in my iPad app, but I dont want it to be able to go to fullscreen. However I do potentially want the user to be able to navigate to the part of the video that they want to see. As far ...
5
votes
1answer
242 views

Showing gif in android

i have this code to show gif image with Movie. public class GIFView extends View{ private Movie movie; private InputStream is; private long moviestart; public GIFView(Context context) { ...
5
votes
2answers
2k views

Is there any online free movie information api's?

For music there is the Gracenote CDDB SDK, etc. but does an online service exist for getting information about movies? The only solution i can see at the minute is querying IMDB and scraping the ...
4
votes
2answers
93 views

Flash Movie Not Looping After Upload

I imported an FLV file to my FLA flash file, and exported it as an SWF movie. I want to embed it into my website, and I want it to loop after it ends. I've already checked the following: files are ...
4
votes
2answers
707 views

What's the best way to make an animated GIF using an algorithm?

I have an algorithm for knight's tours on chessboards of various sizes (large sizes, like 100x100) and I'd like to animate the result. Each time the knight moves to a new square, a corresponding pixel ...
3
votes
1answer
136 views

QTMovie index of out bounds exception when trying to addImage:forDuration:withAttributes

I am trying to create a movie in Cocoa using QTKit. This movie should consist of a bunch of NSImage's that I have created. I'm running into some problems with this. The overall problem is that the ...
3
votes
1answer
833 views

iOS frame by frame animation, by script

There are a few SO questions regarding frame by frame animation (such as frame by frame animation and other similar questions), however I feel mine is different so here goes. This is partially a ...
3
votes
4answers
2k views

MPMoviePlayerController switching movies causes white flash

I have a small UIView that displays a repeated movie. When the user taps a button another movie is loaded and displayed in the same UIView. The problem is that there is a half second "flash" between ...
3
votes
2answers
369 views

Movie Recommendation APIs

I'm working on a movie suggestion / recommendation site and I was wondering if there are any recommendation apis out there and if there is which one is the best. Once I have enough user information I ...
3
votes
1answer
827 views

Problem dismiss MPMoviePlayerViewController on play error

I have a problem with the MPMoviePlayerViewController: If the controller can't find the movie at the specified URL it displays a white screen and I can't make it go close. This is how I start the ...
3
votes
2answers
226 views

How to programmatically blur an area in a movie (in python)?

I have a movie, and I want to produce a new movie out of it with an area blurred (e.g. an object, a writing or a face). The area is moving, so I must have fine control of the current frame and move ...
3
votes
3answers
1k views

Take a thumbnail from a quicktime (movie) file

Does someone know if it's even possible (in PHP) to take a frame/thumbnail from a quicktime movie on the server? Something like the usual GD thumbnail generation, but for .mov files. note: I'm using ...
2
votes
2answers
131 views

MatLab, how to preallocate for frames to make a movie?

Matlab has the following guide to making a movie in avi format. My goal is to be able to play the video in my presentation through powerpoint. nFrames = 20; % Preallocate movie structure. ...
2
votes
1answer
219 views

How to use getframe() with a MATLAB GUIDE (GUI) object to make a movie?

I would like to use getframe to capture a screenshot of my nice GUI object, which I created using GUIDE. I can't just use OS PrintScreen functionality because I need to make a movie of something that ...
2
votes
1answer
494 views

OpenGL ES: storing a series of textures as a movie file

I have been grabbing live video frames from the iPhone camera and applying them as a texture to flat OpenGL geometry in order to use shaders for processing the camera input. Does anyone know if it's ...
2
votes
1answer
2k views

Convert image sequence to lossless movie [closed]

I have a sequence of images in TIF format, and I would like to create a movie at a fixed FPS (say 10 images per second) and that is lossless. Is there an easy way to do that? I've been trying with ...
2
votes
2answers
796 views

Automatic saving a figure as an image file in Matlab

I'm creating 49 figures in Matlab, they are all created automatically one after the other. I want them to also automatically be saved as .tif or .jpg images with names corresponding to their figure ...
2
votes
1answer
468 views

Find the duration of a mp4 - iPhone SDK

How can I find the duration of a mp4 file to hours and minutes. I have tried loading the URL in a MPMoviePlayerViewController and use the duration property which I then convert the nstimeinterval to a ...
2
votes
1answer
906 views

UIImages to movie with AV Foundation

I have a serious problem with the AV Foundation. I want to render the animation of several UIImages to a movie file. I just want to make a movie file in which the images are changed every 1/x second. ...
2
votes
2answers
2k views

Avoid Video Compression when Selecting Movie with UIImagePickerController?

I'm using UIImagePickerController to allow my user to select a video from the asset library. When the user selects the "Choose" button on the second screen, the view displays a progress bar and a ...
2
votes
2answers
587 views

Turning a series of raw images into movie frames in Android

I've got an Android project I'm working on that, ultimately, will require me to create a movie file out of a series of still images taken with a phone's camera. That is to say, I want to be able to ...
2
votes
1answer
78 views

Vibrations when exploding/repacking movie

Please bear with me, I know that what I'm doing can sound strange, but I can guarantee there's a very good reason for that. I took a movie with my camera, as avi. I imported the movie into iMovie and ...
2
votes
2answers
2k views

Is it possible to resize an embedded .mov?

I embed .mov clips that sometimes are bigger than the place where I show it, so I want to resize the clip. Have tried with width and height but that only changes the area to display it; it does not ...
2
votes
0answers
237 views

MPMovieplayerController keeps download after stop (iphone)

When I stop the movie and the MPMovieplayerController is dismissed, I see in my router that the movie is continuing to download. Is this normal?
1
vote
1answer
37 views

iPhone cannot rotate movie to landscape mode using MPMoviePlayerViewController

[update] As was recommended I changed all the parent view controllers to support all orientations. My app structure is as follows: AppDelegate > RootViewController > Videos > VideoDetails > ...
1
vote
1answer
89 views

Activity crashes when using animated gif and movie (Android)

My code right now downloads an animated gif from a website, and since, as far as I know, webview and imageview doesn't support animated gifs and using BufferedInputStream and Movie.decodeStream along ...
1
vote
3answers
161 views

Dynamically creating and assigning names to movieclips AS3

I have a movieclip that I need to duplicate dynamically based on an outside variable. e.g. clip1, clip2, etc This variable changes so I can't hardcode the number of times it occurs. Is there a way to ...
1
vote
1answer
74 views

How to play a segment of a movie in iOS

I have a video, and I want to display the video at a specific time time and stop it at a specific time. I am using MPMoviePlayerController.
1
vote
1answer
65 views

How to take avi snapshot in .NET

I'm looking easy way to take snapshot of AVI file in .NET (C#) I need take pictures of given time - I mean: TakeSnapshot (file_name, second) Any advice(s) how to deal with that?
1
vote
0answers
219 views

Smooth video looping in iOS

Can anyone suggest a method by which you can achieve a completely smooth and seamless looping of a video clip in iOS? I have tried two methods, both of which produce a small pause when the video ...
1
vote
1answer
46 views

Movie Metadata Storage

Assuming I can query IMDB etc successfully and retrieve metadata for an avi. Is there an existing file format for that metadata to store beside the avi? I can create my own XML/JSON based ...
1
vote
1answer
43 views

API for getting movie soundtrack list

Is there any free API for getting the list of soundtracks from a given movie? Thanks
1
vote
1answer
133 views

Add a movie to org-mode html output

In my org file I have a hyperlink to a movie [[mymovie.avi][Click here to watch my movie]] When exporting this to html, this link gets converted to an html-link that I can click on to open a new ...
1
vote
2answers
63 views

IntelliJ “Can't find” Movie File

I am having serious trouble opening, actually finding, any kind of Video Files with IntelliJ. The files are in a folder called "data" in my Project Directory. In the Project Structure Settings I made ...
1
vote
4answers
82 views

Replacing quotes and words in parentheses with preg_match?

I'm struggling to match a few movie titles i have in a weird format. Some of the titles are wrapped in qoutes and some begin with # or $, and most of them end with the release year at the end ...
1
vote
0answers
143 views

Extracting movie frames quickly in a 64-bit Cocoa app on Snow Leopard

I wrote a 64-bit Cocoa app on Snow Leopard that extracts individual frames from a movie using the QuickTime API. It uses [QTMovie currentFrameImage], which unfortunately is very slow, as was pointed ...
1
vote
2answers
379 views

AVPlayerLayer animates frame changes

Whenever I change the frame of my AVPlayerLayer, the video is not resized immediately, but animated to the new size. For example: I change the frame from (0, 0, 100, 100) to (0, 0, 400, 400), the ...
1
vote
1answer
665 views

What is the Video Format for Asus Transformer?

I have an Asus Transformer and would like to put a lot of movies in it. However, it seems like it's very hard to find the proper format for it. I've tried to convert the movies both in AVI and MP4 ...
1
vote
2answers
102 views

Dynamic plots in HTML

I have been developing a software package to plot astronomical data in the form of a movie. It looks like this. To do this, I export 100 tables of data from Java to gnuplot and use a bash script to ...
1
vote
1answer
84 views

What is a good website to review movies on that provides API access?

I'm updating my personal blog and I would like to start reviewing the movies I watch (an embarrassingly large number...). Could anyone recommend a good website where I can leave a review of a ...
1
vote
1answer
681 views

Play video with alpha channel in iOS?

Is it possible to play a video with alpha channel in you iPhone app? I´m thinking UIView with a subview (the movie view) and play a movie with alpha channel in that view.. Is this possible?
1
vote
1answer
180 views

How to trigger event for chapter markers when playing a quicktime movie?

I'm trying to create an iPad app where i need to playback a quicktime movie which contains some chapter markers. When each marker is reached i need a small overlay to be shown on top of the video. Is ...
1
vote
2answers
200 views

Qt: read video dimension without creating a video player

I need to read the dimensions of a given video file (its width and height), without constructing a video player, like Phonon, e.g. My question is which class I should use to get access to this data. I ...
1
vote
1answer
255 views

Saving in a DB the path of a photo chosen from the gallery

In my app, I would allow the user to pick a photo from the gallery (or snap a photo/video with the camera). I need to save the path in a db to retrieve it later, but I don't understand how I can do ...

1 2 3 4