H.264 data rate difference between local and distributed encode

Doing some testing today and noticed this curious behavior with compressor 3.5.1:
Set video encode for a 50 second 1080i uncompressed file to H.264 at 50000 kbps (50 mbps). Audio is 24 bit, 48khz stereo with no compression.
1. Sending the job to "This computer" for a local-only encode gives me a file size of 327 MB
2. Sending the same job to the same computer using distributed encoding gives me a file size of 211 MB
The data rate for the distributed encoded file is about 34 mbps, which isn't what was specified in the encode settings in Compressor. The data rate for the locally encoded file is about 52 mbps, which is what I would expect when the audio is taken into account.
Why the difference? Both encoded files are the same duration, so there aren't any missing frames. They both look good and play well but this is giving me cause for pause.
Also, another curious difference I noticed... The distributed file has the More Info fields populated with useful information in the Finder (dimensions, codecs, duration, channel count, total bit rate). The locally encoded file does not have this information.
-Matt

Hi,
Not sure if this can be corrected whit customizing. Please see SAP note 1065932 for background on currencies in asset accounting. Some explanations on differences in currencies can be found there.
Regards,
Andre

Similar Messages

  • Exchange rate difference between MIRO and GR/IR

    Hi,
    Exchange rate difference between MIRO and GR/IR we need to written off as a expense for imported w/off expense and in case of assets we need to post exchange rate difference to exchange fluctuation account. Currently exchange rate difference is accounting under capital work in progress(Asset)instead of exchange fluctuation.
    Thanks in Advance
    Regards
    Venkata Suresh

    Hi,
    At MIRO stage, after entering PO number system will automatically populate the GRN value for selection. Here if you found that invoice value, which you have received from the vendor, is more than the system proposed amount, then you can adjust that diff amount in the GL account tab, which is next to PO reference tab in MIRO.
    There enter the exch loss GL account and enter the diff amount.
    Thanks,
    Srinu.

  • Unable to clear GL due to Val difference between Local and group currency.

    hi,
    We have an open item managed Revaluation G/L account in our company code which has a local currency USD.There are some documents posted to this account in both USD and CAD. But when we analyze the docs posted in CAD we found a valuation difference in the local currency(USD) and the Group currency(again USD). I am not sure of the reason for this. But due to this difference we are unable to clear this account. Please let me know if anyone can think of how to clear this particular GL account.
    Rgds,
    Raj/
    Edited by: raj3875 on Oct 8, 2009 11:37 PM

    We have an issue even with document currency in USD. there is a valuation difference between Local currency (USD) and Group currency (USD).
    For example:
    Doc currency = 0 USD
    Local Currrency = 171,000 USD
    Group currency  = 0 USD
    Because of this I am not able to clear the account. Not sure why there is a difference inspite of the same currency. I try to clear it in F-04 but I get the below error:
    Posting is only possible with a zero balance; correct document
    Message no. F5060
    Regards,
    Raj

  • Exchange rate differences between GR and IR

    Hi Gurus,
    i have a problem about a exchange rate differences beetween GR and IR. Customizing setting is done based on this logic (transaction OMRW, ERD setting = blank).
    For example: Goods Receipt amount is $100 and the posting is made with exchange rate 0,8. When busy with MIRO the user change manually exchange rate from 0,8 to 1,0. Moreover, the user change item amount from $100 to $150.
    When the user simulate the posting in MIRO, transaction KDM is not activated (used).
    Is to be underline that if item amount is not change but it remains untouched, transaction KDM is used correctly.
    The system is:
    SAP ECC 6.0
    Software component:  SAP_APPL     
    Release:  600     
    Level: 0016     
    Highest support package: SAPKH60016     
    Short description of software component: Logistics and Accounting
    Have you any ideas about the reason of this malfunction?
    Many thanks already in advance.
    Stefano

    Hi Gurus,
    i have a problem about a exchange rate differences beetween GR and IR. Customizing setting is done based on this logic (transaction OMRW, ERD setting = blank).
    For example: Goods Receipt amount is $100 and the posting is made with exchange rate 0,8. When busy with MIRO the user change manually exchange rate from 0,8 to 1,0. Moreover, the user change item amount from $100 to $150.
    When the user simulate the posting in MIRO, transaction KDM is not activated (used).
    Is to be underline that if item amount is not change but it remains untouched, transaction KDM is used correctly.
    The system is:
    SAP ECC 6.0
    Software component:  SAP_APPL     
    Release:  600     
    Level: 0016     
    Highest support package: SAPKH60016     
    Short description of software component: Logistics and Accounting
    Have you any ideas about the reason of this malfunction?
    Many thanks already in advance.
    Stefano

  • Realized exchange rate difference in local and group currency

    Hi Friends,
    For a company code with local currency as Euro and group currency as USD, the setting in TR code OB22 for group currency is: Translation taking first local currency as a basis. When the open items are cleared, SAP posts difference in local currency and group currency. Sometimes, document currency is also group currency i.e. USD. The realized exchange difference is posted in Euro but it is not converted from Euro to group currency. Instead, system just calculates difference in group currency by comparing the value in group currency at the time of original transaction and when the transaction is cleared. Does anyone have dealt with such requirement and is there a way to be able to translate realized exchange differences from local to group currency?
    Thanks and regards,
    Pinky

    >Sometimes, document currency is also group currency i.e. USD.
    Can you explain, it's because of your settings or because of SAP?

  • Exchange Rate - Differences between MIRO and F-43.

    Hi All,
    Anyone know if it is possible to include in MIRO, in a standard way, the field "Translation Date" presented in transaction F-43?
    THNKS in advance!
    BR
    JEC

    No, not with std config
    but you can do the custom developement.
    make sure when you post the query
    it should match you query and subject information
    for this query the subject is diff than your query

  • IndexOf - difference between Win and Linux encoding

    Hello folks, wondering if someone could put me on the right track over this little problem with porting a java app to Linux...
    I have a nice little program, developed on (the latest) JDK under windows which reads a custom file format, locates the second occurance of the substring 'PNG', ignores everything before the character before this PNG (hence the -1 below) and saves the remainder, which is now a bog-standard PNG image. The first 'PNG substring always occurs within the first 50 bytes (hence the 50 below) and the second around the 2kB mark. Here's the line that finds the location of the second 'PNG' in the file loaded into strFileContent:
    location = strFileContent.indexOf( "PNG", 50 )-1;All is well compiled and run on windows, say file 'test1.xyz' produces a value for location of 2076 and saves a nice PNG called 'test1.png'.
    When I haul it over to Linux (Ubuntu 9.04) and lo, location comes out as 1964 for the same file, and of course the file is no-longer a PNG because there are an extra 112 bytes on the front end. Running the windows compile of the code or a fresh Linux compile makes no difference.
    I'm suspecting Win and Linux Java count, perhaps, line endings or some such differently, perhaps have to check an encoding. I'd appreciate any pointers on correcting this to work on both platforms (ultimately I'm trying to appease a Mac user, but don't have a Mac to play with at the moment).
    Cheers,
    K.
    Ken

    phaethon2008 wrote:
    I'm suspecting Win and Linux Java count, perhaps, line endings or some such differently, perhaps have to check an encoding. I'd appreciate any pointers on correcting this to work on both platforms (ultimately I'm trying to appease a Mac user, but don't have a Mac to play with at the moment).The immediate cause of your problem is probably that Windows uses a 8bit encoding as the default (probably some ISO-8859-{noformat}*{noformat} variant or the Windows-bastardization of it), while Ubuntu uses UTF-8, which has a varying number of bytes per character.
    The much more important underlying problem is that you're trying to treat binary data as if it were text. A PNG image is not text. Handling binary data in Strings (or char[]) is a sure way to invite desaster.
    You must convert your code to handle InputStream/OutputStream/byte[] instead of Reader/Writer/String/char[].

  • Difference between allocated and distributable Budget

    Dear all,
    I am facing problem with a CAPEX project created automatically thru Appropriation request and approval.
    Requested Budget in Appropriation request INR 100000
    Transaction CJ30 :
    Allocated Budget u201COverallu201D  INR 1000000
    Distributable Budget 2009    INR 900000
    Shortfall INR 10000
    The project requires the full allocation of funds INR 100000 to fulfil the requirements as stated in the Appropriation Request.
    I can not use CJ30 to edit the project budget as it comes automatically from IM.
    Regards
    VK

    The original budget of the project must be assigned with IM32, when you need to make a adition of budget you should use IM30 and if you need to reduce the budget use IM38.
    Best Regards...

  • What's the difference between "local reminder" and "push notification?

    A friend has been bugging me about this, does anyone know what's the difference between "local reminder" and "push notification" in an iPhone app?

    In a nutshell, local notifications are popup notifications from applications on your phone, based on data that's already on the local phone.  Push notifications are popup notifications you get when new info (like an email, tweet, or update from something like Facebook) gets pushed to your device from a server. 

  • What is difference between local variable and property node ?

    What is difference between local variable and property node ?
    " 一天到晚游泳的鱼"
    [email protected]
    我的个人网站:LabVIEW——北方客栈 http://www.labview365.com
    欢迎加入《LabVIEW编程思想》组——http://decibel.ni.com/content/groups/thinking-in-labview

    To make things clear, here are two small examples that show how nasty locals and value properties can be to the naive programmer.
    - Open the diagram of the race condition.vi before running it and try to predict what will be the values of the two counters after the third run.
    - Use the Compare Locals Properties and Wires.vi to find out how slow locals and value properties can be (times 1000+).
    This being demonstrated, I must add that I use globals and value properties quite often, because they are often very convenient
    Chilly Charly    (aka CC)
             E-List Master - Kudos glutton - Press the yellow button on the left...        
    Attachments:
    Race condition.vi ‏9 KB
    Compare Locals Properties and Wires.vi ‏18 KB

  • What is the difference between local printing and remote printing in SAP

    Hello Nation,
    I would like to know what is the difference between local printing and remote printing in SAP and in what scenarios they are used ?
    1.What is local printing in SAP ?
    2.What is Remote Printing in SAP?
    3.what is the difference between local printing and remote printing in SAP ?
    Thank you in Advance.
    Regards,
    -Mohamed Naveen.

    Hi,
    This is SAP Business one system administration forum. Please find correct forum and repost your discussion to get quick response.
    Please close this thread here with helpful answer.
    Thanks & Regards,
    Nagarajan

  • Difference between 0FI_AP_30 and 0FI_AP_4 Data source

    HI,
    What is the difference between 0FI_AP_30 and 0FI_AP_4 Data source.
    Thanks in advance

    Hi,
    In addition to above differences. Below is the functional difference between 0FI_AP_30 & 0FI_AP_4:
    0FI_AP_4 gives you accounts payable line items in your report. Here GL account shows the balances of particular types of  vendors/payables to which that particular GL account is been assigned.
    And If subledger is activated in ECC, then by using 0FI_AP_30 you can get the break up of that particular GL balance according to vendors.
    To make use of datasource 0FI_AP_30, subledger accounting must be activated in ECC.
    Regards,
    Pradip

  • Exchange Rate difference between PO , GR and IR

    Hi All,
    I have a question, Does anyone know how to handle the PO exchange rate difference between PO , GR and IR time.
    For example
    1.  PO creation on Jan 2009  - exchange rate = 1.2
    2.  GR creation on Feb 2009 - exchange rate = 1.5
    3.  IR  creation on March 2009 - exchange rate = 1.7
    Should GR and IR use the PO exchange rate # 1 for posting or use the current exchange # 2 for GR and #3 for IR ?
    Thank you
    Alex

    Hi Alex,
    The exchange rates in PO and GR and IR will be different as if you have are updating the rates per month in system so it will changed.
    Regards,
    Ninad Kshirsagar

  • Difference between ob08 and oc41 Transaction code in Exchange rate

    Hi,
    Can any one help me out what is the difference between OB08 and Oc41 in transaction code in Exchange rates...
    Thanks in Advance
    Sivanand

    hi Siva,
    When foreign currencies are valuated, all the open items that were posted in a foreign currency are valuated. The valuation is based on the individual open items in a foreign currency, that is, each open item in a foreign currency is valuated individually.
    The exchange rate table is OB08
    AND
    OC41 is another transaction to the exchange rate table.
    When you try to change you cannt change the rates sometimes.... but u can see the rates displayed.......
    Regards
    Ranjit Kumar

  • Differences between archiving and inactivating a qualitative lookup within the Data Admin toolkit.

    Hi,
    Can you please let me know what could be the difference between archiving and Inactivating the Qualitative Lookup in Data Admin Tool Kit.
    Thanks,
    Rohini M

    When you inactive or archive something it is no longer available for selection.   The difference between inactive and archive is that inactive items will still appear available for searching purposes while archive items will not.  
    So lets say you have the following:
    List A
       - Item 1
       - Item 2
    List Items
    If you were to inactivate Item 1, end users would no longer see it available for selection when using the qualitative extended attribute.  However when they search for specs based on the extended attribute they would still be able to select Item 1 so they could find objects that used that value. If you were to archive Item 1, end users should no longer see it available for selection anywhere - including searching.
    Lists
    If you were to inactive or archive the entire List A, you would no longer see it available for selection when setting up qualitative lookup extended attributes.   I don't think there is anywhere you can search for extended attributes by lookup list currently out of the box so these would act similar.  If there was a place to search for extended attributes by lookup list then it would follow the same rules as above.

Maybe you are looking for

  • Unable to install Adobe Air, error code 24

    Unable to install Adobe Air on Samsung Tab 3. Getting error code 24 message. Help!!

  • Create New Filed in Line Item Text Tab

    Hi Experts, How Can I create a new filed in Quotation > Line Item > Text Tab ? Tks. & Brgds. Ripon

  • File mapping related

    I am using file mapping for a large file that I need to parse. The file is made of variable length entries, that are identified by their tags (e.g. : Entry:222, ...). Because of the size of the file (400, 000, 000), the program dies in/after the foll

  • Ideal Premiere Pro export settings BEFORE compressor

    I'm editing with Premiere Pro these days... I've currently been exporting 1080p h.264 mov files in order to put them into compressor ad have compressor do it's thing to make them internet ready. Is there an "ideal" setting that I should be using BEFO

  • Error when installing SAP gateway in Flash Builder 4.6

    I installed Flash Builder 4.6 but I am getting an error installing the SAP add-on. it says org.maven.ide.eclipse missing. I am running this as admin.