Is there a way to improve Premiere's search?

Hey-
I love Premiere and I'd love to use it for an upcoming doc, unfortunately, I find the search functionalities lacking, meaning I may have to resort to using FCP6. Final Cut (pre-X) allowed you to search by as many items of metadata as you need, as well as searching within find results, etc. Far more extensive.
Am I missing something? Are there plug-ins to improve this? Anyone have any suggestions?
Thanks!
: j

http://www.apple.com/feedback/macosx.html

Similar Messages

  • Is there any way to improve Query which searches XML data from a table??

    hi all,
    i have a table which have one column say 'colA' as Varchar(max) datatype which  i  save xml data and it have other cols too 
    Currently i am searching data inside this table using like operator
    eg:
    Select * from tablename where colA like ‘%<tagname>parameterstringvalue</tagname>%’
    when i check with the Execution plan i could see it Takes 82% for clusterd index scan ( primarykey col
    not ColA)
    i added new non clusterd index for the same with include col as ColA and i found nonclusterd index scan
    with same estimated I O cost and Extimated operator cost as clusterd index scan
    My Question is :-
    1. why didnt nonclusterd index seek come?
    2. In What way i can improve perfomance for such situvation? i had seen couple of post suggesting to rewrite the Query as SELECT
    * FROM myTable WHERE CONTAINS (myCol1, myCol2, "myString").
    I Try creating Full text index and found cost increased compared to the original Query ?
    3. As per my assumption the wild charecter ('%') in begining makes perfomance issue is there any option
    or an alternative for such case?

    hi...i can give a skeleton 
    --Table Structure------------
    Table1:-
    (colA - int(PK),
    ColB - Varchar(max),
    ColC-uniquieidentifier,
    ColD-datetime,
    ColE-Bit)
    It have clusterd index for ColA
    Table2:-
    (ColA-int(fk)
    colF-int(pk)
    colG-varchar(max),
    ColH-uniqueidentifier,
    colI-int,
    colJ-int
    ColK-date)
    -----------------Query Skeleton-------------------: 
    select Distinct
    s.colA,
    s.ColB,
    S.colC,
    S.colD
    from Table1 s with (nolock)
    left outer join table2 Q with (nolock) on s.colA=q.ColA
    where Q.ColA is null
    and s.colB like '%<tag>sometext</tag>%'
    and s.colD >='1/1/2010'
    and s.colD <='1/1/2014'
    i hope this will help to understand it clearly.........

  • Is There any way to improve the performance on this code

    Hi all can any one tell me how to improve the performance of this below code.
    Actually i need to calculate opening balance of gl account so instead of using bseg am using bsis
    So is there any way to improve this code performance.
    Any help would be appreciated.
    REPORT  ZTEMP5 NO STANDARD PAGE HEADING LINE-SIZE 190.
    data: begin of collect occurs 0,
           MONAT TYPE MONAT,
           HKONT TYPE HKONT,
           BELNR TYPE BELNR_D,
           BUDAT TYPE BUDAT,
           WRBTR TYPE WRBTR,
           SHKZG TYPE SHKZG,
           SGTXT TYPE SGTXT,
           AUFNR TYPE AUFNR_NEU,
           TOT   LIKE BSIS-WRBTR,
    end of collect.
    TYPES: BEGIN OF TY_BSIS,
           MONAT TYPE MONAT,
           HKONT TYPE HKONT,
           BELNR TYPE BELNR_D,
           BUDAT TYPE BUDAT,
           WRBTR TYPE WRBTR,
           SHKZG TYPE SHKZG,
           SGTXT TYPE SGTXT,
           AUFNR TYPE AUFNR_NEU,
    END OF TY_BSIS.
    DATA: IT_BSIS TYPE TABLE OF TY_BSIS,
          WA_BSIS TYPE TY_BSIS.
    DATA: TOT TYPE WRBTR,
          SUMA TYPE WRBTR,
          VALUE TYPE WRBTR,
          VALUE1 TYPE WRBTR.
    SELECTION-SCREEN: BEGIN OF BLOCK B1.
    PARAMETERS:  S_HKONT LIKE WA_BSIS-HKONT DEFAULT '0001460002' .
    SELECT-OPTIONS: S_BUDAT FOR WA_BSIS-BUDAT,
                    S_AUFNR FOR WA_BSIS-AUFNR DEFAULT '200020',
                    S_BELNR FOR WA_BSIS-BELNR.
    SELECTION-SCREEN: END OF BLOCK B1.
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
        IF SCREEN-NAME = 'S_HKONT'.
          SCREEN-INPUT = 0.
          MODIFY SCREEN.
        ENDIF.
      ENDLOOP.
    START-OF-SELECTION.
      SELECT MONAT
             HKONT
             BELNR
             BUDAT
             WRBTR
             SHKZG
             SGTXT
             AUFNR
             FROM BSIS
             INTO TABLE IT_BSIS
             WHERE HKONT EQ S_HKONT
             AND   BELNR IN S_BELNR
             AND   BUDAT IN S_BUDAT
             AND   AUFNR IN S_AUFNR.
    *  if sy-subrc <> 0.
    *    message 'No Data' type 'I'.
    *  endif.
      SELECT SUM( WRBTR )
             FROM BSIS
             INTO COLLECT-TOT
             WHERE HKONT EQ S_HKONT
             AND BUDAT < S_BUDAT-LOW
             AND AUFNR IN S_AUFNR.
    END-OF-SELECTION.
      CLEAR: S_BUDAT, S_AUFNR, S_BELNR, S_HKONT.
      LOOP AT IT_BSIS INTO WA_BSIS.
    IF wa_bsis-SHKZG = 'H'.
       wa_bsis-WRBTR = 0 - wa_bsis-WRBTR.
    ENDIF.
        collect-MONAT  = wa_bsis-monat.
        collect-HKONT  = wa_bsis-hkont.
        collect-BELNR  = wa_bsis-belnr.
        collect-BUDAT  = wa_bsis-budat.
        collect-WRBTR  = wa_bsis-wrbtr.
        collect-SHKZG  = wa_bsis-shkzg.
        collect-SGTXT  = wa_bsis-sgtxt.
        collect-AUFNR  = wa_bsis-aufnr.
        collect collect into  collect.
        CLEAR: COLLECT, WA_BSIS.
      ENDLOOP.
      LOOP AT COLLECT.
        AT end of HKONT.
          WRITE:/65 'OpeningBalance',
                 85  collect-tot.
          skip 1.
        ENDAT.
        WRITE:/06 COLLECT-BELNR,
               22 COLLECT-BUDAT,
               32 COLLECT-WRBTR,
               54 COLLECT-SGTXT.
        AT end of MONAT.
          SUM.
          WRITE:/ COLLECT-MONAT COLOR 1.
          WRITE:32 COLLECT-WRBTR COLOR 1.
          VALUE = COLLECT-WRBTR.
          SKIP 1.
        ENDAT.
        VALUE1 = COLLECT-TOT +  VALUE.
        AT end of MONAT.
          WRITE:85 VALUE1.
        ENDAT.
      endloop.
      CLEAR: COLLECT, SUMA, VALUE, VALUE1.
    TOP-OF-PAGE.
      WRITE:/06 'Doc No',
             22 'Post Date',
             39 'Amount',
             54 'Text'.
    Moderator message : See the Sticky threads (related for performance tuning) in this forum. Thread locked.
    Edited by: Vinod Kumar on Oct 13, 2011 11:12 AM

    Hi Ben,
    both BSIS selects would become faster if you can add Company Code BUKRS as 1st field of WHERE clause, because it's the 1st field of primary key and HKONT is the 2nd field of primary key.
    If you have no table index with HKONT as 1st field it's a full database access.
    If possible, try to add BUKRS as 1st field of WHERE clause, otherwise ask for an additional BSIS index at your basis team.
    Regards,
    Klaus

  • Is there a way to improve the performance of a report group?

    Hi gurus,
    Is there a way to improve the performance of a report group? 
    Points will be given later....
    Thanks!

    Hi there,
    Thank you for your response. I thought there's no answer for this issue and planning to change it to ALV.
    I looked at the codes and debugged it. After the select statement from ZZUWT table (customized), there's a loop that takes much time (10-12mins) for 1000 records. and several nested perform routines. It's a standard program so I'm hesitant to edit it.
    I'll be checking on the primary keys. If it's ok, may I ask for your assistance in this part? Though I'm not that familiar and haven't tried creating a report painter before.
    Thanks anyway...:D

  • HT201822 Is there a way to improve Apple's default "ignore accidental trackpad input" function?

    I find I frequently end up typing in the wrong place and/or deleting text because the size of the trackpad leads me to touch it accidentally, usually with my right hand below the thumb. Is there any way to improve on the built in function in Lion?

    http://www.apple.com/feedback/macosx.html

  • HT201335 Why the transmition to the tv from my iPad is slow cutting off ... Is there a way to improve connectivity ?

    Why the transmition to the tv from my iPad is slow cutting off ... Is there a way to improve connectivity ?

    Intermittent problems are often a result of interference. Interference can be caused by other networks in the neighbourhood or from household electrical items.
    You can download and install iStumbler (NetStumbler for windows users) to help you see which channels are used by neighbouring networks so that you can avoid them, but iStumbler will not see household items.
    Refer to your router manual for instructions on changing your wifi channel or adjusting your multicast rate.
    There are other types of problems that can affect networks, but this is by far the most common, hence worth mentioning first. Networks that have inherent issues can be seen to work differently with different versions of the same software. You might also try moving the Apple TV away from other electrical equipment.

  • Is there any way of improving compatibility between ipad 4 and windows xp                                                     p

    is there any way of improving compatibility beween ipad and windows xp

    Hi Smokey0422,
    Although iTunes works with Windows XP, iCloud is not supported - so that does limit the functionality somewhat.
    See the resources for your iPad at the following site:
    http://www.apple.com/support/ipad/
    See the setup instructions below:
    http://www.apple.com/icloud/setup/pc.html
    Cheers,
    Judy

  • HT5429 Map Problem: I can't see the roads in Standard view. Is there any way to improve this serious problem?

    Map Problem: I can't see the roads in Standard view. Is there any way to improve this serious problem?

    Hi Ben,
    both BSIS selects would become faster if you can add Company Code BUKRS as 1st field of WHERE clause, because it's the 1st field of primary key and HKONT is the 2nd field of primary key.
    If you have no table index with HKONT as 1st field it's a full database access.
    If possible, try to add BUKRS as 1st field of WHERE clause, otherwise ask for an additional BSIS index at your basis team.
    Regards,
    Klaus

  • Is there a way to add a google search tab to the safari window interface in ios7?, is there a way to add a google search tab to the safari window interface in ios7?

    Is there a way to add a google search tab to the safari window interface in i0s7?

    You can't add icons to Safari on iOS devices. You can set google as your default search engine for Safari via Settings > Safari > Search Engine - the URL field acts as both URL and search on iOS 7

  • Is there a way to get lightroom to search the computer for catalogs like aperture does?

    Is there a way to get lightroom to search the computer for catalogs like aperture does? I've switched over from Aperture to Lightroom, and i liked how in Aperture when i went to open "other library" it would basically scan all connected drives for them, and show me when last opened and what version. Is there a way to do this with Lightroom, either in program or by a third party app?

    The user interface is on a level of elementary PC software
    something I have deteced till now
    no free moving workspace windows
    no search function for the whole catalog
    no support of mpg files in the archive
    no chromatic appararture correction
    second screen sometimes gets lost, when moving between screens
    no automatic creation of collection ( very risky direct interfacing with the original file system )
    wrong counting of objects in catalog folder when creating virtuel copies
    What worked good is the import of the APERTURE Archive ( 40000 objects ) took me one night and its there with the above obsticles!!! I am using just three days and I have to say
    not user friendly
    not workflow supporting
    risky user interfacing with masters
    As JimHess stated, there is no risk working with the masters.
    Chromatic aberation correction is available in Lightroom, searching the entire catalog is available in Lightroom.
    With regards to your other comments, the idea that Lightroom should work the same (or very similar) to Aperture is one that you should remove from your thoughts. It will only get you into trouble. Lightroom is not Aperture and will not work the same, and has different underlying principles, and so its pointless to think you will be able to do everything the same way you did it in Aperture. You need to be open to Lightroom's features, and Lightroom's way of doing things. I agree with JimHess that it takes most people a while to learn Lightroom's way of doing things, but your patience will be rewarded.

  • Is there any way to slave Premiere to incoming timecode?

    I have a .mov file with embedded timecode.  I recorded two channels of Ultrasonic audio (500 kHz samble rate - can even go higher, but I didn't want to take up too much recording space and wanted to save time opening files) on different software.  I have seen other people ask if you can slave it to audio software, and the response was, whay would you want to do that?  Last time I checked, Premiere doesn't support that kind of sample rate (I'm recording Dolphins here (seriously)).
    So, I have this multi-channel ultrasonic audio file with the same embedded timecode . . .
    I have an AJA I/O Express interface.  It has an LTC timecode in.  AJA has no idea what I am talking about when I ask them about it.
    I could slave the audio to Premiere, but that is not what my client wants. 
    We are recording dolphins with multiple cameras and multiple ultrasonic hydrophones.  They will be searching the audio files in different formats like spectograms.  When they see something curious in the ultrasonic sound file, they want to click just before it, press play in the ultrasonic audio software, and have the video chase to that timecode loacation so they can see what the dolphins are doing before, during, and after the sound event.
    This is not a joke, it is a real-life application - as ridiculous at it may seem to some of you.  Obviously my client is very high-profile.  I got the ultrasonic hardware/software provider to write special drivers for this application.
    Just a few years ago, it was normal to have audio tape decks chase timecode and/or have video tape decks chase timecode.
    Surely somebody is still doing this in software today.  This was very simple not that long ago.  Avid used to do it a few years ago.  Do I need to be checking there again, or is there a way for Premiere to do it?
    - Jay

    The only way I can think to do this is to create file with both ultrasonic audio and video, then use a program that shows you both the waveform and the video.  Outside of that, you'll have to take notes of where the events are in the ultrasonic audio file and manually go to that timecode in the video.

  • Is there a way to improve a photocopied picture?

    Hi,
    I would appreciate some help here.
    Is there a simple way to improve the look of photocopies of family pictures? Scanning did't happen and now I don't have possesion of the family album. I have started to scan in the photocopies and they look Ok, but I wondered if there was a program or something easy and inexpensive to improve the look of them at this point. If not, then they will be alright. But if there is a solution out there, please let me know.
    Thank you for your help.

    If you're planning a DVD slide show, the good news is that TV is pretty low resolution and you can get away with images that look terrible if they were printed. Some options:
    - whoever has the album, have them take pictures of the photos with a digital camera (strong light, but no glare; don't use the flash; lens parallel to the print, fill the frame).
    - smaller pictures hide defects, so put a border around the photo copies with a program like Photoshop Elements (I like it a lot, but it can take some learning).
    - make the pictures artsy and hide defects (color shifts; high contrast, copy sections of the photos and make a collage against a black background...).
    John

  • Is there a way to improve the sign in experience so that users don't have to specify both address and username?

    I've wondered this for a long time-is there a way to set up Lync so that I can have users sign in with just the sign in address, and not have to specify the username as well? Things tend to go like this:
    User launches lync client-types sign in address and password (in this case [email protected])
    Sign in will fail, and now they'll need to specify the username (in this case CTT1\user) and retype their password
    Now sign in succeeds (and it'll remember credentials)
    Is there a way to fix things in DNS so that step 2 isn't required?  It's a pain for the out of the box experience for new users, and the fact that the login has to fail to be able to specify the username in the first place is a little counterintuitive.
    Is there a record we can create so that the domain name (in this case CTT1) is inferred from the SIP domain? 

    Well if you want a "single signon" experience, the Workstation will need to de join to the domain :-)  otherwise it will prompt for the Username and password for authentificaiton.
    You can then check the save password box.
    For remote user that are NOT on the domain, same behavior, you will be prompted to enter Username/Password.
    If a post is helpful, please take a second to hit the green arrow on the left, or mark as answer, thanks.
    Jean-Philippe Breton | Senior Microsoft Consultant | MCTS, MCITP, MCT, Lync MVP

  • Is there a way of improving my graphics on my early 2011 macbook pro 13"?

    Does anyone know a way of improving the graphics capability for OpenGL with the Intel 3000 chips in the early 2011 MBP 13"? I bought it not realising the graphics chips had been downgraded and now as a result struggle to do any CGI work that I rely on my computer to do.

    CHRIBAM wrote:
    I'm more inclined to go with Ogelthorpe's advice (if I had the cash).
    I agree with Ogelthorpe as well, the 15" and the 17" MacBook Pro also have dedicated graphics cards which give more performance than the Intel HD 3000 only graphics, which is really of MacBook type performance for consumer user. (playback of video and that's about it)
    Still wondering why Apple went backwards for graphics in the 13", I completely missed the change.
    I'm peeved at Apple for the fact that they didn't make a clear distinction of the disadvantages of the 13" with no dedicated graphics card then lumped it in with the 15" and 17" which do.
    To Apple it's a matter of performance for price, the 13" scores 11 on Cinebench, the 15/17" score 30 and 45, so the  13" doesn't even come close. But it comes in the same silver case, the same "MacBook Pro" name, when in fact it's not so.
    Apple knows people would be attracted to the performance of the MacBook Pro name in a small size factor, the price is also attractive to the younger crowd, the younger crowd are also interested in running 3D games, which need a more powerful video card.
    Your not the first who's complained and feels burned, you trusted Apple was selling you a powerful MacBook Pro machine and you've got a consumer machine instead.
    The 13" Mac laptop should have gotten it's own category, called it a MacBook instead and it should have come with white or black case. But that would have angered Intel most likely, who are trying to push integrated graphics on their CPU's so they own the whole show eventually.
    It's going to take a long time before CPU integrated graphics is ever going to beat dedicated GPU graphics, because 3D game detail is always going to go up until it finally reaches 3D raytracing at 200 fps.
    What Apple is doing is trying to get folks hooked on lessor quality/detail games, the ones you see on iPads and iPhones, and away from wanting rich detail which needs a powerful dedicated video card.
    So Apple lumps the 13" MacBook in with the MacBook Pro line, try to force the issue, next they will try it with the 15", integrated graphics on the low end model. Then again only dedicated graphics on the 17" model and so forth. Eventually developers won't make as many 3D games for Mac's because most people buy laptops, cuts into their potential sales.
    If you really want to run 3D games, you have to go with a Windows 7 desktop where the video card can be swtiched out.
    http://www.cbscores.com/index.php?sort=ogl&order=desc

  • I am having difficulty downloading attachments (i.e. pdfs, photos) from email. Is there a way to improve this process?

    I am having difficulty downloading attachments (i.e. pdfs, photos) from email. Is there any way to make this process faster? Thanks!

    In Firefox Options / Privacy be sure "Remember download history" is checked. To see all of the options on that panel, "Firefox will" must be set to "Use custom settings for history".
    To find your OS information, on your Windows desktop, right-click the My Computer icon, choose Properties, under System on that small window is info about your OS.
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''

Maybe you are looking for

  • Connecting computer to tv for viewing EPIX,ETC.. but not through router?????

    I need to start connecting computer to tv for viewing EPIX,ETC.. but not through router?????  I have a workroom with a TV but without cable connection, so I thought I would connect my computer to my TV.  I have an Acer Aspire laptop. and a 27" tv.  P

  • Setting TCP Read timeout value?

    How do I choose a timeout value for a TCP read function? I'm receiving data from a server at a rate which varies between 40 and 140 Hz (normally 120 Hz), there is no handshaking and at any set transmission rate it appears that the network load causes

  • Change any paragraph style by script

    Hi !!! Is it possible change a selected paragraph with any paragraph style by script? Example: My paragraph style is: Font: Garamond, size 7pt, color: black, align justfy (or any selected paragraph style) Script to set the selected paragraph with par

  • [solved] Still having problems with ATI card

    Hi there, I posted a message over a week ago concerning issues that I am having getting my ATI Radeon card to function adequately with X Currently i'm using the xf86-video-ati-6.10.0-1 driver however for some reason this doesn't work properly for my

  • Error when generating the update program

    Hi BW Experts, I am facing issue while loading data to cubes: 0TCT_C01 & 0TCT_C02 In load monitor (RSMO) -> details> some data pakages are going thru successfully while some are failing with error: Error when generating the update program Thanks