Osmf multiple video

Hello ,
I am trying to load two video in the same movie clip
I have 4 screens
some of the screen has 1 video some as two
It is working good , when I switch from 1 screen to another the video get erase
But when I open the Activity monitor
I can see that the real memory keep increased as you use the program
Its like something its not erased properly(maybe on the cleanVideo)
Here is my code
Thank you
private var arrayVideos=[["videos/Intro.flv",null],["videos/Conclusion.flv","videos/Intro.flv"],["vid eos/Into.flv",null],["videos/Conclusion.flv","videos/Intro.flv"]];
if (arrayVideos[i-1][1]!=null) {
                    MyWebPlayer(i);
                    MyWebPlayer2(i);
                } else {
                    MyWebPlayer(i);
public function MyWebPlayer(i) {
            if (myPlayer) {
                if (myPlayer.mediaPlayer.media!=null) {
                    myPlayer.cleanVideo();
            if (myPlayer2) {
                if (myPlayer2.mediaPlayer.media!=null) {
                    myPlayer2.cleanVideo();
            myPlayer=new videoController(arrayVideos[i-1][0],mainMc,0,i);
        public function MyWebPlayer2(i) {
            myPlayer2=new videoController(arrayVideos[i-1][1],mainMc,500,i);
and here is the videoController class
package
    import flash.display.MovieClip;
    import org.osmf.containers.MediaContainer;
    import org.osmf.media.*;
    import org.osmf.layout.LayoutMetadata;
    import org.osmf.elements.VideoElement;
    import org.osmf.net.NetLoader;
    import org.osmf.events.*;
    public class videoController
        private var mediaFactory:MediaFactory;
        private var mediaElement:MediaElement;
        public var mediaPlayer:MediaPlayer;
        private var mediaContainer:MediaContainer;
        public function videoController(VIDEO_URL:String, mainMC:MovieClip, position:Number,id:Number)
            init(VIDEO_URL,mainMC, position,id)
        public function init(VIDEO_URL:String, mainMC:MovieClip, position:Number,id:Number){
            mediaFactory = new DefaultMediaFactory();
            mediaElement = mediaFactory.createMediaElement(new URLResource(VIDEO_URL));
            var layout:LayoutMetadata = new LayoutMetadata();
            mediaElement.addMetadata(LayoutMetadata.LAYOUT_NAMESPACE, layout);
            mediaPlayer = new MediaPlayer();
            mediaPlayer.media = mediaElement;
            // mediaPlayer.addEventListener (MediaPlayerCapabilityChangeEvent.
            mediaContainer = new MediaContainer();
            mediaContainer.addMediaElement(mediaElement);
            var clip = mainMC.addChild(mediaContainer );
            clip.x = ((id - 1) * 1024)+position;
        public function cleanVideo(){
             mediaElement.removeMetadata(LayoutMetadata.LAYOUT_NAMESPACE);
             mediaContainer.removeMediaElement(mediaElement);
             mediaPlayer.media=undefined;

Right, I understand that. the video for this is just standard video but h.264 compression. I dont know how my description sounds like iPod video, i thought iPod video was 320x soome other number. Ultimately I want to use HD video on my future DVDs using h.264. Like i had said, I thought that the way to get HD Footage into DVD SP, was using h.264.
Also, correct me if I'm wrong, but I though I heard that the codec for HD DVDs or Blu-ray was h.264 and no longer mpeg2. maybe I heard wrong, im not sure.
I wanted to get Compressor going, but I no longer have the original install cds, so there is no way for me to re-install.

Similar Messages

  • Using ControlBarSample to Play Multiple Videos

    I'm trying to modify the ControlBarSample to play multiple videos and I'm running into a wall. I've made a few simple modifications to the control bar sample to try to play a second video file. The problem I'm having is the control bar doesn't have a reference to the new video I play and therefore can't update it's view. I'd like to be able to remove the video element playing in the ParallelElement and add a new child MediaElement and have the controlbar refresh it's reference to the new target. Also the controlbar shouldn't have to reload itself, but should stay right where it is in the display list and in the root parallel element. Can someone guide through this? Here is my simple modification to the ControlBarSample class as a starting point.
    package
         import flash.display.Sprite;
         import flash.events.MouseEvent;
         import flash.text.TextField;
         import org.osmf.elements.ParallelElement;
         import org.osmf.events.MediaFactoryEvent;
         import org.osmf.layout.HorizontalAlign;
         import org.osmf.layout.LayoutMetadata;
         import org.osmf.layout.VerticalAlign;
         import org.osmf.media.*;
         import org.osmf.metadata.Metadata;
         [SWF(width="640", height="360", backgroundColor="0x000000",frameRate="25")]
         public class ControlBarPluginSampleMod extends Sprite
              public function ControlBarPluginSampleMod()
                   // Construct an OSMFConfiguration helper class:     
                   osmf = new OSMFConfiguration();
                   // Construct the main element to play back. This will be a
                   // parallel element, that will hold the main content to
                   // playback, and the control bar (from a plug-in) as its
                   // children:
                   osmf.mediaElement = constructRootElement();
                   osmf.view = this;
                   // Add event listeners to the plug-in manager so we'll get
                   // a heads-up when the control bar plug-in finishes loading:
                   osmf.factory.addEventListener(MediaFactoryEvent.PLUGIN_LOAD, onPluginLoaded);
                   osmf.factory.addEventListener(MediaFactoryEvent.PLUGIN_LOAD_ERROR, onPluginLoadError);
                   // Ask the plug-in manager to load the control bar plug-in:
                   osmf.factory.loadPlugin(pluginResource);
                   // button to play the next item
                   var label:TextField = new TextField();
                   label.text = "PLAY NEXT";
                   label.x = 10;
                   label.y = 3;
                   label.mouseEnabled = false
                   button = new Sprite();
                   button.buttonMode = true;
                   button.addChild( label );
                   button.graphics.beginFill(0x00FFFF,1);
                   button.graphics.drawRect(0,0,90,20);
                   button.addEventListener(MouseEvent.CLICK, onButtonClick);
                   addChild(button);
              // Internals
              private var osmf:OSMFConfiguration;
              private var rootElement:ParallelElement;
              private var button:Sprite;
              private function onPluginLoaded(event:MediaFactoryEvent):void
                   // The plugin loaded successfully. We can now construct a control
                   // bar media element, and add it as a child to the root parallel
                   // element:
                   rootElement.addChild(constructControlBarElement());
              private function onPluginLoadError(event:MediaFactoryEvent):void
                   trace("ERROR: the control bar plugin failed to load.");
              private function constructRootElement():MediaElement
                   // Construct a parallel media element to hold the main content,
                   // and later on, the control bar.
                   rootElement = new ParallelElement();
                   rootElement.addChild( constructVideoElement(VIDEO_HTTP) );
                   // Use the layout api to set the parallel element's width and
                   // height. Make it as big as the stage currently is:
                   var rootElementLayout:LayoutMetadata = new LayoutMetadata();
                   rootElement.addMetadata(LayoutMetadata.LAYOUT_NAMESPACE, rootElementLayout);
                   rootElementLayout.width = stage.stageWidth;
                   rootElementLayout.height = stage.stageHeight;
                   return rootElement;
              private function constructVideoElement(url:String):MediaElement
                   // Construct a metadata object that we can append to the video's collection
                   // of metadata. The control bar plug-in will use the metadata to identify
                   // the video element as its target:
                   var controlBarTarget:Metadata = new Metadata();
                   controlBarTarget.addValue(ID, "mainContent");
                   // Construct a video element:
                   var video:MediaElement = osmf.factory.createMediaElement(new URLResource(url));
                   // Add the metadata to the video's metadata:
                   video.addMetadata(ControlBarPlugin.NS_CONTROL_BAR_TARGET, controlBarTarget);
                   return video;
              private function constructControlBarElement():MediaElement
                   // Construct a metadata object that we'll send to the media factory on
                   // requesting a control bar element to be instantiated. The factory
                   // will use it to parameterize the element. Specifically, the ID field
                   // will tell the plug-in what the ID of the content it should control
                   // is:
                   var controlBarSettings:Metadata = new Metadata();
                   controlBarSettings.addValue(ID, "mainContent");
                   // Add the metadata to an otherwise empty media resource object:
                   var resource:MediaResourceBase = new MediaResourceBase();
                   resource.addMetadataValue(ControlBarPlugin.NS_CONTROL_BAR_SETTINGS, controlBarSettings);
                   // Request the media factory to construct a control bar element. The
                   // factory will infer a control bar element is requested by inspecting
                   // the resource's metadata (and encountering a metadata object of namespace
                   // NS_CONTROL_BAR_SETTINGS there):
                   var controlBar:MediaElement = osmf.factory.createMediaElement(resource);
                   // Set some layout properties on the control bar. Specifically, have it
                   // appear at the bottom of the parallel element, horizontally centererd:
                   var layout:LayoutMetadata = controlBar.getMetadata(LayoutMetadata.LAYOUT_NAMESPACE) as LayoutMetadata;
                   if (layout == null)
                        layout = new LayoutMetadata();
                        controlBar.addMetadata(LayoutMetadata.LAYOUT_NAMESPACE, layout);
                   layout.verticalAlign = VerticalAlign.BOTTOM;
                   layout.horizontalAlign = HorizontalAlign.CENTER;
                   // Make sure that the element shows over the video: element's with a
                   // higher order number set are placed higher in the display list:
                   layout.index = 1;
                   return controlBar;
              private function onButtonClick(event:MouseEvent):void
                   playNext(VIDEO_RTMP);
              private function playNext(url:String):void
                   rootElement.removeChildAt(0);
                   rootElement.addChild( constructVideoElement(url) );
              /* static */
              private static const VIDEO_HTTP:String = "http://mediapm.edgesuite.net/osmf/content/test/logo_animated.flv";
              private static const VIDEO_RTMP:String = "rtmp://cp67126.edgefcs.net/ondemand/mediapm/strobe/content/test/SpaceAloneHD_sounas_640_500_short";
              private static var ID:String = "ID";
              // Comment out to load the plug-in for a SWF (instead of using static linking, for testing):     
              //private static const pluginResource:URLResource = new URLResource("http://mediapm.edgesuite.net/osmf/swf/ControlBarPlugin.swf");
              private static const pluginResource:PluginInfoResource = new PluginInfoResource(new ControlBarPlugin().pluginInfo);

    It appears that this may be accomplished more easily if I do something similar to the StrobeMediaPlayback implementation. Looking at the StrobeMediaPlayback source code it looks like Adobe has done something a little different than their ControlBarPlugin, placing the controlbar and root media element inside separate MediaContainers and then adding those containers to the display list. Is this recommended over using the frameworks ParallelElements? If so, is communication between the control bar and root media element still a matter of just updating the target reference via metadata?

  • How do I stop multiple videos from loading at the same time and playing while looking at any article on google news?

    Multiple videos load at once and start playing creating sound mess and sucking up ram. This is happening on Firefox on both Windows 8 and Windows 7 machines. This started about three weeks ago. I have run Avast, malwarebytes, hitman pro, and other malware killers. A new youtube setting appeared in settings, I have unticked everything. The videos do not appear to be youtube based.

    You could enable plugins click-to-play. Also, set the plugins to Ask to Activate rather than Always Activate. I also recommend the extension "Click to Play per-element".
    https://addons.mozilla.org/en-US/firefox/addon/click-to-play-per-element/

  • Multiple video playback issues

    Hi All,
    I would dearly appreciaty any light anyone could shed on this issue - I have run into a couple of Flash bugs that have stumped me for quite a while, and my deadline is aproaching fast.
    Essentially, I would like to play back 3 reasonably high res videos (On2 VP6-S) simultaneously in one Flash App (using flash.video, netstream and netconnect - code only). Unfortunately, when I do this, the video playback drops a lot of frames, however, CPU usage does not go much above 50% - spread over both cores. I'm using a Core2Duo. If I play the same 3 videos simultaneously in 3 separate flash apps (FP10), they play much better (and use close to 100% CPU). I even tried creating it as an AIR app with 3 separate windows (NativeWindow), but that made little difference. I have lodged this as a bug via the Flash Bug Reporting System (http://bugs.adobe.com/jira/browse/FP-2341).
    And yes, I do need to be doing something as crazy as this - it is for a pretty cool kiosk app, so I know what hardware will be used (and it has a good Graphics Card).
    One promising workaround appeared to be playing back a single NetStream in multiple Video instances, as it is NetStream that does the decoding, so I could decode once and present it in 3 places. Two of my video objects are actually the same flv (on different monitors), so there would be a 33% saving right there. If necessary, I could encode both flvs into a single 1920x1200 flv (I've checked - it would play back ok) and then use video.mask to show the relevant bits.
    However, another bug has been reported at http://bugs.adobe.com/jira/browse/FP-920 saying this does not work - Video in the object that last called attachNetStream(ns) will play, all others will freeze. They do mention a workaround that gets both videos to play - reset the size of freezed videos on ENTER_FRAME event. However, I cannot get this workaround to work - my first video is empty (not even frozen).
    So there are a couple of things I would love any feedback on. Firstly, if anyone has insights on how I could get this to work. Secondly, if anyone could try the "multiple videos on one netStream with workaround" code below (simply copy, paste and point to a relevant flv) and let me know if it works and the versions of software they used, I'd be very thankful.
    ---------------Code Begins-------------
    import flash.events.Event;
    import flash.media.Video;
    import flash.net.NetConnection;
    import flash.net.NetStream;
    showRedrawRegions(true); // both the placeholders and the entire window redraws every frame.
    // When only video1 is attached, only video1's region is redrawing
    // When both videos are attached, both video's regions are redrawing, BUT video1 is empty.
    trace ("Capabilities.version = " + Capabilities.version); // = WIN 10,0,22,91 // in Flash CS4 10.0.2
    //var nc:NetConnection = new NetConnection( null ); // Got Eror: 1137: Incorrect number of arguments. Expected no more than 0.
    var nc:NetConnection = new NetConnection();
    nc.connect(null);
    // Connect nc here ...? Unnecessary in this case?
    var ns:NetStream = new NetStream(nc);
    ns.client = new Object(); // Simplest way to deal with cuePoints and metaData by doing nothing. For more, see http://blogs.adobe.com/pdehaan/2006/07/playing_back_flvs_with_actions_1.html
    var stream:String = "test.flv";
    var video1:Video = new Video(); // Defaults to size of 320x240
    var video2:Video = new Video(); // Defaults to size of 320x240
    video2.x = 320;
    addChild(video1);
    addChild(video2);
    ns.play(stream);
    video1.attachNetStream(ns);
    video2.attachNetStream(ns);
    // PROBLEM: Video in the object that last called attachNetStream(ns) will play, all others will freeze.
    // See WORKAROUND below for solution:
    //WORKAROUND to stop the first split stream from freezing:
    addEventListener(Event.ENTER_FRAME, onEnterFrame);
    function onEnterFrame(e:Event){
    video1.width = 320;
    video1.height = 240;
    trace ("video1.videoWidth = " + video1.videoWidth);
    trace ("video2.videoWidth = " + video2.videoWidth);
    // When only video1 is attached, video1.videoWidth = 1920, video2.videoWidth = 0
    // When both videos are attached, video1.videoWidth = 0, video2.videoWidth = 1920
    ---------------Code Ends-------------
    Letting me know what exact versions of the following software was used would help a lot:
    - Windows/OS (e.g. XP SP3).
    - App code was written in. (e.g. Flash CS4 IDE 10.0.2, Flash Develop 3.0.1).
    - App code was compiled in. (e.g. Flash CS4 IDE 10.0.2, Flex SDK 3.4.0.6955).
    - Type and Version of Flash Player used (e.g. Standalone Debug Flash Player v10,0,22,91).
    The versions I used are listed above.
    Lastly, for what it is work, I found three interesting/informative results, but they didn't help me:
    - When only video1 is attached, video1.videoWidth = 1920, video2.videoWidth = 0
      When both videos are attached, video1.videoWidth = 0, video2.videoWidth = 1920
    - When only video1 is attached, only video1's region is redrawing
      When both videos are attached, both video's regions are redrawing, BUT video1 is empty.
    - var nc:NetConnection = new NetConnection( null ); // Got Eror: 1137: Incorrect number of arguments. Expected no more than 0.
      So I had to change it to:
        var nc:NetConnection = new NetConnection();
        nc.connect(null);
      Does this mean my NetConnection class is different and maybe incompatible with this workaround?
    Many, many thanks,

    How to view/hear pretty much everything:
    Assuming you already run OS 10.4.9 or above and have Quicktime 7.2, and are using Safari 2 or 3, download and install (or re-install even if you already had them) the latest versions, suitable for your flavor of Mac, of:
    RealPlayer from http://uk.real.com/player/
    Flip4Mac WMV Player from http://www.microsoft.com/windows/windowsmedia/player/wmcomponents.mspx (Windows Media Player for the Mac is no longer supported, even by Microsoft)
    Perian from http://perian.org/
    Adobe FlashPlayer from http://www.adobe.com/shockwave/download/download.cgi?P1ProdVersion=ShockwaveFlash
    In Quicktime Preferences, under advanced, UNcheck Enable Flash, and under Mime settings/Miscellananeous only check Quicktime HTML (QHTM).
    In Macintosh HD/Library/Quicktime/ delete any files relating to DivX (Perian already has them).
    The world should now be your oyster!
    You should also have the free VLC Player from http://www.videolan.org/ in your armory, as this plays almost anything that DVD Player might not.

  • Cannot select multiple video clips at a time

    With the previous version, I could simply select all and import all my videos and pictures at once, in the order I copied them to my hard drive. Now, I have to "select entire clip" then, press letter E on every video clip, then, go back and add pictures. This is a huge downgrade from the previous version of IMovie.

    hello ,thanks for jour mail ,but my English is very very bad sorry but
    many thank for your feedback. Hav a nice Day
    Am 09.12.2014 16:57, schrieb carpmusic:
    >
          Replace audio in multiple video clips at one time
    created by carpmusic <https://forums.adobe.com/people/carpmusic> in
    /Premiere Pro/ - View the full discussion
    <https://forums.adobe.com/message/6998981#6998981>

  • Multiple Video Cards - 4 monitors

    I was wondering if there was anyone out there that has a successful installation of multiple video cards. i.e. 1 AGP with dual ports and a PCI with dual ports. I would like to run 4 22" monitors on a G4. Just want to know if there were any reccomendations on card brands/types and configurations
    Have multiple Mac's from G4 733 Giga to G4 Dual drive... Lil help

    I'd reccomend using all ATI cards as they are/were better supported as far as multiple cards and features are concerned. A decent set up would be an ATI radeon 9800pro AGP with an ATI radeon 9200 PCI. Both are dual head and for PCI the 9200 is pretty good.

  • Playing multiple videos in sequence

    Hello all. I'm a complete newbie to Flash development, but
    have been thrown into it with not just a deadline, but a (to me)
    "complex" project. I have a Flash project which currently opens and
    plays a video as part of whats on "the stage". I now need to add 2
    more videos which will play, in sequence, after the first one
    finishes. I've gone through the tutorials, read the help files, and
    now I'm just feeling a bit "DUH" because I still can't figure out
    how to do this. Anybody out there care to help a poor ol' graphics
    guy avoid the bitter wrath of his boss?

    A single instance of FLVPlayback can handle multiple videos.
    I can't remember what the upper limit is. So you can switch between
    them based on user input. But I believe it can only ever play one
    at any one time. I've used FLVPlayback quite a lot but not for what
    you're describing, so can't answer from direct experience.
    Check out this page, and the trivial example at the end
    (whether its streaming or progressive is irrelevant here, streaming
    should work just as well, but perhaps you need to use SMIL files
    for the streaming contentPath?)
    http://livedocs.adobe.com/flash/9.0/main/00002980.html#wp3780233

  • Play multiple videos in sequence

    Hi,
    I've multiple videos stored in FMS and would like to merge them into a single video object in order to play all of them in sequence (so that a user thinks it's a single longer video). Is it possible?

    This is a link from 3.5 but have you tried this:
    http://www.overdigital.com/2009/08/02/flash-media-server-as-video-editingstitching-tool/

  • Snow Leopard iTunes 10.5 will not play multiple video tracks in QuickTime .MOV files

    I recently discovered that Snow Leopard iTunes version 10.5 won't play multiple video tracks in a QuickTime .MOV file.
    Both video tracks appear and play correctly when playing the file in:
    - QuickTime Player 10 or QuickTime Player 7.7 on the same Snow Leopard machine
    - iTunes 10.3.1 on another Snow Leopard machine
    - iTunes 10.5 on Leopard or Windows 7
    So I think the problem is iTunes 10.5 on Snow Leopard (although I haven't been able to test iTunes 10.4).
    First test file is two 640x480 video tracks side-by-side (total dimensions 1280x480):
    http://160.94.17.23/demo/two-video-tracks-1280x480.mov
    All I see is the first (left) video track, and not the right one.  iTunes "Get Info" command incorrectly reports the video dimensions of the file as 640x480.
    Second test file is two 640x480 video tracks played one after another (duration of 10 seconds each):
    http://160.94.17.23/demo/two-video-tracks-640x480.mov
    All I see is the first video track, and although it reports the correct file duration (20 seconds), the second video track never appears -- it simply freezes on the final frame of the first video track for the last 10 seconds.
    Anyone else see similar behavior?  Unless I'm missing something, I suppose I should submit this as a bug to Apple.

    I have the same problem, i tried re-installing, converting it to AVC H264 but none seems to work so far

  • How do I copy and paste text style for multiple video tracks?

    hello,
    I am creating multiple video tracks with text.  I want to easily copy and paste the style, i.e., Font, Color, Size - rather than having to scroll down the giant list of fonts to find the one I want, then change the color, then change the size - each and every time.  This is arduous.
    I tried copy / paste of one text onto a new video track, but when I type in a different word, it alters the original.
    I have 9 tracks of video for 9 different texts that will pop in and out of my video.  I would like to be able to copy/paste then just change the text.  This would save me a huge amount of time.

    paulrudophmusic
    I know of no way to alphabetized the Adobe Styles that come with the program.
    If you had the time and the inclination, you could rename them all to force them to appear alphabetically, but that does not seem all that practical.
    But, if your interest is in the Styles that you save and you do not hit the Reset File List, the new Styles will be at the bottom of the list and you can name them so that they appear that alphabetically at the bottom of the whole Styles list. But that does not address the matter of you having to scroll to the bottom of the Styles list.
    In some instances, some things that you think that you cannot do in Premiere Elements obvious features, can be done by computer keyboard shortcuts. I check the keyboard shortcuts under the Edit Menu/Keyboard Customization and unfortuately did not find any that would be applicable to this situation.
    As for your changes in one text file popping up unwantedly in another text file, that is because you have text files with the same name. Look into creating duplicates (with different file names) in Project Assets at the onset.
    ATR

  • Multiple video displays

    Hi,
    I'm looking at different methods of sychronizing multiple
    videos accross multiple displays and wondered if the best way to do
    this would be via flash video of a media centre streaming to
    seperate machines and their displays, could anybody advise me on
    this.
    Thanks in Advance
    Jack

    With the new Mac Pro 2009-03 models, Quad-Core Intel Xeon.
    Is it possible to run eight Apple Cinema Display 30" monitors?
    Yes.
    This would require four single-slot Video Cards with two Dual-DVI outputs each.
    The default NVIDIA GeForce GT 120 512MB card has one Dual-DVI and one single DVI, so it would not do the job.
    No. It has one dual-link DVI port and one Mini DisplkayPort. With a Dual-Link Mini DisplayPort to DVI adapter it can run two 30" displays.
    <http://store.apple.com/us/product/MB571Z/A?fnode=MTY1NDA5OQ&mco=MjkyNjI0Mg>
    Likewise with the ATI Radeon HD 4870.
    It also can run two 30" displays when used with the adapter, but it uses too much power to use with three other cards.
    So what Video cards would be specified?
    Four NVIDIA GeForce GT 120 or ATI Radeon HD 2600 XT. You could also use three of these cards and one GeForce 8800GT. It has to be the one made for the 2008 Mac Pro (and is no longer being sold).
    Is this even possible?
    Yes.
    And is there enough power supply available for four such video cards?
    Yes. Apple sells (sold) systems with four of these cards.
    I understand the ATI Radeon HD 2600 XT Graphics 256MB GDDR3 is not compatible with the new systems, and it only offers one Dual-DVI & one Single-DVI port.
    No and no. It is compatible, and has two dual-link DVI ports.

  • How can I set multiple videos to "TV Show"?

    I'm importing an entire season and they all default to "Movie". So, I know that I can set the video type to "TV Show", but if I select more than one video, there is no "Video" tab. Does anyone know how to set the types of multiple videos at once?

    This is a good question and I haven't found a method yet either. This seems to be an oversight on Apple's part.
    Message was edited by: Conal Ho

  • How to import multiple videos to project at once?

    Bonjour, first off, I love the iMovie iOS app, however, I feel it's missing a key feature. Is there a way for me to add multiple videos into a project at once without having to select them individually, and have the screen close, then having to re open it, and search for the other, and so on and so forth.
    It would be so much easier if I could just select multiple videos from the import feature on my phone. The videos take a while as it is to load in the feature, my project is being created from oldest to newest,  so I have to scroll all the way down to the bottom of the list, wait for all the videos to load so I can, and then an only select one so I must repeat the process.
    Any way around this yet?

    Import all your videos into iPhoto's library.
    Step 1: Plug your phone into your computer
    Step 2: open iPhoto (or if you have an iPhone it should open automatically)
    Step 3: click on you phone under "Devices"
    Step 4: hold down the "Command" key while selecting ALL the videos you want to import
    Step 5: Under "Event Name" give all your videos a general title (ie. Vacation)
    Step 5: Import
    Step 6: Open iMovie and look for the event name under Event Library
    Hope this helps!

  • Can't select multiple video clips to import into iMovie

    Hi, i can't select multiple video clips to import into iMovie, it only lets me import one video at a time. Apple please fix in next update or if anyone has a solution please post.

    Obviously you can not select the video to import until after iMovie populates the list of videos that are available to be imported
    LN

  • Replace audio in multiple video clips at one time

    Hello. I am new to the forum so I apologize if I break any of the rules!
    I have a collection of tutorial videos, all edited but the audio had some balance issues. The files were not in Premiere Pro at the time. They are the final edited videos but then I was told the audio needed to be adjusted. 
    I have re-balanced the audio, saved the audio as wav files and now I need to replace the old audio (in the finished video file) with the new audio (the wav files I edited and saved). The timing is all the same. It's just a matter of replacing the current file.
    Is this doable as a batch process? Is it doable in Premiere Pro or do I need to use Audition or some other Adobe software?
    I hope this makes sense.
    Thank you in advance!
    Alan Read
    SC, USA

    hello ,thanks for jour mail ,but my English is very very bad sorry but
    many thank for your feedback. Hav a nice Day
    Am 09.12.2014 16:57, schrieb carpmusic:
    >
          Replace audio in multiple video clips at one time
    created by carpmusic <https://forums.adobe.com/people/carpmusic> in
    /Premiere Pro/ - View the full discussion
    <https://forums.adobe.com/message/6998981#6998981>

Maybe you are looking for