Possible to compress a selection?

I'm trying to help someone who will be dealing with many videos, where she wants to define many clips in each video, and then have them individually handed off to Compressor for compression. Her experience so far is that the entire file is compressed. Is it possible to just compress a selection, or track(s), and if not, then would she need to create a new project for each segment? thanks

I don't know much about free software but Roxio Toast has a Fit to DVD option I often use for this same purpose that works rather well.
Also, after searching google, I did find this one link which may help you. I've never used it myself so I'm not completely sure of how well it will work but it may help you.
http://mac.softpedia.com/get/Video/DVDRemaster.shtml
Message was edited by: SDMacuser

Similar Messages

  • Is it not possible to give the select single field without an into clause

    Hi,
    i have to check whether my input value( only one filed) is available in the table.
    for eg i need to check whether company code is available in the table t001.
    then i will give .
    data lv_bukrs type t001-bukrs.
    lv_bukrs = 1010.
    select single bukrs from t001 where bukrs = lv_bukrs.
    here its asking for me to give a vaible to store the bukrs that is
    select single bukrs into dummyvalue from t001 where bukrs = lv_bukrs.
    Is it not possible to give the select single fieldname without an into clause

    Its Possible by declaring the tables statement
    <b>tables : AFKO.
    select single * from AFKO where <condition>.</b>
    If SINGLE is specified, the resulting set has a single line. If the remaining additions to the SELECT command select more than one line from the database, the first line that is found is entered into the resulting set. The data objects specified after INTO may not be internal tables, and the APPENDING addition may not be used. The addition ORDER BY can also not be used.
    An exclusive lock can be set for this line using the FOR UPDATE addition when a single line is being read with SINGLE. The SELECT command is used in this case only if all primary key fields in logical expressions linked by AND are checked to make sure they are the same in the WHERE condition. Otherwise, the resulting set is empty and sy-subrc is set to 8. If the lock causes a deadlock, an exception occurs. If the FOR UPDATE addition is used, the SELECT command circumvents SAP buffering.
    Notes
    When SINGLE is being specified, the lines to be read should be clearly specified in the WHERE condition, for the sake of efficiency. When the data is read from a database table, the system does this by specifying comparison values for the primary key.
    If accessing tables for which SAP buffering is planned for single records, the SAP buffer is bypassed if the addition SINGLE is not specified. This behavior depends on the current implementation of the database interface and may change in future releases. In particular, it should not be used to bypass the SAP buffer. You should use the explicit addition BYPASSING BUFFER for this instead.
    The addition SINLGE is not permitted in a subquery.
    Regards
    - Gopi

  • Is it possible to debug the selection screen???

    Hi Frdz,
    Is it possible to debug the selection screen.
    eg: if i want to know what is happening in PBO and PAI modules of the selection screen i am not able to debug that.
    Even in code if i click on MODULES present in PBO and PAI modules it is saying MODULE doesnot exist!!!!. So i can't put the break point. even if i press /h it will go to Report events like INITIALIZATION, AT SELECTION-SCREEN but not PBO and PAI modules!.
    Also what is the meaning of exclamatory mark here(Before select option name)
    MODULE !SO_UDATE.
    MODULE !SO_UNAME.
    Thanks,
    Vinod.

    Hi Vinod,
    Double click on the module and then put the break point for the first statement of it. It will work.
    Reward points if useful.
    Thanks,
    Khan.

  • It's is possible to make a select from a view?

    I don't know if it's possible to make a select of a table-view like V_T5F99FW if it's possible does anybody tell me how can I do?
    Thanks a lot,
    Regards,
    Rebeca

    Hi Rebeca,
    You can surely do a selection from a projection and database view but not from a maintenance view.
    The selection from a view works like a normal selection only.
    watch this link
    http://sap.ionelburlacu.ro/abap/ABAPperformance.html#Select_with_view
    Regards,
    Manish
    Edited by: MANISH GUPTA on Aug 31, 2008 1:38 PM

  • Is it possible to do Multi selection in LOV

    Hi,
    Is it possible to do multi selection of values from the LOV (List of Values) drop down list in Oracle Reports or Oracle apps.
    Thanks,
    Rohit

    Google for things like "selective coloring lightroom" or "spot coloring lightroom" and you'll find plenty of tutorials to choose from.

  • Is it possible to delete data selectively from Business content cubes

    Dear Experts,
             Requesting you to help me out to know, is it possible to delete data selectively from Business content cubes.
    When I'm trying to delete selectively from Business content cubes, the background job gets cancelled with ST22 logs stating
    A RAISE statement in the program "SAPLRSDRD" raised the exception  condition "X_MESSAGE".                                                                               
    Since the exception was not intercepted by a superior program, processing was terminated.  
    and i tried  with few more Technical content cubes but the same thing happens.
    Pls let me know how to selectively delete data from Business content cubes if it's possible?.
    Thanks in advance for your favorable assistance.
    Regards,
    Ramesh-Kumar.

    Hi Ramesh,
    Follow below steps for selective deletion:
    1.     Transaction code: Use the Transaction code DELETE_FACTS.
    2.     Generate selective deletion program:
    A report program will be generated of the given name, here .
    3.     Selection screen:
    Take the deletion program u201CZDEL_EPBGu201D to the transaction code SE38 to see/execute the program.
    After executing it will take you to a selection screen:
    As we need to carry out deletion selective on Calendar week, we need to get the screen field for the field Calendar week. For this, click on the Calendar week field and press F1.
    Click on the technical information button (marked in red box above) you will get below screen:
         ABAP program to carry out the Calendar week calculation
    Problem scenario: As stated earlier the requirement is to delete the data from the cube based on the calendar week. Thus a code must be developed such that the number of weeks should be taken as input and corresponding calendar week should be determined. This calendar week should be then passed to the deletion program in order to carry out the data deletion from the InfoCube.
         Transaction code: Use T-code SE38 in order to create a program.
    Logic: Suppose we need to delete the data older than 100 weeks.
    a.     Get the number of weeks and system date in variables and calculate the total number of days :
    lv_week = 100.      *number of weeks      
    lv_dte = sy-datum.     *system date
    v_totaldays = lv_week * 7.      *total days
    b.     Get the corresponding calendar day from the total days. This is obtained by simply subtracting the total no. of days from the system date.
    lv_calday = lv_dte - v_totaldays. *corresponding calday.     
    c.     Now in order to get the calendar week corresponding to the calculated calendar day we must call a function module 'DATE_TO_PERIOD_CONVERT'. This function module takes input as Calendar day and Fiscal year variant and returns the appropriate fiscal period.
    Get the sales week time elements
      call function 'DATE_TO_PERIOD_CONVERT'
        exporting
          i_date                      = lv_calday
          i_periv                     = lc_sales
        importing
          e_buper                     = lv_period
          e_gjahr                     = lv_year
        exceptions
          input_false                 = 1
          t009_notfound               = 2
          t009b_notfound              = 3.
      if sy-subrc = 0.
        ls_time-calweek(4)      = lv_year.
        ls_time-calweek+4(2)    = lv_period.
      endif.
    v_week = ls_boots_time-calweek.
    Note: We can pass the fiscal year variant which can be obtained from the table T009B.For e.g. here fiscal year variant lc_sales = Z2. LS_TIME will be any table with suitable time units.
    d.     Now we have obtained the required calendar week in the v_week variable. This calendar week is the week till which we need to keep the data. And older data than this week will be deleted. This deletion will be done by the deletion program
    Submitting the Data deletion program for ZEPBGC01 and key field
    SUBMIT ZDEL_EPBG WITH C039 LT v_week.
              Here the calendar week value is submitted to the deletion program ZDEL_EPBG with the screen field of calendar week.
    Hope ... this will  help you..
    Thanks,
    Jitendra

  • Is it possible to diable multiple selections in JTable and JList?

    as the title states, is it possible to disable multiple selections? how to prevent user from using ctrl or shift keys to select multiple rows?

    Use the setSelectionMode(ListSelectionModel.SINGLE_SELECTION ) for your JList / JTable.

  • How do I Change sub category to a key word tag in Elements 6. When I right click the sub category is the possibility to change not selectable

    I want to change a sub category to a key word tag in Elements 6. When I right click the sub category is the possibility to change not selectable. How to do it?

    If you want to change the category you need to change the feed, which means changing it in WordPress. You need to pick one category and, if there is one, one sub-category from the official list here:
    http://www.apple.com/itunes/podcasts/specs.html#categories
    It is possible to have further categories, though I don't know whether WordPress will allow that, but you should put the most relevant one in first.
    Once you've amended it simply re-upload the feed and wait for the Store to catch up. You don't need to resubmit.

  • It is not possible to configure the selected XI domain

    Hi...
    PI 7.0 server on Windows environment and database is SQL Server.
    PI Server pick and place the messages from r/3 to r/3 in Oneway but in the reverse it is pick the messages from source but it is not place to the target system.
    The error messsage in RWB in end to end monitoring...
    It is not possible to configure the selected XI domain because the Integration Server does not exist or could not be read from the SLD
    In Component monitoring...
    500 internal server error
    Application error occured during repuest processing..
    Thnx
    Raj

    Thanks for your promp response, tbluong.
    The configuration in SXMB_ADM > Integration Engine Configuration is already done and its check (F7) returns success (all green): "Role of Business System: Current Configuration = System Landscape" and "Corresponding Integration Server: Current Configuration = System Landscape".
    Any suggestion?
    Regards.

  • Is it possible to compress /usr these days in Arch?

    Between aufs2 not being in the kernel, and systemd, and the move to symlink /bin and /usr/bin, etc, is it possible to compress /usr?
    I'd still like to do it if it is reasonably manageable to do. My hard drive and its slow speed is a cause of much angst for me.

    @ drcouzelis- On the wiki there are old instructions on how to use a unionfs and squashfs as a way to make /usr writeable while taking advantage of everything else being expanded into memory from a squashfs.
    Yes this is possible, but it would take a lot of work not only to get going, but also to maintain.  This is beause as you have already figured out, aufs2 is not in the kernel, but exists as a patchset.  There is a pf-kernel user repo though, and the pf patchset includes aufs2.  So I guess there is the possibility that it won't necessarily have to be as much a PITA to maintain as doing all of it manually.

  • Why DDL during SELECT is possible. Or why SELECT does not put a table lock?

    This is a question to people who really knows Oracle internals or/and RDB theory.
    (The question is relocated from another thread for not hijacking on that's original question.)
    Why DDL during SELECT is possible? Or why SELECT does not put TM 2 Row Shared lock on table(s)?
    This not locking causes a possibility while one session is running a long select, another can truncate and even drop table(s) that are being read by the first session.
    I think, humbly assume, that Oracle does not put TM 2 lock on tables, that are being simply SELECTed, by some significant technical reason. But I do not know this reason. If somebody knows please shed a light.
    Also, if you know that this behavior is totally correct from perspective of RDB theory, please explain me.
    I'll try to explain my point.
    It is a matter of data consistency and integrity that is supported in Oracle everywhere except this place.
    a) If one session is reading data from moment T and other session changes data on its way at moment T1, the first session wont read that changed data, it will read the data that was there on moment T.
    This is declared as Read Consistency principle.
    b) If one session is changing data, and another session tries to truncate or drop table - the second session will fail with error ORA-00054: resource busy and acquire with NOWAIT specified.
    This is declared as Data Integrity principle.
    c) But why not to follow the above principles in case when one session reads data and another session tries to truncate or drop table (or do other DDL operations)?
    It is counter-intuitive. Why not to put TM 2 (SS) lock during SELECT execution that would prevent DDLs on this table?
    What I only can assume is that this is only because some technical difficulty or limitation.
    What is this limitation or other reason in favor of which Oracle sacrificed consistency in this case?

    user11181920 wrote:
    Aman,
    There was no need to clarify how DML lock works, I know that.
    Also I know that in Oracle a Select does not lock neither table rows nor table itself.
    The reason I mentioned it because you brought up the word change which is far better suited for DML's than DDL's as the former has a requirement to have its Undo preserved.
    Again, my question was why Select does not protect itself by locking table(s), partitions and indexes?Protect from what? There is nothing wrong with doing a select. What would happen with a select doing a lock on the table before being executed in its entirety (forget DDL and DML altogether for a moment) ? State one good reason that there should be a lock for the select. If it has to, it would be always isn't it?
    The keyword here is concurrency and that's what is the best when the number of locks obtained are lesser at non-required operations. A select doesn't change anything that's why in Oracle, there is no read-level lock.I am not saying about row locks while reading. They are not needed because Undo resolves concurrency.Only in the case of DML where the change is still active and the buffers are dirty. With a DDL, its an implicit commit.
    I am asking why Select does not enqueue one, only one lock per object that participates in the Select?Again, my question back to you is, what good you would get from it? What purpose it would solve?
    It is not very expensive, I suppose. But it would protect from DDLs that can destroy the Select's result set. You have seen in your system and in my demo(and that's what the the question was on the other thread also) that the result remains intact and its not a behavior from now. Its the same since the time I have started learning Oracle. Can you explain that why you think that the result of select statement would be wrong for a drop table? I believe, its been stated repeatedly that if the select has no requirement to look back the table, it would get completed. Only if the select needs to access the table again, it would fail. So even if we consider your explanation, there is no wrong result shown at all. Once the session encounters that the table is dropped for the statement, the execution stops right away. So where is the destroyed result?
    Yes, it is less dangerous when Select does not lock table comparing with what would happen with DMLs in such case (that is why DMLs protect themselves by TM 3), it affects only the Select and its consumer, but still ... I don't understand this Oracle's decision. What is a reasoning behind it?.As I said, to improve concurrency.
    Aman....

  • Is it possible to compress a 90 mb file into 25 mb?

    This film director wants to fit this one movie trailer file in his mailbox I suppose, he wants me to  compress this movie trailer from 90mb to 25mb.  Can I perform this on the CS4 export page? If so, what are some possible configurations to select?
    If not, what are some third party softwares? DIVX ?

    You might look at Flash Export, and adjust the bit-rate down a bit.
    I would rather rely on something like YouSendIt, or an FTP site, where the director could download a higher bit-rate version, but that is just me.
    Good luck,
    Hunt

  • Is it possible to compress HD video from 1.5gb to .5gb w/out losing quality

    i need to compress HD video, whos files sizes range from 1.5gb-2.5gb down to .5gb-1gb, respectively. is it possible to do it without losing any noticeable quality or not. what i do is export the file as quicktime movie and get a file around 1.5gb so can i get that down to say 500mb's? i have compressor and final cut pro 7, do either of those work or do i need another program or is what i am asking simply impossible

    Some quality will be lost. You are, after all, compressing the video.
    The H.264 codec is darn good at being low data rate but good quality. BUT, it is a final delivery format. Meaning that it is meant as a final step...a way to compress your project into a viewable format. It isn't editable.
    Just use the Quicktime 7 Streaming presets.
    Unless you intend this footage for some other use. What EXACTLY are you trying to accomplish? And note, a "quicktime movie" is just a format. It's like saying "a car." What TYPE of quicktime? H.264, MPEG-4, Sorenson, ProRes, HDV? Like Toyota Camry, Honda Accord, Jeep Cherokee...
    Shane

  • Is it possible to save document selection as Channel mask-?

    Hi Everyone:
    Is this possible to script.
    1. save document selection as Channel mask…?
    2. how do we get selection from layermask..?
    Thanks is advance.
    -yajiv

    ad 1)
    If you mean a Channel:
    app.activeDocument.selection.store(app.activeDocument.channels.add())
    ad 2)
    if the Layer is selected this should load the Layer Mask as a Selection:
    // =======================================================
    var idsetd = charIDToTypeID( "setd" );
        var desc12 = new ActionDescriptor();
        var idnull = charIDToTypeID( "null" );
            var ref8 = new ActionReference();
            var idChnl = charIDToTypeID( "Chnl" );
            var idfsel = charIDToTypeID( "fsel" );
            ref8.putProperty( idChnl, idfsel );
        desc12.putReference( idnull, ref8 );
        var idT = charIDToTypeID( "T   " );
            var ref9 = new ActionReference();
            var idChnl = charIDToTypeID( "Chnl" );
            var idChnl = charIDToTypeID( "Chnl" );
            var idMsk = charIDToTypeID( "Msk " );
            ref9.putEnumerated( idChnl, idChnl, idMsk );
        desc12.putReference( idT, ref9 );
    executeAction( idsetd, desc12, DialogModes.NO );

  • Is it possible to export only selective bookmarks?

    Hi,
    Can I export selective bookmarks e.g. rather than backing up all bookmarks? i.e. select multiple folders and just back up all bookmarks within the selected folders (in either either JSON or .HTML format).
    It might be possible to do so or maybe there is an add-on that can do exactly this?
    Actually I tried it by selecting only one (1) folder but the size of the exported .json and the .html file was exactly the same as the size of the total back files.
    thnk you.

    thnks so much again cor-el. Looks like you are the only person supporting FireFox :) but you are doing a wonderful work. So thnk u for all the help. I will try the solution later.

