Questions tagged [movie]

Questions regarding movie data: read, write, compress, decode, transcode, and process. Also welcome questions regarding playing movies and displaying movies in various environments.

Questions regarding movie data: read, write, compress, decode, transcode, and process. Also welcome questions regarding playing movies and displaying movies in various environments.

431 questions
46
votes
1 answer

Convert image sequence to lossless movie

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 convert from Imagemagick, and ffmpeg, but I just…
astrofrog
  • 32,883
  • 32
  • 90
  • 131
35
votes
4 answers

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 one of the following: int JPEG Encoded…
user361676
  • 719
  • 2
  • 7
  • 16
19
votes
5 answers

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 "Compressing Video..." message. Why is this…
Avalanchis
  • 4,500
  • 3
  • 39
  • 48
18
votes
6 answers

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) { super(context); …
Jayyrus
  • 12,961
  • 41
  • 132
  • 214
17
votes
7 answers

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 view's frame is changed immediately, but the video's…
Alpár
  • 727
  • 10
  • 22
14
votes
5 answers

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

I have an html file named videoplay.html with following content Title

This is demo html file for playing movie file embedded.

Janak Nirmal
  • 22,706
  • 18
  • 63
  • 99
14
votes
3 answers

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] initWithContentURL:[NSURL URLWithString:URLEncode(uri)]]; [mpvc…
Ale Morales
  • 2,728
  • 4
  • 29
  • 42
12
votes
3 answers

Video editing with python : adding a background music to a video with sound

I would like to add a background music to a video file (.mp4) in python. I have looked the web and did some tricks with moviepy for python, but I did not found a single way to add background music to a video file that already contains music. Any…
Eli O.
  • 1,543
  • 3
  • 18
  • 27
12
votes
1 answer

Split mkv file with mkvtoolnix command line

I found mkvtoolnix command line, installed with brew. But i found nothing about splitting a movie with the command line, i only found with GUI. The installation create 4 binary mkvextract mkvinfo mkvmerge mkvpropedit . SOLUTION : mkvmerge --split 3G…
albttx
  • 3,444
  • 4
  • 23
  • 42
11
votes
2 answers

Skip UIImagePickerController Preview View?

I'm using UIImagePickerController to allow my user to select a video from the asset library. When the UIImagePickerController is initially displayed, it shows thumbnails for the various movies that have been recorded. Once the user selects a…
Avalanchis
  • 4,500
  • 3
  • 39
  • 48
10
votes
1 answer

MPMoviePlayerController will not automatically dismiss movie after finish playing (ios 6)

I may not have worded my title very well, maybe more correct to say my NSNotification isn't dismissing my movie's view after it's done playing. I've found others with this problem but no solutions, seems like it might be a problem with iOS 6 which…
9
votes
2 answers

TypeError: list indices must be integers, not str (boolean convertion actually)

import nltk import random from nltk.corpus import movie_reviews documents=[(list(movie_reviews.words(fileid)),category) for category in movie_reviews.categories() for fileid in…
RokiDGupta
  • 371
  • 2
  • 7
  • 14
9
votes
2 answers

List of all movie title, actors, directors, writers on Imdb

I am working on a web app which lets users tell their favourite movies, directors, movie- writers, and actors. For this I want to provide them a dropdown list or auto complete for each of them so that they can just pick their choices. For this: I…
shreyj
  • 1,759
  • 3
  • 22
  • 31
8
votes
4 answers

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 the removing of the first movie and the displaying…
bennythemink
  • 5,096
  • 4
  • 36
  • 54
8
votes
0 answers

Guidebox API alternatives for searching streaming services

I found out yesterday that the Guidebox API for retrieving data on shows/movies currently streaming on many of the popular streaming services is moving to pay-only starting in August, and is prohibitive for my budget. Does anyone know of any…
java-addict301
  • 3,220
  • 2
  • 25
  • 37
1
2 3
28 29