Dynamic Photo Montage ???

Hey...
The band recently released our debut CD; & we'd like to
get up to speed on the video presentation end. We've noticed that
many acts, here & there on the web...in lieu of having a full
fledged
music video...have a
Flash movie (or some sort of video presentation) whereby
still photos move around & display in a clever dynamic
arrangement...fading in & shifting about...rolling &
tumbling into place in an artsy layout, etc.
Is this primarily done in Flash; & if so...how?
Are there templates available?
Are there tutorials available?
Thanks,
mark4man
Flash MX Pro (v7.2)
BTW - Only used the program a few times.

quote:
Is this primarily done in Flash; & if so...how?
Who knows... could be done in flash, imported as
a video, a mixture of flash and video - several possibilities
quote:
Are there templates available?
I don't know why there would be. Something like
this would be strictly up to the creator, so I don't think
templates would give you much customization.
quote:
Are there tutorials available?
same as above

Similar Messages

  • Can Premier Pro Do This...???...(need help w/ FAST photo montage!)

    well folks...
    i'm really in trouble
    i moved sony vegas (8.0) from my office pc to my recording/mastering studio's audio pc...(w/ it's quad IV cpu & tons of RAM)
    & now...after moving along quite nicely...all of a sudden the project video screen (lower right) went completely RED...& the project doesn't repond to ANY controls...!!!...seized up tighter than a duck's protuberance.
    (just like it did on my office pc)
    I rebooted the machine, but that didnt help
    so...i'll never make my deadline...on a very important dynamic photo montage i'm constructing for my brother's 50th wedding anniversay...so:
    I know premier pro is wonderful for movie editing/creating...but...can it do a dynamic photo montage...???...the kind where one photo image transistions to the next...(w/ music)...& if so...does it have great transition effects & fades & text features (for that job) such as scrolling titles, etc...???
    if not...can someone recommend me a program that DOES (in the vein of sony vegas)...???
    thanx,
    mark4man

    i got it...i got it...!!!
    so...this 1st screen shot is from an old scanned print; & you can see both pix X pix & document size:
    obviously if i uncheck Resample Image...i can't change the pixel dimensions...so I simply did this:
    so...is this now my optimum pixel dimensions for HD...(for that particular shot)...???
    AND...it's OK that the document size differed (down to 2.283" X 1.8") while remaining at 600ppi...for HD...???
    (see...i always assumed that, because there are a gazillion pixels on my 46" LED HD TV...I had to make my scan resolution as great as possible to fill that screen)...& you two are telling me that, because the pix dimension width is now 1080...that shot won't look pixelated (up-sampled) when the movie is played on an HD TV...???
    if so...i'm good w/ the info you've given me (actually, great).
    thanx a gazillion,
    mark4man

  • Dynamic Photo Gallery in Flash using AS3.0 and XML, but it doesn't work and missed up my app.

    Hi,
    I am creating an iPad app using AS3. The app contains three sections.
    One of those sections (chocolate sources)contains Dynamic Photo Gallery using XML. The photos, thumbnails, and text in this section are loaded from XML.
    I faced may issue when I tried to run this app:
    The gallery photos didn't show up
    The thumbnails (buttons to navigate the photo gallery) didn't show up at all. (The thumbnails should show up under the photo gallery box.)
    The text doesn't show up (the text should be in every photo as describtion)
    I want to include Swipe in the photo gallery, how can I do that?
    When I click on "Chocolate Sources" button, the photo gallery appears in every section, here are print screens describe what I mean:
    The photo gallery covers the home screen too.
    Here is my XML:
    <?xml version="1.0" encoding="utf-8"?>
    <sources>
              <section>
                        <details>
                                            Cocoa tree exists in the tropics area, such as Central and South America.
                                  </details>
                                            <image>
                                                      <url>coca1.jpg</url>
                                                      </image>
                                                      </section>
              <section>
                        <details>
                        Cocoa is supplied in many countries such as Indonesia, Ghana, Brazil, Ecuador and Cameroon.
                        </details>
                                  <image>
                                  <url>coca2.jpg</url>
                                  </image>
                                            </section>
              <section>
                                  <details>
                                  Dark chocolate helps to relax and reduce the stress and blood pressure because it has antioxidants elements, which helps in vasodilatory process.
                                  </details>
                                            <image>
                                            <url>coca3.jpg</url>
                                                      </image>
                                                                </section>
              <section>
                        <details>
                        Chocolate provides energy and hyperactive sometimes because it contains high level of caffeine and sugar.
                        </details>
                                  <image>
                                  <url>coca4.jpg</url>
                                            </image>
                                                      </section>
              <section>
                        <details>
                        Chocolate could be mixed with many different flavors, such as mint, strawberry, orange, banana, vanilla, hazelnut, almond, coconut, and etc.
                        </details>
                                  <image>
                                  <url>coca5.jpg</url>
                                  </image>
                                            </section>
              <section>
                        <details>
                                  Chocolate is expressing of well hospitality and good time due to its lovely taste.
                                  </details>
                                            <image>
                                            <url>coca6.jpg</url>
                                                      </image>
                                                                </section>
    </sources>
    And here is my Action Script for "Chocolate Sources" section:
    stop();
    function Choco1(evt:MouseEvent): void {
              gotoAndStop('16');
    choco_btn.addEventListener(MouseEvent.CLICK,Choco1);
    function Souc1 (evt:MouseEvent): void {
              gotoAndStop ('31');
    souc_btn.addEventListener(MouseEvent.CLICK,Souc1);
    function ShopIn1 (evt:MouseEvent):void {
              gotoAndStop('46');
    shops_btn.addEventListener(MouseEvent.CLICK,ShopIn1);
    import flash.net.URLLoader;
    import flash.net.URLRequest;
    import flash.events.Event;
    import flash.display.MovieClip;
    import flash.display.Loader;
    import fl.motion.MotionEvent;
    import flash.events.MouseEvent;
    import flash.sampler.NewObjectSample;
    import flash.text.TextFormat;
    var xmlLoader: URLLoader = new URLLoader (new URLRequest("sources.xml"));
    xmlLoader.addEventListener(Event.COMPLETE, finishedXmlLoader);
    var xmlFile:XML;
    var xextend:int = 10;
    var gal:galary = new galary ();
              gal.x = 85;
              gal.y = 165;
              addChild(gal);
    var txfe: TextField = new TextField ();
    txfe.x = 25;
    txfe.y = 45;
    var tformat:TextFormat = new TextFormat ();
    tformat.bold = true;
    tformat.color = 0xFFFFFF;
    tformat.size = "18";
    tformat.font = "Arial";
    txfe.defaultTextFormat = tformat;
    addChild(txfe);
    function finishedXmlLoader (e:Event): void{
              xmlFile = new XML (xmlLoader.data);
              var leng:int = xmlFile.image.length();
              txfe.text = xmlFile.image.details[0];
              for (var i:int = 0;i<leng;i++){
                        var b:thumbs = new thumbs ();
                        b.x = xextend;
                        b.y = 480;
                        b.buttonMode = true;
                        b.details = (i+1).toString();
                        addChild(b);
                        b.addEventListener(MouseEvent.MOUSE_OVER, theMosover);
                        b.addEventListener(MouseEvent.MOUSE_OUT, theMosout);
                        b.addEventListener(MouseEvent.CLICK, onMosClick);
                        var bloader:Loader = new Loader();
                        bloader.load(new URLRequest("thumbs/" + (i+1) + ".jpg"));
                        b.addChild(bloader);
                        xextend += b.width + 50;
    var loader:Loader = new Loader ();
    loader.load(new URLRequest ("pictures/coca1.jpg"));
    gal.addChild(loader);
    function theMosover(m:MotionEvent):void{
              m.currentTarget.alpha = 0.5;
    function theMosout (m:MouseEvent):void{
              m.currentTarget.alpha = 1.0;
    function onMosClick(m:MouseEvent):void{
              var loader:Loader = new Loader();
              loader.load(new URLRequest("pictures/" + m.currentTarget.details + ".jpg"));
              gal.addChild(loader);
              txfe.text = xmlFile.image.details[int(m.currentTarget.details) -1];
    I need an urgent help to fix the errors and make this section work well.
    thanks.

    try:
    txfe.text = xmlFile.section[int(m.currentTarget.details) -1].details;
    instead of
    txfe.text = xmlFile.image.[int(m.currentTarget.details) -1];
    and add your thumbs to gal, not the stage.  when you're done with the gallery, remove gal.

  • Dynamic photo gallery in flex

    superb post for a Dynamic photo gallery using a xml generated flex application http://flexlearner.wordpress.com/2009/09/04/dynamic-photo-gallery-in-flex/

    try:
    txfe.text = xmlFile.section[int(m.currentTarget.details) -1].details;
    instead of
    txfe.text = xmlFile.image.[int(m.currentTarget.details) -1];
    and add your thumbs to gal, not the stage.  when you're done with the gallery, remove gal.

  • Photo montage Ken Burns effect w/ variable intervals synced to music cues

    I was thinking of buying Final Cut Pro to create a photo montage because iMovie does not let you define the specific timings for each photo montage. For example, I need one photo to show for 3 seconds and transition to another photo that lasts 5 seconds because of the way the music flows.
    I start with music and I'm adding photos to specific points of music changes.
    My question: the tutorials I've found on google all use Final Cut Pro. Can I accomplish the same task with the cheaper Express version?
    Here are the tutorials that show what I want to do:
    http://www.geniusdv.com/newsandtutorials/2008/08/photo-montage-to-the-music-with-final-cut-pro.php
    http://www.geniusdv.com/newsandtutorials/2008/05/ken-burns-effect-photo-montage-in-final-cut-pro.php
    Can I use the techniques described in those 2 links in Final Cut EXPRESS?
    Thanks for the info.

    Tom Wolsky wrote:
    This information is probably obsolete. FCE supports 1920x1080.
    Now I'm confused about FCE max resolution. I found this soundbite on the web... a user says:
    "There is also the consideration that FCE 4.0x won't natively export 1920x1080, which I think is very disappointing -- the software engine is limited to 1440x1080. FCP does true HD from what I understand."
    I'm not sure if he's saying the FCE "engine" doesn't support 1920x1080 or if AIC doesn't support 1920x1080 or something else.

  • Dynamic photo album

    Hello.
    I am trying to create a dynamic photo album.
    private var xmlString:URLRequest;
    private var xmlLoader:URLLoader;
    private var index:int;
    private var pages:Array;
    private function init():void {
    xmlString = new URLRequest("gallery.xml");
    xmlLoader = new URLLoader(xmlString);
    index = 2;
    pages = new Array();
    xmlLoader.addEventListener(Event.COMPLETE, initData);
    private function initData(event:Event):void {
    var albumsXML:XML = XML(xmlLoader.data);
    var entries:XMLListCollection = new
    XMLListCollection(albumsXML.children());
    for (var i:int = 0; i < entries.length; i++) {
    var albumName:String =
    entries.getItemAt(i).attribute("location");
    //trace("album name: " + albumName);
    var imagesEntry:XMLListCollection = new
    XMLListCollection(entries.getItemAt(i).children());
    for (var j:int = 0; j < imagesEntry.length; j++) {
    var imageSource:String =
    imagesEntry.getItemAt(j).attribute("source");
    //trace("image source: " + imageSource);
    addPage(albumName+imageSource, index++);
    private function addPage(imageSource:String, index:int):void
    var page:PortratePage = new PortratePage();
    page.addEventListener(FlexEvent.CREATION_COMPLETE,
    onPageCreated);
    var pageAttributes:ArrayCollection = new ArrayCollection();
    pageAttributes.addItem(imageSource);
    pageAttributes.addItem(index);
    pages[page] = pageAttributes;
    trace(pages[page] + "," + pages.length);
    private function onPageCreated (event:FlexEvent):void {
    //do stuff
    XML data is loaded just fine and the addPage function gets
    called.
    In it, I initialize a new page (external PortratePage.mxml),
    but the handling onPageCreated function is never called.
    I was told that initializing mxml instances is done
    asynchronously, that's why I need to define a CREATION_COMPLETE
    event but for some reason it does not work.
    Anyone has any idea why?
    BTW: is there a way to make external mxml objects
    initialization to be synchronously?
    Thanks
    Sefi

    FlexEvent.CREATION_COMPLETE might not be dispatched unless
    PortratePage is somehow a decendant of UIComponent. Or maybe you
    could define your own event in PortratePage and dispatch it at the
    right time.

  • Dynamic Photo Gallery with Static Links

    The Dynamic Photo Gallery has a Dynamic List Menu generated from the galleries.xml file.
    I would like to load the Dynamic Galleries with a link if possible. Currently I have 3 Galleries.... China, Eqypt & Paris
    Dynamic Code:
    <select name="gallerySelect" id="gallerySelect" onchange="dsGalleries.setCurrentRowNumber(this.selectedIndex);" spry:repeatchildren="dsGalleries" spry:choose="choose">
            <option spry:when="{ds_RowNumber} == {ds_CurrentRowNumber}" selected="selected">{sitename}</option>
            <option spry:default="default">{sitename}</option>
          </select>
    I am using some code from V1 that generates a Gallery List as follows:
    <ul spry:repeatchildren="dsGalleries">
      <li><a href="#{ds_RowNumber}" onclick="dsGalleries.setCurrentRowNumber(this.href.replace(/\#/g,''));">{sitename}</a></l i>
          </ul>
    This works to display the dynamic Galleries but, the links do not connect to the specific galleries.
    Can anyone please help with this?
    Thank you,
    W Bell

    Sorry for not beeing to respond to your issue sooner, but i'm having some deadlines that needed to be worked on.
    This works to display the dynamic Galleries but, the links do not connect to the specific galleries.
    Can anyone please help with this?
    Can you resend me the url again, as i needed clear my inbox because i reached maximum amount of messages.

  • Can I create a still photo montage in one frame with imovie 08?

    I want to cut a part of several single frames in imovie, and paste each of them in one single frame in imovie, or iphoto, so that I can print a single photo montage of all the cut images. Is this possible in imovie 08 and iphoto, and if not, does anyone know what software will do this?
    Thanks, Rick

    Sorry this isn't possible in im08, try creating single frames in PS and importing them into imovie.

  • Trying to find photo montage software

    Hi,
    There is a website for a video production co. out there and I'm trying to find out which software they use. Website is jandrvideo.com. I love their sample productions, especially photo montages. Can anyone tell me?
    Thanks,
    Connie

    No, you aren't missing anything, Photostream isn't on the iCloud.com webpage. You can reset Photostream from there though by clicking on your name on the main page and choosing the advanced option.

  • How to align eyes in photo montage ?

    I'm doing a "daily photo" montage of me and have more than 500 photos of my face. I just want my eyes to align perfectly in the different photos so when I play them fast, my face is constantly well positioned and blend perfectly with the other photos. How can I do this easily ?

    create a graphic element in photoshop (or similar) with two small spots or bullseyes as an alignment guide for your eyes (make sure the rest of the frame is transparent).
    Place it on a layer above your main timeline, and have fun.
    When you're ready to export, remove the alignment clip.
    The trick is getting the faces to align with the guides

  • Dynamic Photo Album using JSP

    Hi all,
    I've been having a bit of trouble getting help with my question - I've tried a couple of usenet groups, however don't seem to be asking the right question. So, I'm hoping that some Java forums may be of more relevance. I'm sorry if this is the wrong place, and if there is a better place for me to ask my question if you could tell me where that is, I'ld be greatful.
    I am looking at finding/ making an online dynamic photo album which
    uses JSP. I've seen a lot of examples using PHP and a few online
    albums using Javascript, however those albums using JavaScript are not
    dynamic - the images are hard coded.
    My scenario is this, we have about 6 different events with about 150
    photos each. What I would like to happen is to be able to have a index
    page which lists 10 photos each, and when you click on the photo to be
    taken to a secondary page with a larger image. I would like to do this
    without needing to create 150 dependant pages.
    I understand that we will be looking at using server side technology.
    As our pages already use JSP we don't want to add a second server side
    language (PHP, Pearl etc...) to the equation.
    So does anyone know of a script that may already do this? As I seem to be having no luck in finding one to suit my purpose, I would be happy to create my own script.
    The problem is that I am not too familiar with JSP - though I used to do a fair bit of ASP using VB Script. What I would like is to be pointed into a page that will show me how to create an array with a list of filenames in a given directory (using a Site relative path). From there I should be right, but I can't seem to find any references to how this can be done using JSP (or even Javascript).
    If anyone can help me I would greatly appreciate it.
    Regards
    Linda

    You need to File class, it can produce a list of files in a directory.
    File photodir = new File("c:/path/to/photos");
    File[] photos = photodir.listFiles();
    for(int i = 0; i < photos.length; i++){
    File fp = photos;
    if(fp.isFile()){
    // check to see if it is an image

  • Photo montage question

    Hello everyone, I'm having a problem with creating a photo montage. It seems that imovie is distorting my blacks to the point of which the image looks terrible. I tried downsizing a full res tiff to 1920x1280 but its not doing much. Am I missing a step in the process or is this just something you have to deal with?

    video is much higher compressed than stills.
    plus, the compressor codecs are optimized for 'motion', plain colors or shades of grey push them to their limits.
    try different export settings: Export with Quicktime, Options, h264, Options: set a higher bit-rate as 6-9000 KB/s.

  • Ambitious project with 3D Photo Montage, Questions..

    Hey guys, I've been using Final Cut for a while, I finally started putting my foot down on Motion 3 (it's been an afterthought, but when I purchased FCS 2, I knew I'd have to learn it sooner or later), and became interested in doing a 3d photo montage, cutting out my subjects from their backgrounds and breathing life into them. I'll be breaking my question down into a lame outline haha just so my question doesn't sound too broad or boring.
    The Plan-
    I'll be putting together a 5-10 minute photo montage for my sister when she gets married, and I've got plenty of time alloted to do this project.
    The Vision-Create a 3d world of photographs of my sister and her soon-to-be-husband, photographs may range up to 80 photographs. Basically animate a single photo that is cut into different layers, then fly/dolly onto the next photograph.
    The Question-Can Motion handle such a workload? (I assume yes) Or better yet, is there a workflow I should use? I hear that a Motion Project can get bogged down easily if there's too much stuff.
    Other info, these photos are coming from scans, point and shoot cameras, and my nikon d90, all mixed into an Aperture Library, rated, color corrected, etc. Then I send them to Photoshop to break down the photograph into layers.
    If you guys have ANY advice, this would be great, I want to put something wonderful together for my sis, this would be my most ambitious project yet.
    And one last thing, i did get a tutorial video from Ripple Training, the "Motion 3 Fast Forward" from Mark Spencer (awesome job man), and I did learn how to do it, my question is how far can I take it with Motion?

    Down-res your photos as much as you possibly can and you should be ok.
    Here's a 2-part tutorial on doing a 3D photo fly-through:
    Part 1: http://www.rippletraining.com/movies/Free%20Downloads/motionpsd_in_space960.mov
    Part 2: http://provideocoalition.com/index.php/smartin/video/animatingphotoshop_layers_in_motionredux/

  • Elements 11 Editor crashes: photo montage issue

    I'd like to make a photo montage (not collage) for someone's birthday but am experiencing difficulty because the Editor keeps crashing.
    This is similar to what I'm trying to create (taken from a commercial site):
    Using Elements 11 I'm selecting parts of photos the individual appears in and pasting each one into a new file, then adding a 10 px white outline to each selection using Stroke (Outline) Selection from the Menu. The aim being to compile all of them into a photo montage where each photo in it is distinct, due to the 10px white outline.
    So far so good! When I try to save the file, however, after adding the white outline, the option for where to save the picture is displayed for several seconds but before I've finished typing the destination the Editor crashes, logs me out of the application and virtually all the menu options in Elements 11 become greyed out. My screen then displays the picture with the border I was working on but I'm then unable to close the application normally (or to save it) and have to force quit the application using the Activity Monitor.
    I'm using:
    OS X 10.9
    2.7GHx Intel Core i5
    8GB 1600 MHz DDR3 memory
    Elements 11 is up to date
    Any help will be much appreciated, thankyou

    Hi Barbara thanks for the link
    I'd already used the second option mentioned in it to access the Library: ie Finder > Go > Alt click. 
    I found this file list in the Library under Preference Panes > Preferences. If this is the correct file list which of these need to be deleted please?
    I searched in vain for the first file you mention: com.adobe.PhotoshopElements.plist:

  • I'm doing a photo montage.if the size of image is too big like 3mb per pic

    i'm doing a photo montage.if the size of image is too big like 3mb per pic, will it make the rendering too slow ?

    File size has nothing to do with rendering performance. Search the forum, there's tons of threads on this. and by all means, read some basics:
    Getting started with After Effects
    Mylenium

Maybe you are looking for