Maybe you are looking for

  • About Working with text descriptors (tags)

    Hi, I see the Text Tracks tutorial for QT Pro, so I decide to make some subtitles for a video and change the color of the text, but the tuto say about RGB colors an the numbers that fills are 5 digits. But I learned that RGB only uses a scale of 0-25

  • Ttrigger error

    Why the following code gives error ?? CREATE OR REPLACE TRIGGER log_new_salary AFTER UPDATE ON emp FOR EACH ROW WHEN (NEW.sal >1000) BEGIN INSERT INTO emp_log (emp_id, log_date, new_salary, action) VALUES (:NEW.empno, SYADATE, :NEW.sal, 'NEW SAL'); E

  • Photoshop CS3 - How do I make a ring shine

    Hello, I am very inexperienced with photoshop, and I'm working on my first project. I edited the picture below using a video tutorial, and now I want to try and make the ring stand out more. I was hoping to be able to make it shine or at least make t

  • Same file opening multiple times in indesign cc

    Hi - I'm getting the same file opening multiple (20-30 times) try closing and it just keeps opening new copies Have to force quit in the end Any idea's

  • Customizing sensor from filtering false alarms.

    hi, How can i filter the false alarms coming out from my dhcp server and dns servers. Iam getting a lot of frag overlap signature alarms.Can anyone help me to avoid these false alarms ? Please help.