movie

Take a thumbnail from a quicktime (movie) file

柔情痞子 提交于 2019-12-05 05:13:47
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 dreamhost, so I don't have more than web-panel access to the server. Dreamhost provides a shared ffmpeg binary in /usr/bin/ffmpeg, so you should definitely be able to call ffmpeg from php by using the system() or shell_exec() functions. The Dreamhost wiki has also an entry providing directions on how to install and configure ffmpeg-php.. This looks promising: http://ffmpeg-php.sourceforge.net/index

How do I export UIImage array as a movie in Swift 3?

孤者浪人 提交于 2019-12-05 01:26:40
问题 I need to export an array of UIImage and build a movie putting some text in front of the image and if it's possible music also. Can you give me an hand with code? I only have found something with Objective-c and old version of Swift . 回答1: This is the first answers I posted to the question: create movie from [UIImage], Swift Following is a copy of the answer: I convert the objective-c code that posted by ’@Cameron E‘ to Swift 3, and It's working. the answer's link:@Cameron E's CEMovieMaker

Is it possible to resize an embedded .mov?

一曲冷凌霜 提交于 2019-12-04 11:44:30
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 resize the actual movie. Is it possible to resize the movie size? If yes, how? Yes, you need the scale attribute: <embed src="sample.mov" width="200" height="240" scale="tofit"> There's a full reference for QuickTime video attributes here . Sometimes the scale attribute doesn't work. It would help to place the embed element in an object element. <object height="240" width="200"><embed src="sample

C# Video editor?

こ雲淡風輕ζ 提交于 2019-12-04 09:48:14
I want to make a video editor in C# but, I don't know where to start. What classes should I use? What would I compile it into(MOV, MPEG4, ect)? How would I read them? The most important thing I am looking at though is reading them. I want to make a video editor in C# but, I don't know where to start. A video editor is a pretty complex application with many independent subsystems. You will need asset management, a timeline, a player component, video and audio effects and filters, title generation, etc., plus a GUI that combines all of these and presents them to the user. Out of all the above I

How do I export UIImage array as a movie in Swift 3?

隐身守侯 提交于 2019-12-03 16:18:48
I need to export an array of UIImage and build a movie putting some text in front of the image and if it's possible music also. Can you give me an hand with code? I only have found something with Objective-c and old version of Swift . leon wu This is the first answers I posted to the question: create movie from [UIImage], Swift Following is a copy of the answer: I convert the objective-c code that posted by ’@Cameron E‘ to Swift 3, and It's working. the answer's link: @Cameron E's CEMovieMaker import Foundation import AVFoundation import UIKit public typealias CXEMovieMakerCompletion = (URL) -

Google API Movie Showtimes Documentation

女生的网名这么多〃 提交于 2019-12-03 09:56:55
问题 where can I see the Google API movie showtimes documentation please ? On an other question I found this : http://www.google.com/ig/api?movies=poznan&theater=rialto&start=2&date=3&time=1 movies=poznan theater=rialto date=0 <0-today; 1-tomorrow; 2-day after tomorrow ....> time=1 <1-morning, 2 afternoon ......, 5 all day> start=0 <0-show list from the first element, 2-show list from the second element ...> I would like to know the exhaustive list of the url parameters. Where can I find all these

How do I play movies in a C# WinForm application

空扰寡人 提交于 2019-12-03 08:55:11
I am trying to play a movie (wmv,avi,mpg,etc.) in a winforms application. I would like the user to be able to start, stop and pause. I'm not looking for a full answer ... I just need pointed in the right direction. I've already did some searching on google but could not find anything useful. I can continue searching but I know the stackoverflow community rocks. So, please point me in the right direction! Thanks. I think this is probably the path of least resistance: http://msdn.microsoft.com/en-us/library/bb383953.aspx You could use Windows Media Player ActiveX control . You could also embed a

MPMoviePlayerController with a Custom Button on its toolbar

半世苍凉 提交于 2019-12-03 03:51:12
You might have seen video through you tube in iPhone. Normal MPMoviePlayerController has previous, next & play/pause buttons. You tube - player has additional two buttons on it. => Add to favorites on the left side. => Email this video on right side. I want to implement the same for my application. But I am failed to find out the property or methods regarding - implementing this. How do I need buttons on it? When User is watching video there should no buttons on screen. When user taps on video - a toolbar comes on top & at center A center tool bar has generally three buttons on it ,Previous -

Google API Movie Showtimes Documentation

。_饼干妹妹 提交于 2019-12-03 00:30:32
where can I see the Google API movie showtimes documentation please ? On an other question I found this : http://www.google.com/ig/api?movies=poznan&theater=rialto&start=2&date=3&time=1 movies=poznan theater=rialto date=0 <0-today; 1-tomorrow; 2-day after tomorrow ....> time=1 <1-morning, 2 afternoon ......, 5 all day> start=0 <0-show list from the first element, 2-show list from the second element ...> I would like to know the exhaustive list of the url parameters. Where can I find all these informations please ? The Google's movie API is not official. It was developed for iGoogle developers

Creating a movie in Jython/Python

回眸只為那壹抹淺笑 提交于 2019-12-01 09:39:55
I am trying to make a movie, whilst creating frames through a loop. It is saving, but only the first frame (which it plays as a movie - short movie!) I've tried various things and cannot figure out what I am doing wrong. Thanks def synthesiseFrame(folder): folder =r"D:\FOLDER" m=0.5 for x in range(1,121): pic=makeEmptyPicture(960,540) for x in range (0,960): for y in range (0,540): r=#some code g=#some code b=#some code color =makeColor (r,g,b) px= getPixel (pic, x, y) setColor(px, color) numStr=str(x) m=m+0.0125 if x<10: writePictureTo(pic, folder+"\pic00"+numStr+".png") if x >=10 and x<100: