First of accidents using still images

I'm working on a project using lots of still images. Before you start, I ran an update on first CC (2015). Ever since first crashes ("schwerwiegender Fehler" in German) every other time I want to open a fixed image of the tray in the monitor. I've tried refresh the media cache and delete all the files preview. Unfortunately, the two do not work.

I'm working on an iMac with 32 GB, 3.5 GHz i7 running OSX Yosemite. Any ideas anyone?

I am grateful for any input on this issue.

Thank you!

Guido

If anyone is interested, I found a work-around, but NOT a solution. My problem disappears when I set the record in the project settings for software only. That slows me down and is annoying but works for now. Always very well looking for a good solution!

Tags: Premiere

Similar Questions

  • Can I use still images high resolution in Keynote?

    Prepare a presentation in Keynote that requires a lot of photos/movies - it is to be broadcast from an international conference in the world.  So I don't want to spoil.

    I have some high resolution photos (the originals were RAW, I converted them to PNG).  I want to build my speech with the high-resolution PNG, or what I want to batch convert to JPEG before their insertion in the speech?  What would be an optimal size by peak.  There are probably about 100 stills or so, more than a dozen of short films (that's an hour and a half presentation I think).

    Or, if I don't use a high-resolution PNG (15-20 megs), is there a function in Keynote, which reduces the size of the files?

    And, if so, I'm better batch convert PNG to JPEG, or simply use the PNG and let Keynote optimization?

    For movies I'll all convert H264 (same resolution - 1920 x 1080 - Keynote presentation using the same optimal data rate that you would use for Vimeo).

    All ears,

    Ben

    Size of the images to match the slide size in Keynote;   in this case, they should be 1920 x 1080 pixels

    because they are PNG files keep than

    Convert a batch of images as follows:

    Open all of the batch of images in preview

    Select all the thumbnails in the sidebar - click on an image in the sidebar then (Command-A)

    on the Tools menu, choose Adjust size

    use the custom size and enter 1929 x 1080

    Save

    Place the images in Keynote, as follows: drag all the images in the browser (the sidebar on the left) and a new slide will be created for each image, centered and scaled to full screen

    If images are larger than the size of slide, they look better, they simply more space

    If the images are smaller than the size of slide, they will reduce in quality

  • ORDImageSignature SQL/MM still Image

    Hello

    We have migrated our application from Oracle 10 g to Oracle 11 g.
    All our images are stored in the database as ORDImage.
    And I've been using ORDImageSignature for image comparison.

    But as ORDImageSignature methods are amortized in Oracle 11 g, it seems I have to use standard methods SQL/MM still Image to make the comparison of images.

    < li > here is how I made the comparison of the image using ORDImageSignature :
    procedure link_photo_to_point(in_pt_id in number, in_img_id in number, out_message out varchar2) is
         l_exist number := 0;
    begin
         select count(*) into l_exist 
         from photos inner join photo_components on phco_phot_id = phot_id
         where ordsys.imgsimilar(phot_signature, (select phot_signature from photos where phot_id = in_img_id),'color=1,texture=1,shape=1,location=1', 0, 1) = 1
         and phco_spatial_id = in_pt_id;
         if (l_exist > 0) then
              dbms_output.put_line('Error : a similar photo is already linked to the point' || in_pt_id);
         else
              insert into photo_components(phco_spatial_id, phco_phot_id) values (in_pt_id, in_img_id);
              dbms_output.put_line('The photo was successfully linked to the point' || in_pt_id);
         end if;
    end;
    < li > and here's how I'm trying to do the same thing using still images SQL/MM :
    procedure link_photo_to_point(in_pt_id in number, in_img_id in number, out_message out varchar2) is
         l_exist number := 0;
         l_score double precision;
         l_img_obj si_stillimage;
         l_img_blob blob;
         l_featurelist si_featurelist;
    begin
         select p.phot_source.source.localdata into l_img_blob from photos p where p.phot_id = in_img_id;
         l_img_obj := new si_stillimage(l_img_blob);
         select count(*) into l_exist from photos p inner join photo_components on phco_phot_id = phot_id
         where l_featurelist.si_score(new si_stillimage(p.phot_source.source.localdata)) = l_score
         and phco_spatial_id = in_pt_id;
         if (l_exist > 0) then
              dbms_output.put_line('Error : a similar photo is already linked to the point' || in_pt_id);
         else
              insert into photo_components(phco_spatial_id, phco_phot_id) values (in_pt_id, in_img_id);
              dbms_output.put_line('The photo was successfully linked to the point' || in_pt_id);
         end if;
    end;
    And of course, I get the following message displays as I do not know how to fill in the si_featurelist variable, so it can contains the features of the image...
    ORA-30625: shipping method on the argument NULL SELF is not allowed
    I think that the documentation is not clear on how to do it.

    Any help would be appreciated.

    Thank you.

    Yann.

    Okay, I think I've found my mistake. Here's what I did:

    First, I tried to add a new column to the PICTURES table to store directly the subject of the photo :

    alter table PHOTOS add phot_source2 SI_Stillimage;
    update photos p set p.phot_source2 = si_stillimage(p.phot_source.source.localData) where p.phot_id < 10;
    

    It worked.

    Then I set up a minimal example that compares the image 2 for the first 10 images of the PHOTOS table:

    DECLARE
         l_img_obj     si_stillimage;
         l_avgcolor     si_averagecolor;
         l_colorhist     si_colorhistogram;
         l_poscolor     si_positionalcolor;
         l_texture     si_texture;
         l_featurelist     si_featurelist;
         l_blob          BLOB;
         l_count          INTEGER;
    BEGIN
         -- get the blob from the ordimage
         SELECT p.phot_source.source.localdata
         INTO l_blob FROM photos p
         WHERE phot_id = 2;
         -- build the stillimage object from the blob
         l_img_obj := NEW si_stillimage(l_blob);
         -- get image features and build the featureList object
         l_avgcolor    := NEW si_averagecolor(l_img_obj);
         l_colorhist   := NEW si_colorhistogram(l_img_obj);
         l_poscolor    := NEW si_positionalcolor(l_img_obj);
         l_texture     := NEW si_texture(l_img_obj);
         l_featurelist := NEW si_featurelist(l_avgcolor, 1, l_colorhist, 1, l_poscolor, 1, l_texture, 1);
         -- check if a similar image is found in the table
         SELECT COUNT(1)
         INTO l_count
         FROM photos p
         WHERE si_scorebyftrlist(l_featurelist, p.phot_source2) = 0
         AND phot_id < 10;
         -- show message
         dbms_output.put_line(l_count || ' similar photo(s) found');
    END;
    /
    

    It worked.

    Then I tried to replace p.phot_source2 by si_mkstillimage1 (p.phot_source.source.localdata) (causing the problem), and it worked too!

    Then I tried to change phot_id < 10 < 20 phot_id, and finally it failed.

    So I finally understand that I had null values in the column ORDImage ... that was causing the problem.

    Indeed the call to SI_StillImage() with a null parameter gives the error in the above program:

    >
    ORA-06510: PL/SQL: not supported by the user-defined exception
    ORA-06512: at "ORDSYS.SI_STILLIMAGE", line 27
    ORA-06512: at "ORDSYS.SI_MKSTILLIMAGE1", line 6
    ORA-06512: at line 24
    >

    All works fine now.
    I hope that this thread can help someone else :)

    Good bye.

    Yann.

  • several imported still images (how to change "timing" AND make multiple transitions)

    I imported into project still many pictures resources.  The default for each time seems to be 5.1 seconds.  If I drag them in the timeline, select them all and change the duration, there are gaps between the images... How can I scrunch together easily, OR how change the default duration before I drag them in the timeline?

    Second... If I have all my photos on a timeline can I set the effect of transition on more than two at a time?  I can't put the transition for all of them at once (a different query)

    Thank you, - bill

    I imported into project still many pictures resources.  The default for each time seems to be 5.1 seconds.  If I drag them in the timeline, select them all and change the duration, there are gaps between the images... How can I scrunch together easily, OR how change the default duration before I drag them in the timeline?

    When you have selected your still and used the command of speed/duration, do not forget to check the option 'Edit Ripple, Shifting trailing Clips' in Control Panel. That will remove any empty what space between clips that would be otherwise generated to reduce the duration of your sequences.

    Second... If I have all my photos on a timeline can I set the effect of transition on more than two at a time?  I can't put the transition for all of them at once (a different query)

    Yes, although there are two preliminary steps. First of all, in the effect controls panel, click the button of the flyout (this stack of pancakes with the little downward arrow) or go in Edition > Preferences > general and select the default Transition duration option and change to the desired option. Secondly, in the effect controls panel, select the transition you want and right click and select "Set selected as Default Transition".

    Now, select your clips/still images in the timeline panel and go to the sequence > apply Transitions to the selection by default; the passage you have just configured will apply to all of your clips. Note that, by default, this will add audio transitions as well, if you use combined video/audio clips (probably not a problem in your case that you use still images), but you can hold down the ALT key to select just the video or only the portions audio your clips, if you want only a single transition type or the other. You can also temporarily block tracks where you don't want transitions before using the command.

    Also, given that you work with still images, you don't have to worry about the handles; If you import a still in the first, even if it lasts only a single image, you have an indefinite/infinite amount of images to use for editing and transition. Audio/video clips are a different story, of course...

  • I use iphone videos and still images in a project.  When I drag the videos in the timeline, they work fine, but when I drag still images, I have only a small part of the original photo.  No idea how to solve this problem?

    I use iphone videos and still images in a project of first Pro CC.  When I drag the videos in the timeline, they work fine, but when I drag still images, I have only a small part of the original photo.  No idea how to solve this problem?

    Right click on the photo in sequence and "ladder to the chassis '. Can also be set in the preferences and affect imports after the change

    Thank you

    Jeff

  • First Pro CS6-still images that grainy when the effects of movement applied

    I made a video in Premiere Pro CS6. The video, in part, still use images that I pan or zoom in on a Ken Burns effect. Although still images look good after having been imported, when the effects of movement are applied, they become suddenly very grainy and low quality.

    The images have been made - the bar above them is yellow - and I tried of many workarounds, including convert images in .psd and using the frame Hold.

    What should I do to fix this?

    maximum render quality verified?

  • I can create a DVD without using STILL on Adobe first PRO CC 2015

    Can I create a DVD without using STILL on Adobe first PRO CC 2015?

    Yes... but why, since even comes with a Premiere Pro subscription?

    -More instructions http://helpx.adobe.com/encore/kb/encore-cs6-installed-cc.html if you have a subscription

    - and the difference in the Cloud application manager 2015 https://forums.adobe.com/thread/1906752

  • How to work with still Images in first items 10

    I am faced with still images in my titles for my video project and would be really grateful for the help. I did a lot of searching on Google on this and searched this forum, but can't seem to find the answer I need, maybe not to seek the right questions or all just "don't get it".  Not even PE Adobe tips or Adobe TV covers, although it seems important to know. I don't understand how PE10 will manage the resolution of graphics from Photoshop or any fixed image. Maybe this topic will also contribute to other institutions.

    I'm working on a video project for my work, editing an old training video. New title graphics created in Photoshop, inserted images of title integrated with video clips, then exported the video segments in the form of MPEG files.  I burned the entire video on DVD.

    When the final DVD play on a computer or a television screen, the images of photo in the titles are unclear, although they were clearly 300 dpi images. (I know dpi is not serious in the video). The text of the title is also a little fuzzy and the text of the title which has applied animation to it is still more unclear. Yet, old video clips MPEG look good - it's just my title images and texts that have (annoying) look bad.

    So I need to know how to improve the quality of the images/graphics even a video?

    Project settings:

    -Hard drive, Standard 48 kHz

    -Editing mode: DV NTSC

    -Frame: 720 x 480 (0.9091)

    -Frame rate: 29.97 FPS

    -with "optimize images" box checked

    Using these settings because I work with an old training video CD MPEG files.

    Exporting files: MPEG, NTSC DVD Standard

    I export as MPEG video clips because they will be burned on a CD or a DVD for distribution to our management offices.

    Job details:

    In Photoshop, I still created graphic images for each title of format 720 x 480 with high resolution photos and logo of the company (300 dpi) and save as a bitmap for import into PE10.  In the timeline panel, I insert the fixed image on the track "Vidéo 1", and then in the video track 2 create a top for the text title (some animated, some still). Sometimes I have the battery 2 or tracks of three titles with separate video text on an image fixed title. Yes, there is a red line on the top in the timeline because I do not still images.

    Issues related to the:

    • What is the best resolution for images imported into PE10 of Photoshop?

    • Do I create title graphics/images to 720 x 480 or higher like 1920 x 1080 report so it will show better seen on a computer or a TV?

    • Do I need to render each image title in the timeline panel so that it displays finally better in MPEG?

    • Is it better to create a title and then insert the image in the title so that they are integrated, rather than layers on separate video tracks?

    I would be very happy to help.

    When the final DVD play on a computer or a television screen, the images of photo in the titles are unclear, although they were clearly 300 dpi images. (I know dpi is not serious in the video). The text of the title is also a little fuzzy and the text of the title which has applied animation to it is still more unclear. Yet, old video clips MPEG look good - it's just my title images and texts that have (annoying) look bad.

    Please keep in mind that DVD-video has been designed for CRT TVs, and was a major step upward to a VHS tape. However, when displayed on a HD or HD TV computer monitor *, it of always ONLY 720 x 480, with is about 1/4 of the resolution 1920 x 1080, which is what we're used to seeing on display devices. It is, but only 25% of the quality. He can never look as good as HD material.

    Good luck and if I missed something, please point out to me.

    Hunt

    * With the advent of BD players and players of DVD up-rezzing, things HAVE improved, watching a video DVD on an HDTV. New players have up-rezzing in chips, which do a very good job of "improving" the quality of the material considered. However, even with these amazing chips, DVD-video is NEVER as good as a full-HD source. In addition, the computers do not have these chips up-rezzing, so when contemplating a video DVD on a high-resolution computer monitor, it will still look pretty bad. There are a couple of new DVD players software, that allow to improve the quality of DVD-Video, played on a high-resolution computer monitor, and some look quite promising. I guess we'll see some more development in the region of DVD-video, especially since BD is not the seller basically promised a lot. Even in 3D is not helping BD fulfilling its promises.

  • Return and replace still Images

    Anyone else having issues with render and replace still images (rgb JPEG and png in my case)? I choose a predefined ProRes 422 and ask to place next to the original media new media. It allows me to click through to the guests, but in fact, nothing happens when I click on OK. It is said he goes through a process of conversion, but I always stayed with the still image in my calendar and any transcoded video file has been created.

    I would like to be able to transcode all still images in the video for reasons of stability and also to respect the timeline into something that I can better color. Any thoughts? Thank you!

    This article suggests it should be possible to do what I ask: https://helpx.adobe.com/premiere-pro/using/render-replace-effects-compositions.html

    MacPro mid-2010

    OS X 10.10.3

    Build first Pro 9.0.1 (36)

    In fact, aid doc seems to be incorrect and I called someone to fix this document. Still images (JPG, PNG, etc.) are not supported for rendering. What is happening is that the alembic is copied to the destination you set. Image sequences (numbered always imported with the sequence of images check box selected) are supported for rendering, although. Sorry for the confusion.

    You could try to export your images (make sure you set the Source range: Clip in and out) and then use Replace with Clip and replace images, but realize that this is not an ideal solution.

  • Rotating still images in a video-help please!

    Hello, I have the Adobe Premiere Elements 10 mounting system, and I am currently working in a summer project. One of the things I want to do is to create a video from still images, but I'm having a problem, because the images I chose and increased their time line look too choppy, but I want more flow-ey look. What would be the speed or duration of each image? There are other effects that can help to achieve my photo video yet? Also, I'm ready to other suggestions, others have to make a smooth surface, still video image. Thank you!

    Neweditor16

    I wasn't sure of my schedule for later this evening, so I'll post an example scenario, assuming that you have first Elements 10 Windows 7 64 bit.

    1. place your 10 each to 3680 x 2760 pixels 4:3 pictures in the order of the sequences in a folder on the desktop. No need to resize them in advance ONLY if your Windows 7 is 64 bit and not 32 bit and your RAM installed is greater than 4 GB.

    2. open the first items 10 and set the project preset for

    NTSC

    DIGITAL SLR

    1080 p

    DSLR 1080 p 30 @ 29.97

    3. go to edit Menu/preferences/general and remove the check mark next to the option "default scale to frame size".

    4. then, use Get-Media/files and folder to your desktop folder in the field of the Organization/media. Then drag the whole folder not open early in the editing video track 1. When you do, your 10 photos will be on the Timeline in the order that you placed in the folder.

    5. click on Photo 1 to select. Then go to Properties Palette/Motion expanded Panel and the Scale property. Set the scale to 52.6%.

    6. go back to the Timeline and click 1 Photo to select it. In the Edition Menu, select copy. The other 9 pictures (all at the same time), and then select right

    Click anywhere in the selection, select and click Paste attributes.

    7. to give a time-lapse effect on your 10 photos, you will reduce the duration of each photo. You don't want to deal in seconds, rather the frames (frames 1 to 5 0.033 to 0.165 seconds in a 30 frames per second is set up).

    a. first we look at the effect with the length of 5 frames photo... Select all photos of 10 all at once... right click anywhere in the selection, and then select Timeline Stretch. In the Time Stretch dialog box, change duration of 00;... 00; 05; 00 (5 seconds) to 00. 00; 00; 05 (equivalent to 0,165 seconds 5 frames) Note the effect Timelapse which is performed after you restore the timeline content by pressing the Enter key to get the best possible overview of the chronology of the contents read in edit box monitor.

    b. If you are not satisfied with 'a', the repetition, but this time change the duration to 00. 00; 00 03 (3 images equivalent to 0.150 seconds)... Note the Timelapse

    effect that is performed after restore you the timeline by pressing the Enter key to get the best possible overview.

    c. If you are not satisfied with the 'b', then repeat, but this change of time in the lowest possible value 00. 00; 00; 01 (1 Executive equivalent to 0,033 seconds)... Note the effect of Timelapse obtained after restore you the timeline by pressing the key ot GET Enter the best possible overview.

    See what it looks like. For now, I would not bother with transitions. More than one placement of transition both can be done by selecting all the photos using Timeline Menu/Apply default Transition. But, with these pictures of short duration, I would need to think about changing the default transition duration.

    And I don't see in pans and zooms with short duration that are used.

    Here are some Timelapse basic ideas in Premiere Elements.

    First Elements ATR troubleshooting: PE: Time Lapse video Basics

    First Elements ATR troubleshooting: PE: numbered stills in Time Lapse and other Animations

    Notes: To select more than one clip at a time, you can hold the SHIFT key and click each photo. Or, you can use the trick of mouse cursor to draw a rectangle around the photos to select them.

    Please let us know if this needs to be clarified.

    Thank you.

    RTA

  • Why is a still image blurred when playing but clear when I stop it?

    I'm doing a video on a collection of still images.  This is a tribute video, essentially, and I am trying to brighten up pan and zoom of documentary style.  I imported all the images I want to use in my media folder and add them on my calendar.  When I hit 'play', suddenly blurred images, but when I then 'put on hold', they come back to be clear.  No idea why this is happening and what I can do to fix this?

    Thank you very much

    Brian

    Somehow, that did the trick.  When I exported the video and watched in a media player, the problem was gone.  I guess I'll just trust it will work this way in the future and that the blurring persists only in the first view.

    Very strange.  Thank you much for the help.

    Brian

  • After that effects CC - export still image

    Hello

    I've recently upgraded to CC. I am trying to export still images as a jpg after effects CC

    CS 5.5 (and earlier versions) allowed me to use the shortcut ctrl + alt + s to add the current image of the render as an image queue fixed.  I would then change the format through the output module.

    The same shortcut in CC opens a dialog box with the psd as available output format only. Composition > save image as > file... also of the results in format psd with no other option.

    Is there a simple process of simillar to export a jpg image again via the render queue?

    Thanks adavance

    scott_travers wrote:

    There seems to be a few unnecessary changes.

    However I solved that myself, if you click ok in the dialog box and with the exception of the psd format, it adds to the rendered quene where you can change the format. No idea why there are no other options in the "Save as file...". ' option, only PSD.

    This is the expected behavior when you have never made a model of a newly installed version of AE. He worked this way since at least AE 6.5 (the old version I installed on a computer nearby to compare). The output module must have a destination for the file, so when you call the Save as file for the first time it brings up the Save as dialog box. For the same reason, if you add a model to the queue of rendering directly it will not make until you set a destination.

    After the first time you create an output with a destination module, AE will remember the default used in last and who use without asking you. The only time that suits you, it would ask you is once again if you destroy the AE preferences or last used location is no longer valid (deleted the folder, disconnected the drive, etc.).

    The reason why the only selectable here is the PSD format is because that's what uses the OM by default to save as a file. You can and should change that, if you always use a different format. Go to Edition > templates > output Module. Create a new model with your desired settings and assign it to the default image.

  • Problems to import still Images; Convert all in the SAME Image

    Hello

    I am new to Adobe first CS_5 (usually use of the CPF).  I have problems to import still images.  Even if the images are all different and have unique names (I'm importing .jpg), every time I have import the images that they ALL convert the image even when I drag them to my timeline.  So, when I look in the project - any image area, I click on, they are all the same (but with their original names).  Anyone know WHY this happens and how I can fix this problem?  For the life of me, I can't understand it.  Thank you in advance for the noob.

    Kalei

    It's definitely weird! What are the names of the jpg files? The only thing I can think is that if they have the same base with sequential numbering name, then perhaps they are imported into several instances of the same sequence of image.

  • Video culture for still images

    Is it possible to crop in a UNIQUE setting and keeping the culture as a still image?

    At this moment I have a film of a puppy.  When I select one image to crop the pup, the fixed image of the puppy does not stand still during video playback.

    Just play the video within the cropped shape.  How can I avoid this?

    I thought that the question was a bit different - ectobuilder wanted to make a movie, to extract an image fixed and just have the game yet.

    In this case, you just export a single still image and then use it as the source of a layer in your composition.

    I still recommend once it is better to work its way through the base materials first.

  • Some very strange problems with zoom in/out effect on a still image

    Hello everyone!

    I try to do the zoom and effects. I use these effects to animate still images.

    To make, I use the standard "Motion" effect. I just put a keyframe [at the beginning of my image] and set the scale to 100% (for example), then I do another keyframe [at the end of my image] and set scale here about 150%. It works, but the result is terrible.

    When I start to play my animated picture effects (zoom in/out) distort my image. I'm starting to see a few lines in the whole of my image and it irritates my eyes really. I've seen these awful zoom when I used Ulead or Sony Vegas.

    I think I did something wrong. Can you help me solve this problem ?

    This distortion appears also when trying to animate my image using which and YPostion of the "Motion" effect

    I guess someone can not understand me and I decided to attach some files here. First is an original image without distortion. Second is this image with distortion. And the third is just my setting of this effect of "Motion".

    In conclusion: "Scale to the size of the image" is disabled. The size of my image is 2816 x 2112.

    Thank you for your attention!

    Create a new sequence with progressive settings and import are your photos or existing sequence.

Maybe you are looking for

  • Apple Watch 10.0 update

    Yesterday I upgrade iPhone to 10.0 now my Apple Watch icon disappeared. I don't get what messages app on my Apple Watch more. Anyone know what I can do?

  • Satellite M45-S169 - Sonic v.7.31 cannot burn DVDs more

    I am using a v.7.31 Sonic Record now prepackaged on my Satellite M45-S169 for three years now.I was able to copy DVDs using this software.Until recently, it burns more. What's most frustrating is that space of memory on a blank dvd just exhausted onc

  • Background noise when connected to the power supply current

    I recently bought a laptop series Equium A100 and am generally very happy with it however I noticed that there is sometimes a background noise through the speakers (crackles and whistles) - this happens only when the AC adapter is connected does not

  • Internet Explorer 8 stops my programs work correctly

    For a long time now, I thought that the issues I had with two of my programs: Nero Moveit and DVD Cloner VI was the fault of the program themselves but now today when I had problems with the update of Nero Moveit it open on my computer that was the i

  • BIOS settings changed by a cheater

    Dear Sir, I had given him a laptop for repair in a store (I couldn't give it to an authorized service center as there were none in are, I was assigned), this person has fiddled around with my bios settings. It has removed the name. ID of product and