Clip size issues

I have a sequence of all ProRes coded clips that I brought into a new sequence that has settings to be displayed onto an NTSC monitor. Everything looks how it should, except for a few random clips that are huge and wont fit on the screen. When I choose the "fit to screen" option in the canvas pull down window the picture only shrinks a small amount. Even adjusting the size with the wire frame won't get them exactly right.
What am I doing wrong here?

Load one of the weird clips into the Viewer, open the Motion tab, adjust the scale.
If your HD material is 16x9 it will never fit a 4x3 aperture.
"Fit to screen" only adjusts the sie of the playback image in the Canvas, has nothing to do with the scaling of the clip.
bogiesan

Similar Messages

  • Paper Size issues with CreatePDF Desktop Printer

    Are there any known paper size issues with PDFs created using Acrobat.com's CreatePDF Desktop Printer?
    I've performed limited testing with a trial subscription, in preparation for a rollout to several clients.
    Standard paper size in this country is A4, not Letter.  The desktop printer was created manually on a Windows XP system following the instructions in document cpsid_86984.  MS Word was then used to print a Word document to the virtual printer.  Paper Size in Word's Page Setup was correctly set to A4.  However the resultant PDF file was Letter size, causing the top of each page to be truncated.
    I then looked at the Properties of the printer, and found that it was using an "HP Color LaserJet PS" driver (self-chosen by the printer install procedure).  Its Paper Size was also set to A4.  Word does override some printer driver settings, but in this case both the application and the printer were set to A4, so there should have been no issue.
    On a hunch, I then changed the CreatePDF printer driver to a Xerox Phaser, as suggested in the above Adobe document for other versions of Windows.  (Couldn't find the recommended "Xerox Phaser 6120 PS", so chose the 1235 PS model instead.)  After confirming that it too was set for A4, I repeated the test using the same Word document.  This time the result was fine.
    While I seem to have solved the issue on this occasion, I have not been able to do sufficient testing with a 5-PDF trial, and wish to avoid similar problems with the future live users, all of which use Word and A4 paper.  Any information or recommendations would be appreciated.  Also, is there any information available on the service's sensitivity to different printer drivers used with the CreatePDF's printer definition?  And can we assume that the alternative "Upload and Convert" procedure correctly selects output paper size from the settings of an uploaded document?
    PS - The newly-revised doc cpsid_86984 still seems to need further revising.  Vista and Windows 7 instructions have now been split.  I tried the new Vista instructions on a Vista SP2 PC and found that step 6 appears to be out of place - there was no provision to enter Adobe ID and password at this stage.  It appears that, as with XP and Win7, one must configure the printer after it is installed (and not just if changing the ID or password, as stated in the document).

    Thank you, Rebecca.
    The plot thickens a little, given that it was the same unaltered Word document that first created a letter-size PDF, but correctly created an A4-size PDF after the driver was changed from the HP Color Laser PS to a Xerox Phaser.  I thought that the answer may lie in your comment that "it'll get complicated if there is a particular driver selected in the process of manually installing the PDF desktop printer".  But that HP driver was not (consciously) selected - it became part of the printer definition when the manual install instructions were followed.
    However I haven't yet had a chance to try a different XP system, and given that you haven't been able to reproduce the issue (thank you for trying), I will assume for the time being that it might have been a spurious problem that won't recur.  I'll take your point about using the installer, though when the opportunity arises I might try to satisfy my cursed curiosity by experimenting further with the manual install.  If I come up with anything of interest, I'll post again.

  • Smartcardio ResponseAPDU buffer size issue?

    Greetings All,
    I’ve been using the javax.smartcardio API to interface with smart cards for around a year now but I’ve recently come across an issue that may be beyond me. My issue is that I whenever I’m trying to extract a large data object from a smart card, I get a “javax.smartcardio.CardException: Could not obtain response” error.
    The data object I’m trying to extract from the card is around 12KB. I have noticed that if I send a GETRESPONSE APDU after this error occurs I get the last 5 KB of the object but the first 7 KB are gone. I do know that the GETRESPONSE dialogue is supposed to be sent by Java in the background where the responses are concatenated before being sent as a ResponseAPDU.
    At the same time, I am able to extract this data object from the card whenever I use other APDU tools or APIs, where I have oversight of the GETRESPONSE APDU interactions.
    Is it possible that the ResponseAPDU runs into buffer size issues? Is there a known workaround for this? Or am I doing something wrong?
    Any help would be greatly appreciated! Here is some code that will demonstrate this behavior:
    * test program
    import java.io.*;
    import java.util.*;
    import javax.smartcardio.*;
    import java.lang.String;
    public class GetDataTest{
        public void GetDataTest(){}
        public static void main(String[] args){
            try{
                byte[] aid = {(byte)0xA0, 0x00, 0x00, 0x03, 0x08, 0x00, 0x00};
                byte[] biometricDataID1 = {(byte)0x5C, (byte)0x03, (byte)0x5F, (byte)0xC1, (byte)0x08};
                byte[] biometricDataID2 = {(byte)0x5C, (byte)0x03, (byte)0x5F, (byte)0xC1, (byte)0x03};
                //get the first terminal
                TerminalFactory factory = TerminalFactory.getDefault();
                List<CardTerminal> terminals = factory.terminals().list();
                CardTerminal terminal = terminals.get(0);
                //establish a connection with the card
                Card card = terminal.connect("*");
                CardChannel channel = card.getBasicChannel();
                //select the card app
                select(channel, aid);
                //verify pin
                verify(channel);
                 * trouble occurs here
                 * error occurs only when extracting a large data object (~12KB) from card.
                 * works fine when used on other data objects, e.g. works with biometricDataID2
                 * (data object ~1Kb) and not biometricDataID1 (data object ~12Kb in size)
                //send a "GetData" command
                System.out.println("GETDATA Command");
                ResponseAPDU response = channel.transmit(new CommandAPDU(0x00, 0xCB, 0x3F, 0xFF, biometricDataID1));
                System.out.println(response);
                card.disconnect(false);
                return;
            }catch(Exception e){
                System.out.println(e);
            }finally{
                card.disconnect(false)
        }  

    Hello Tapatio,
    i was looking for a solution for my problem and i found your post, first i hope your answer
    so i am a begginer in card developpement, now am using javax.smartcardio, i can select the file i like to use,
    but the problem is : i can't read from it, i don't now exactly how to use hexa code
    i'm working with CCID Smart Card Reader as card reader and PayFlex as smart card,
              try {
                          TerminalFactory factory = TerminalFactory.getDefault();
                      List<CardTerminal> terminals = factory.terminals().list();
                      System.out.println("Terminals: " + terminals);
                      CardTerminal terminal = terminals.get(0);
                      if(terminal.isCardPresent())
                           System.out.println("carte presente");
                      else
                           System.out.println("carte absente");
                      Card card = terminal.connect("*");
                     CardChannel channel = card.getBasicChannel();
                     ResponseAPDU resp;
                     // this part select the DF
                     byte[] b = new byte[]{(byte)0x11, (byte)0x00} ;
                     CommandAPDU com = new CommandAPDU((byte)0x00, (byte)0xA4, (byte)0x00, (byte)0x00, b);
                     resp = channel.transmit(com);
                     System.out.println("Result: " + getHexString(resp.getBytes()));
                        //this part select the Data File
                     b = new byte[]{(byte)0x11, (byte)0x05} ;
                     com = new CommandAPDU((byte)0x00, (byte)0xA4, (byte)0x00, (byte)0x00, b);
                     System.out.println("CommandAPDU: " + getHexString(com.getBytes()));
                     resp = channel.transmit(com);
                     System.out.println("Result: " + getHexString(resp.getBytes()));
                     byte[] b1 = new byte[]{(byte)0x11, (byte)0x05} ;
                     com = new CommandAPDU((byte)0x00, (byte)0xB2, (byte)0x00, (byte)0x04, b1, (byte)0x0E); */
                        // the problem is that i don't now how to built a CommandAPDU to read from the file
                     System.out.println("CommandAPDU: " + getHexString(com.getBytes()));
                     resp = channel.transmit(com);
                     System.out.println("Result: " + getHexString(resp.getBytes()));
                      card.disconnect(false);
              } catch (Exception e) {
                   System.out.println("error " + e.getMessage());
              }read record : 00 A4 ....
    if you know how to do , i'm waiting for your answer

  • Recording File Size issue CS 5.5

    I am using CS 5.5, a Balckmagic Ultra Studio Pro through USB 3.0 being fed by a Roland HD Video switcher. Everything is set for 720P 60fps (59.94) and the Black Magic is using the Motion JPEG compression. I am trying to record our sermons live onto a Windows 7 machine with an Nvidia Ge-Force GTX 570, 16 GB of Ram and a 3TB internal raid array (3 drives). It usually works great but more often now when I push the stop button in the capture window, the video is not proceesed and becomes unusable. Is it a file size issue or what. I get nervous when my recording goes longer than 50 Minutes. Help

    Jim thank you for the response. I have been away and busy but getting
    caught up now.
    I do have all drives formatted as NTFS. My problem is so sporadic that I
    can not get a pattern down. This last Sunday recorded fine so we will see
    how long it last. Thanks again.

  • Swap size issues-Unable to install DB!!

    Unable to install DB. End part i am getting failed due to swap size issue .. FYI...
    [root@usr~]# df -h
    Filesystem            Size  Used Avail Use% Mounted on
    /dev/hda2             5.9G  5.9G     0 100% /
    /dev/hda3             3.0G  848M  2.0G  31% /tmp
    /dev/hda5              34G   12G   21G  37% /refresh
    /dev/hda1              99M   12M   83M  12% /boot
    tmpfs                 3.9G     0  3.9G   0% /dev/shm
    [root@usr~]#
    Please help me...Thanks

    You can increase your swap space.. I have also faced same issue
    Just try: http://www.thegeekstuff.com/2010/08/how-to-add-swap-space/
    ~J

  • Unable to install DB(swap size issues)

    Unable to install DB. End part i am getting failed due to swap size issue .. FYI...
    [root@usr~]# df -h
    Filesystem            Size  Used Avail Use% Mounted on
    /dev/hda2             5.9G  5.9G     0 100% /
    /dev/hda3             3.0G  848M  2.0G  31% /tmp
    /dev/hda5              34G   12G   21G  37% /refresh
    /dev/hda1              99M   12M   83M  12% /boot
    tmpfs                 3.9G     0  3.9G   0% /dev/shm
    [root@usr~]#
    Please help me...Thanks

    I tried with dd if=/dev/hda3 of=/dev/hda5 count=1024 bs=3097152
    Now the o/p is below ...
    [root@user/]# df -h
    Filesystem            Size  Used Avail Use% Mounted on
    /dev/hda2             5.9G  5.9G     0 100% /
    /dev/hda3              35G   33G  345M  99% /tmp
    /dev/hda5              34G   12G   21G  37% /refresh
    /dev/hda1              99M   12M   83M  12% /boot
    tmpfs                 3.9G     0  3.9G   0% /dev/shm
    [root@user/]# cd /tmp/

  • Windows Update Helps with File Size Issues?

    I'm just wondering if anybody has recently noticed an
    improvement related to the file size issue variously reported
    throughout the forums?
    I ask because our IT folks distributed a Windows update on 2
    days last week and since the application of those updates I have
    not experienced the freakishly large file sizes and the related
    performance issues in Captivate. Unfortunately I don't have any of
    the details of what patch(es) were installed, as it was part of our
    boot script one morning and I didn't even realize it was updating
    until I received the Reboot Now or Later alert.
    Anyway, I was curious because I have experienced significant
    performance improvement since then.
    Rory

    If you are using a remote workflow ... designers are sending off-site editors InCopy Assignment packages (ICAPs) .... then they need to create assignments in order to package them for the remote InCopy user. So there's no need to split up a layout into smaller files or anything.  An assignment is a subset of the INDD file; multiple assignments -- each encompassing different pages or sections -- are created from the same INDD file.
    When the designer creates the assignment, have them turn off "Include original images in packages"; that should keep the file size down.
    Or -- like Bob said -- you can avoid the whole remote workflow/assignment package rigamarole all together by just keeping the file in a project folder in the Dropbox folder on teh designer's local hard drive, and have them share the project folder with the editors. In that workflow, editors open the INDD file on their local computer and check out stories, just as though they were opening them from a networked file server.
    I cover how the InCopy Dropbox workflow works in a tutorial video (within the Remote Workflows chapter) on Lynda.com here:
    http://www.lynda.com/tutorial/62220
    AM

  • What am I doing wrong - size issue

    Need some advice...as usual!
    I designed a site on my 17" monitor and set the margins to 0
    and table to 100%. However when I look at it on different screens
    it looks rubbish...big gap at the bottom of the page with the
    design cramp at the top. I wonder if someone would mind looking at
    my code and see what's wrong with it. The site was designed using
    various techniques including css for nav bars, tables, and
    fireworks elements. the site can be viewed at:
    www.shelleyhadler.co.uk/nerja.html
    thanks for your help. Shell

    >Re: What ams I doing wrong - size issue.
    Several things...
    First, your 17" monitor has noting to do with web page
    layout. What
    resolution is your monitor set to? it could be 800 pixels
    wide or 1280
    pixels... wouldn't that make a difference? That aside, screen
    resolution and
    size are irrelevant anyway. What counts it eh size that your
    viewers have
    their web browser window set at.
    I have a pretty large monitor, set to a very high resolution,
    so I open
    several windows at once and size them so I can see the
    content in all.
    Sometimes my browser is full screen and sometimes its shrunk
    down to less
    than 600 x 800. Your web site needs to accommodate that.
    Every web viewer
    out there is different and likes the way they have their
    screens set up. So
    you need to be flexible and your site needs to be flexible.
    Next, Don't design in Fireworks and import to Dreamweaver.
    Fireworks is a
    superb web ready graphics and imaging processing program. The
    authors
    (mistakenly) threw in some web authoring stuff that works
    very poorly.
    Design your pages using Dreamweaver. Learn html markup and
    css styling to
    arrange it, then use Fireworks to create graphics to support
    your content.
    Along the way, be aware of the diffferant browsers in use.
    Internet
    Explorer is the most popular (or at least most in use) simply
    by virtue of
    the Microsoft market share, but it is also the least web
    complient (by virue
    of the Microsoft arrogance) so some things that work there,
    (like your green
    bands) won't on other browsers and vice versa.
    That said... graphically, your site looks great. You have a
    good eye for
    composition and simple clean design. You just need to learn
    to use html to
    your best advantage to create some realy nice looking and
    nicely working
    sites.
    "shelleyfish" <[email protected]> wrote in
    message
    news:[email protected]...
    > Need some advice...as usual!
    >
    > I designed a site on my 17" monitor and set the margins
    to 0 and table to
    > 100%. However when I look at it on different screens it
    looks
    > rubbish...big
    > gap at the bottom of the page with the design cramp at
    the top. I wonder
    > if
    > someone would mind looking at my code and see what's
    wrong with it. The
    > site
    > was designed using various techniques including css for
    nav bars, tables,
    > and
    > fireworks elements. the site can be viewed at:
    >
    > www.shelleyhadler.co.uk/nerja.html
    >
    > thanks for your help. Shell
    >

  • Clip size help please.

    I have loaded a 12GB file into Imovie from my DV camera.
    I now want to split the file into a number of clips that will be the right size for burning to disk.
    To test, I took a 3 minute clip from the original 60 minute (12GB) file but it's size remains at 12GB.
    How do I get the 3 minute clip to reflect the size that it should be?

    There are two different things to take into consideration here:
    1. "..I took a 3 minute clip from the original 60 minute (12GB) file but it's size remains at 12GB.."
    iMovie HD 6 is a "non-destructive" editor. In the original versions of iMovie, when you cut a clip and discarded the rest then all the unwanted material really was thrown away; so taking a 3 minute clip out of a 60 minute chunk and throwing away the rest left you with a much smaller 650 megabyte mini-clip. But that meant that if you later changed your mind you couldn't 'restore' what you'd thrown away in order to adjust the cut.
    In iMovie HD 6 all the original material always remains: when you make a cut, iMovie simply writes a note to itself to tell itself which section(s) of the original material to play, but the whole of the imported DV still sits there in the background, readily available in case you want to make adjustments to your chosen clip(s). That makes it possible to keep on 'Undo'ing mistakes, not just undoing the last cut you made.
    So if you trim a 60 minute clip down to 3 mins the whole original 12GB file size still remains.
    If hard disc space is tight and you definitely want to discard the original file(s), just Export the clip(s) you've chosen, and that will create a new file which is only as big as the exported material. You can then throw away the original import ..thus cutting your storage space from 12GB to 650MB, for example.
    2. "..I now want to split the file into a number of clips that will be the right size for burning to disk.."
    If you mean that you want to burn the clips to store them and want to store them on 4.7GB DVDs as data, then the clip sizes will have to be small enough to fit. A 4.7GB DVD will hold roughly 20 minutes worth of DV files.
    But if you want to burn a movie DVD of the clips you've chosen ..a DVD which will play in a normal DVD player and show your clips on a TV, then you don't need to worry about file sizes. That's because a movie DVD stores video in a compressed format called MPEG-2, and iDVD will look after the compression so that you can fit almost 2 hours of material onto a video DVD.
    (..A 90-minute Hollywood movie easily fits onto a standard 4.7GB DVD because it's compressed ..but only 20 mins of a normal DV file would fit on a 4.7GB DVD..)
    So, iDVD will handle all the compression to fit a movie onto a DVD as long as the movie is just under 2 hours long. So don't worry about cutting down file sizes, and don't worry that a 3 minute segment of a 1 hour DV import still looks like 12GB. You only need to consider "running time" if you're making a movie to put on a DVD. No matter what the apparent file sizes, if your movie runs for 110 minutes then iDVD will unnoticeably compress it so that it'll fit on a 4.7GB DVD.

  • Is there a way to change clip size without losing image quality? Specifically from 568 x 320 to 1920 x 1080?

    Is there a way to change clip size without losing image quality? Specifically, from 568 x 320 to 1920 x 1080?

    No, especially not video files. That's way too much scaling.

  • Increase Clip Size

    I thought I saw in a tutorial that the clip size could be increase in the event window. How's that done? I'm not referring to length or number of frames viewed, I mean the X x Y dimensions of the clip.

    In list view pull down the separator bar between the preview and the list.

  • WMV and Disk Size issues

    So I am a pretty avid Encore user and I have come into some issues lately and could use some help.
    Background-
    I filmed a 14 hour conference on SD 16:9 mini dv
    I captured 14 hours with Premiere as .AVI - I edited the segments and exported as .AVI
    I used Media Encoder to convert the files to NTSC Progressive Widescreen High Quality (.m2v)   - Reduced the file size drastically
    I then used Media Encoder to convert the .m2v files to .wmv files - Reducing the conference size to 5.65 GB in total.
    I then imported the .wmv into Encore - my issues begin
    At first, Encore CS4 imported the .wmv files without a problem however the disk size (of 5.65 GB) registered in Encore as around 13 gigs???  Why is that?  The .wmv files only consume 5.65 gb on my harddrive.  Where is this file size issues coming from?
    So then Encore CS4 gets upset that I have exceeded the 8.5 DL Disk size and crashes...
    I reopen the program and try to import my .wmv files again (forgot to save like an idiot).  3 of 8 .wmv files import and then Encore starts giving me decoder errors saying I cannot import the rest of the .wmv files... 
    Can anyone help me with this issue?  Im quite confused by all of this.  Things seemed to work fine (sorta) at first and now Encore is pissed.
    I want to get this 14 hour conference on 1 DL DVD and I thought it would be as simple as getting the files reduced to a size sutable for a 8.5 gb disk.  Why is my way of thinking incorrect?
    Thanks for any help,
    Sam

    ssavery wrote:
    Thanks everyone for your help.
    Im still not giving up....  It's become an obsession at this point.  My uncle does this with kids movies for his children.   He'll download and compress entire seasons of children shows and put them all on one dvd which he then plays in a dvd player for them to watch.  Im currently trying to get ahold of him....
    Thanks for the help
    Sam
    i've done this as well for shows that are never to be seen again for the light of day from the 80s and such... i use VSO Software's "ConvertXtoDVD v4" i ONLY use this for archival purposes of xvid or wmv or stuff that encore would throw fits over. the menus are all mainly default stock stuff. but for these projects i'm not concerned about menus or specific navigation, i just need to get the job done. i can squeeze around 15 hrs of 720x480 on one DL (it compresses the ever living dayligths out of the video... but for most of the source footage... it really doesnt matter at that point, its mostly all VHS archives i use for this program anyway) if you just absolutely HAVE to have a 1 disker, you could check that app out, burn it an see how it looks.
    edited to add: that to really squeeze crap in, you can also use a DVDFab program (any ersion should do... Older ones are cheaper) make a disc image with ConvertX, if yiu have alot f footage it may push it beyond the normal boundary of a dvd-dl and fail the burn. So then you can just import the disc image into DVDFab, and choose it to burn to a DVD-DL, and it may compress it by about 3-7% more to fit it. I would NEVER use this method EVER for a client... But if you are just hell-bent on doing 1 disk. Tries these 2 apps out. It may work out if you can live with the compression.
    if you do try this, I recommend trying this workflow. Open premiere with your first gem captured AVI. set up your chapters how you want them or whatever, then save each chapter or lecture or segment or whatever as it's own AVI. the. Import all those separately into ConvertX and set it up to play one after the other when each segment ends. [i can't confirm this 100%, because i usually drop in already compressed  files... but if for some reason it don't wanna work out... then i would  suggest dropping in the mts files instead] (if say you want a new "movie" for each lecture instead, and have chapters per movie that can be done too... But it's more work, but I can expound later if need be)  To save time on encoding, set up the menu to be the "minimalist" menu. It's strictly text. Then just create sn ISO. if you donthe full thing, I can almost guarantee you'll have to use DVDFab to burn to disc, because it'll probably be about 5-8% overburn.

  • Video size issues/slow performance after update to CC 2014

    Hello everyone,
    I'm not an editor by trade, so please bear with me here. I've spent the last few days searching around for an answer and haven't been able to come up with much.
    I'm on a late 2011 Macbook Pro, 2.2 GHz Intel Core i7, 4 GB 1333 MHz DDR3, AMD Radeon HD 6750M 512 MB, Mac OS X Lion 10.7.5 (11G63b).
    I spent a month cutting my first little experimental feature which the assistant editor set up for me (and who is currently away).
    My computer isn't rocket fast, but I was able to complete the first few passes on Premiere CC (7.2.2?) with few major issues.
    About a week ago, I upgraded to Premiere CC 2014 8.0.
    I immediately noticed that my footage went from this:
    To this:
    (The specifics of the footage:
    As you might be able to tell, we shot very old school VHS to help sell the 90's setting. It was a nightmare to find the best way to export it all. I'm still not sure if we did this entirely properly -- and hopefully it's not the cause of these issues. Also, I know VHS is only SD -- we chose to import at the utmost quality, i.e. 1920x1440 and ProRes 422, because more of the image detail was present in low-light.)
    I found that I had to select all the clips in each timeline, right click, and select the 'Set to Frame Size' to have the video full frame once again. Then I had to render everything.
    As I tried to resume my edit, the performance was much slower. Playback is a nightmare. I get the beach ball of death constantly. It would take several minutes to save the project. And it started to crash about once an hour on top of everything.
    But I continued to work for the last eight days, hoping that I'd be able to rectify this somehow.
    I cleared the cache with no luck.
    I read that I could uncheck 'Composite in Linear Color' to make it faster, but that wasn't an issue in the last build.
    My playback and paused resolution is 1/4.
    I read that I should update my OS to OS X Mavericks, but that keeps crashing too! Haha.
    I understand that my system isn't the best, but I just want my project to perform as well as it did on Premiere CC before the update.
    I just spoke to an Adobe tech who basically told me that there wasn't a solution here besides reverting back to Premiere CC from CC 2014 -- or buying a new Macbook.
    But there has to be a way that I can get the same performance that I did before the upgrade, right? I have a feeling something happened to how CC 2014 is using the existing footage.
    (Also, I noticed that clips where I increased the zoom, i.e. 100% to 110%, were back at their original size. And instead of saying 100%, it was now saying 300%. I'm assuming this is because of the 'Set to Frame Size' setting, but this wasn't the case on Premiere CC.)
    Does anyone have any ideas what I can do here?
    Here's my sequence settings on CC 2014:
    And on CC:
    For some reason, portions of this window are grayed out, and not in CC 2014. Not sure if this has anything to do with the issue.
    Thanks a ton in advance everyone! I really can't afford to lose 8 days worth of work, so any help would be greatly greatly appreciated!
    I'll be more than happy to provide additional info.
    I'm really looking to find out, definitively, if my only two options are: a) go back to Premiere CC and lose my recent work, or b) buy a new laptop, which I can't afford.
    (As a side question, is there any way I can transfer my recent work from CC 2014 to CC? I understand it's not backwards-compatible, but there has to be at least a partial solution.)
    Best,
    Jon

    Thanks for the quick response!
    So just this right (to DV):
    I scrubbed through really quick, seems like it just may have worked.

  • CS6 actions batch saving images to a clipping mask issue

    Hey all,
    Been at this for quite some while now and searched the www thin for suggestion - so really hope someone can help me out here.
    Objective:
    - Target a folder with xxx .gif patterns (in the same size)
    - Setup actions to batch open each image from the folder, copy the pattern image individually over to a .PSD file that have a silhouette of the sleeve.
    - Apply the individual pattern to the clipping mask
    - Save it out as .png
    Issue:
    So far ive only had the automate > batch process to save out one .png with the pattern correctly applied to the silhouette.
    What I experince is that, if I close down everything and initiate automate > batch process then Photoshop will complain about not being able to locate the clipping mask.
    In my action setup I first open my .psd containing my sleeve shape, then open an actual pattern image and then all other steps ending up with saving the .psd with pattern clipping mask to .png.
    Just to give a simple idea about my setup take a look here:
    http://i.imgur.com/FE8mSEU.png
    In this one below, ive closed everything and run the automate > batch process, which gives me the error you can see here:
    http://i.imgur.com/7Cvj26D.png
    Any suggestions on what I could be doing wrong OR if I am doing anything wrong?

    Hi Mack,
    Thanks a lot for your throughout response - really appreciate it!
    I do acknowledge that im new to batch in Photoshop and could possibly why this is not working for me - although in not quite sure why and what I would need to make as a programmed script - would you by any chance try to give me an idea on what specific step needs to be programmed?
    My actions are very few and quite simple, and seemed to fit in very nicely in how ive understood the actions feature would work - in any case of not being precise enough here's my exact steps.
    1. I open up Photoshop - No documents or anything are open at current point. I click "Record" in actions
    2. I open my sleeve_layer.PSD  file (which opens up in a tab) -> File -> Open -> PSD
    3. I open one of the pattern .gif files (which opens up in a tab) - which are all located in the same folder with the same size -> File -> Open -> .gif
    4. In my pattern tab window (from nr 3) I select all (ctrl-a) -> copy (ctrl-c)
    5. I then click over to my sleeve_layer.PSD window tab and paste (ctrl-v) my copied pattern image into a layer above my sleeve layer.
    6. I then right-click with my mouse on the pattern.gif layer -> click "Create clipping mask" (the pattern is now only shown within the sleeve layer shape)
    7. I save the work done in the .psd to web -> File -> Save for web -> .png
    8. I then close my sleeve_layer.PSD - without saving it (since I dont want to have clipping masks for each pattern stacking up from the batch)
    9. Recording ends
    If I now run the batch all actions are done fine until it reaches the action with the clipping mask - where I get "The command "Create clipping mask" is not currently available" - I can see that when this error appears, im not seeing any open sleeve_layer.PSD tab - so not sure if the psd file is actually getting opened (and this might be the error for the reference error of the clipping mask to appear).
    If I try to manually RUN the actions set in the actions panel, I notice though that the sleeve_layer.PSD tab is getting opened.
    When running automate -> batch -> I point "source" to my folder of all patterns (only .gif files appear in this folder)
    "Destination" folder is set to some other folder.

  • Clip size limited to 2 Gig?

    I am new to this version of Imovie '08. I know with the old Imove 3, there was a limit to the size of the clips. Is there still a 2 gig limit or 9:99minutes limit on the clip lengths in Imovie '08. I was considering purchasing the elgato 250 plus and wanted to import the vhs videos into Imovie'08 to edit them. Will I be able to edit the videos (separate clips, add music and titles) easily using Imovie '08? Some clips will be an hour or 2 by themselves. Anyone have any experiences with the Elgato 250 plus? Good? Bad?

    I quickly found in my Events Library a 2.98GB clip in dv format. This clip was imported through the ElGato EyeTV hybrid in MPEG2, and then converted to DV by the EyeTV software. It was part of a longer clip, and I used the EyeTV SW to edit it into logical events.
    With an Aluminum iMac, you have plenty of processing power to do the VHS import with the EyeTV Hybrid rather than the 250 Plus. The 250 Plus might work great, but I have no experience with it. I think it is targeted at older, slow machines that need to move this processing outboard. You can find the ElGato stuff inexpensively at macsales.com both new and refurbished.
    It is possible to split events within iMovie as well. The trick is to reject a single frame at the point you want to split, and send the rejected frame to the trash. If you can't spare a frame, you can split before import using the EyeTV software or using Quicktime Pro.
    You will also find that the ElGato will import your video with a single date (the import date), not the original analog recording date. Thus your events library for 2008 may be cluttered with events from 1988, say. My favorite solution to this issue is a program called "A Better Finder Attributes" which allows you to set the metadata on your clips so that iMovie will put the event in the right year. It is best to do this before you start editing, so the pointers wont be confused.
    Although, I use the ElGato EyeTV Hybrid, it strikes me that I am introducing one extra conversion into my workflow that may result in degraded quality. The Quality is pretty good, but not as good as the original analog recording viewed on a TV. If you could find a DAC which would convert directly from Analog to DV, you could cut out the imtermediate step of MPEG2 an perhaps get better quality.
    I have an old DAC, and I may hook it up to test this when I have time.
    Also, some miniDV camcorders have a "pass-thru" feature that will allow you to hook up analog input and convert it to firewire DV on the back end.
    Good luck.
    Message was edited by: AppleMan1958

Maybe you are looking for

  • How can I delete my Apple Community account without deleting my Apple ID?

    I created this Apple Community thing with the username "it'$ jaime". I chose that name since I was really bored. I wish to change it so is there any way I can change it or delete this account and make a new one? If so, please answer me. I will apprec

  • ITunes stops working when syncing iPod 4

    We have recently been having problems with our iTunes, with it not opening yesterday so we had to uninstall iTunes and all Apple related programs. I've tried syncing my iPod Touch 4th gen with iTunes on our laptop (Windows 7) but when it gets to the

  • "On My Mac" listed twice in Mailboxes bar

    "On My Mac" is listed twice at the bottom of my Mailboxes bar. I guess that's not a huge problem...but it is a problem. Anyone else experiencing this, or know how to fix it? Thanks.

  • Using af:query

    Without using ADFBC, how to construct af:query to form a search component using ADFv? Thanks

  • Can't open profile manager for mac with terminal command

    i have tried to open profile manager version 0.3.0 11/4/11 3:31 PM with every command that an extensive search has revealed. each attempt yields a "no such file or directory response"; e.g.,Last login: Tue Nov 29 00:26:23 on ttys000 Welcome to Darwin