Adobe Audition not saving Meta Data

I'm trying to save file information within an mp3 or wav file for our broadcast software (AudioVault) to read it and the information does not save.
We use versions 1.5 and Version 3 and they both exhibit the same behavior.
I have followed the info below but it doesn't work.
The File Info command opens a dialog box in which you can see and add metadata—descriptive information that a computer can process and search—about the open audio file. For example, metadata can include history, loop, and Broadcast Wave information.
For audio files in WAV, mp3, or CEL format, you can use the File > XMP Info command to add XMP metadata. This extensive metadata can be shared across databases, file formats, and platforms. (See Add or edit XMP metadata.)
1. In Edit View, choose File > File Info.
2. Click the tabs at the top of the dialog box to navigate between different sets of properties.
3. Set properties as desired, and click OK.
To preserve file information when you save files, select Save Extra Non‑Audio Information in the Save dialog box.
It is not saving the start and end date. Here's what I'm doing. Open mp3 file. File-File Info, toggle text field names to Radio Industry.
Fill out Description, Advertiser, start date, end date, click ok. click file, save as (clicking save extra audio infomation)
now close the file and reopen it and the start and end date are gone. Ideas?

After talking with BE I discovered that the following procedure will save
the
meta data providing it is saved in a WAV format (mp3 doesn't work.)
Open your mixdown in the waveform view.
Hit ctrl P and the wave properties window will appear.
Fill out title, artist. Cut number, category and date.
When you save as make sure save extra non-audio info is checked
Then in the dropdown save as type choose WAV windows pcm.
Your completed file can now be dropped into an AV import folder that should
transfer
Into the system with all the information in their proper fields.

Similar Messages

  • Problem: EO based VO not saving VO data in database

    Hi Experts!
    For a shocker and contradiction to the concepts and theory of OAF, something strange and wierd i came across. I got an EO based VO, which got some data (i've confirmed this by debugging) is not saving the data to database on "apply". By apply i mean .. getTransaction().commit();
    This is something which violates completely with the theories, so i've no clues about it. Can anyone suggest something !!
    I mean, how to trace the functionality and resolve the issue?
    Regards
    Ari :)

    Hi sushant!
    Yeah sure!!
    Here it follows: It is an AM method..
    /**Custom public method to define default cost
    * allocation based on the pre-defined formula
    * for cost allocation keeping parity with the
    * corresponding delivery freight details
    public void DefineDefaultCosts(String StrOrgId,String StrTransportationId) {
    OAViewObject vo = (OAViewObject)getAmritTransportationCreateVO1()
    ,vo1 = (OAViewObject)getAmritTransportationPaymentsVO1()
    ,vo2 = (OAViewObject)getAmritTransportDeliveryLinesVO1();
    OADBTransaction txn = getOADBTransaction();
    ArrayList debugMessage = new ArrayList();
    HashMap PartySet = new HashMap();
    Boolean PartyEntryValid = null;
    String TransportationNum = (String)vo.getCurrentRow().getAttribute("TransportationNum")
    ,CurrencyCode = (String)vo.getCurrentRow().getAttribute("CurrencyCode")
    ,EventType = "TRNSP DELIVERED",PeriodName = null;
    Date AccountingDate = (Date)vo.getCurrentRow().getAttribute("DateDelivered");
    Number Amount = (Number)vo.getCurrentRow().getAttribute("Amount")
    ,Rate = (Number)vo.getCurrentRow().getAttribute("Rate")
    ,TripId = (Number)vo.getCurrentRow().getAttribute("TripId")
    ,OrgId = null,TransportationId = null,CodeCombinationId = new Number(576773);
    int DlvryRowCount = vo2.getRowCount(),CostDistRowCount = vo1.getRowCount();
    if (CostDistRowCount == 0) {
    try {
    OrgId = new Number(StrOrgId);
    TransportationId = new Number(StrTransportationId);
    }catch (Exception e) {}
    //debugMessage.add(new OAException("Inherited Values: "TransportationId" "TransportationNum" "CurrencyCode" "EventType" "AccountingDate" "Amount" "Rate" "+OrgId));
    try {
    Connection Conn = txn.getJdbcConnection();
    String v$Script = "Select gp.period_name period\n" +
    "From gl_periods gp\n" +
    "Where upper(gp.period_set_name) = 'AMRIT_CALENDAR'\n" +
    "And gp.adjustment_period_flag = 'N'\n" +
    "And trunc(:1) between nvl(gp.start_date,trunc(sysdate))\n" +
    " and nvl(gp.end_date,trunc(sysdate))\n";
    PreparedStatement PreExecuteQuery = Conn.prepareStatement(v$Script);
    PreExecuteQuery.setDate(1,new java.sql.Date(AccountingDate.dateValue().getTime()));
    for (ResultSet QryOutputRS = PreExecuteQuery.executeQuery();QryOutputRS.next();) {
    PeriodName = QryOutputRS.getString("period");
    v$Script = "Select attl.vendor_id vendorid\n" +
    " ,asp.vendor_name vendor \n" +
    "From apps.amrit_transport_trips att\n" +
    " ,apps.amrit_transport_trip_lines attl\n" +
    " ,ap.ap_suppliers asp\n" +
    "Where att.org_id = :1\n" +
    "And att.trip_id = :2\n" +
    "And att.enabled_flag = 'Y'\n" +
    "And trunc(sysdate) between nvl(att.start_date_active,trunc(sysdate))\n" +
    " and nvl(att.end_date_active,trunc(sysdate))\n" +
    "And attl.org_id = att.org_id\n" +
    "And attl.trip_id = att.trip_id\n" +
    "And attl.enabled_flag = 'Y'\n" +
    "And trunc(sysdate) between nvl(attl.start_date_active,trunc(sysdate))\n" +
    " and nvl(attl.end_date_active,trunc(sysdate))\n" +
    "And attl.location_type = 'HZ'\n" +
    "And asp.enabled_flag = 'Y'\n" +
    "And asp.vendor_id = attl.vendor_id\n" +
    "And trunc(sysdate) between nvl(asp.start_date_active,trunc(sysdate))\n" +
    " and nvl(asp.end_date_active,trunc(sysdate))\n";
    PreExecuteQuery = Conn.prepareStatement(v$Script);
    PreExecuteQuery.setInt(1,Integer.parseInt(OrgId.toString()));
    PreExecuteQuery.setInt(2,Integer.parseInt(TripId.toString()));
    for (ResultSet QryOutputRS = PreExecuteQuery.executeQuery();QryOutputRS.next();) {
    PartySet.put(QryOutputRS.getString("vendorid"),QryOutputRS.getString("vendor"));
    }catch (Exception e) {}
    /* vo2.first();
    for (int i = 1;i <= DlvryRowCount;i++) {
    if (vo2.getCurrentRow().getAttribute("CancelFlag").equals("N")) {
    PartyEntryValid = PartySet.add((Number)vo2.getCurrentRow().getAttribute("VendorId"));
    //debugMessage.add(new OAException("Set VendorId: "+vo2.getCurrentRow().getAttribute("VendorId")));
    vo2.next();
    //debugMessage.add(new OAException("PartySet: "+PartySet.entrySet()));
    for (Iterator iter = PartySet.entrySet().iterator();iter.hasNext();) {
    Map.Entry entry = (Map.Entry)iter.next();
    String VendorName = (String)entry.getValue();
    Number Cost = null;
    int PartyId = Integer.parseInt(entry.getKey().toString());
    float Qty = 0;
    try {
    vo2.first();
    for (int i = 1;i <= DlvryRowCount;i++) {
    //debugMessage.add(new OAException("VO VendorId: "vo2.getCurrentRow().getAttribute("VendorId")" Cancelled: "+vo2.getCurrentRow().getAttribute("CancelFlag")));
    if (vo2.getCurrentRow().getAttribute("CancelFlag").equals("N")) {
    int VendorId = Integer.parseInt(vo2.getCurrentRow().getAttribute("VendorId").toString());
    float Quantity = Integer.parseInt(vo2.getCurrentRow().getAttribute("Quantity").toString());
    if (PartyId == VendorId) {
    Qty+= Quantity;
    //debugMessage.add(new OAException("Quantities: "Quantity" "+Qty));
    vo2.next();
    Qty*= Float.parseFloat(Rate.toString());
    Float totalQty = new Float(Qty);
    Cost = new Number(totalQty);
    }catch (Exception e) {}
    //debugMessage.add(new OAException("PartyId: "PartyId" VendorName: "VendorName" Cost: "Cost" EntryKey: "entry.getKey()" EntryValue: "+entry.getValue()));
    Row row = vo1.createRow();
    row.setAttribute("OrgId",OrgId);
    row.setAttribute("TransportationId",TransportationId);
    row.setAttribute("TransportationNum",TransportationNum);
    row.setAttribute("EventType",EventType);
    row.setAttribute("AccountingDate",AccountingDate);
    row.setAttribute("PeriodName",PeriodName);
    row.setAttribute("CodeCombinationId",CodeCombinationId);
    row.setAttribute("PartyId",PartyId);
    row.setAttribute("VendorName",VendorName);
    row.setAttribute("CurrencyCode",CurrencyCode);
    row.setAttribute("Amount",Cost);
    row.setAttribute("TransportationAmount",Amount);
    vo1.last();
    vo1.next();
    vo1.insertRow(row);
    row.setNewRowState(Row.STATUS_INITIALIZED);
    vo1.first();
    vo2.first();
    OAException.raiseBundledOAException(debugMessage);
    Regards
    Ari :)

  • Adobe Audition not retaining markers after saving

    I'm slightly confused as to why Adobe Audition 3 won't save it's markers after I have closed and saved.When I reopen they are gone.
    Many Thanks

    What format are you saving as? Markers are only saved with .wav files. Is the little bottom left box ticked in the Save As page for "Save other non-audio information"?

  • Adobe Audition Help | Saving and exporting files (CS6)

    This question was posted in response to the following article: http://helpx.adobe.com/audition/using/saving-exporting-files1.html

    stvns wrote:
    Just to re-iterate the first three minutes of my audio has a marker called Marker 01, then the next 3 minute section is Marker 02, etc, so when I select all the markers, merge them, set the prefix and postfix to Track and 001 respectively, and click export, the audio that should accompany Marker 01, now as an exported wav file is Track_099 and Marker 99 is Track_001.
    Hmm... just one marker to start with? At the start or the end of the time selection? The only way that I think your scenario could happen would be by there being no marker at the very start of the file, but in that case I don't see how you could include the first section (from zero time) anyway if you did that, so I'm a bit dubious... What would happen in this scenario would be that if you put in markers starting at 1 from the end of the first section, it would have to add a final marker for the start of the file, and this would be, let's say, marker 99. So the first file would start with marker 99 - but that would effectively be at the end of the batch ranges - if you see what I mean. But my real problem with this is that I don't see how you could include the first range in the audio at all without a marker at both ends of it. Now, what might have happened is that if you forget, and add the start marker after putting in all of the rest, then yes, you will get the above scenario - because markers are added sequentially and renumbering doesn't occur.
    I've not had this problem - but there again I always start with a marker at zero before I convert to ranges. What should happen then is that it will take the marker label from the start of the range, and use that. The other thing you should consider is using the facility to rename the files - that should get around this completely as far as straightforward numbering is concerned.

  • Not saving the data in two tables

    Hello,
    its my production problem, i have an update form where you can update the records and these
    records will sit in the temp tables until the final approval from the supervisor.
    In this update form i have two table where i am saving the data one is dup_emp to save the
    officer data and another is the dup_address to save the officer where he worked data.
    in this form address form is pop up screen where you can update and gets back to the original
    form where you can see all the other fields. my problem is if a user hit the cancel button on
    address form example the user doesnt want to update any information on that screen so user
    cancel that screen, and comes to the other screen where the user makes the changes to the
    appropriate fields and hits the SAVE button. in this case its saving only to the dup_emp table
    data not the address data from the address form to dup_address table for the same record.
    if the user cancels in both the screens cancel button it should delete the record from both the
    tables but cancel in form and saves in another form it should save the record in both the
    tables.
    here is my code from both cancel buttons from both the forms.
    this is code is from address form cancel button.
    delete from dup_address
    where address_id=:address_id
    and parent_table_name='emp';
    commit;
    CLEAR_BLOCK;
    go_block('DUP_EMP');
    This code is from dup form of the cancel button
    declare
    temp_address_id varchar2 (12);
    begin
    delete from dup_emp
    where secondemp_id =:dup_emp.secondemp_id;
    delete from dup_address
    where parent_t_id=:global.secondemp
    and parent_table_name='emp';
    commit;
    clear_block;
    go_block('secondaryemp');
    END;

    Hi,
    As Aravind mentioned, it's nothing related to workflow. You have to find a BADI in tcode PA30 that could be used after the infotype is updated. So, you can use FM SAVE_TEXT.
    Regards,

  • Form created with LiveCycle is not saving the data of a fillable form.

    I had posted this in another forum, which got moved over to this forum.  Forgive the double post, I wasn't sure if it was assumed that it was resolved.
    This document:  http://www.southark.edu/employment/application-v5.pdf  was created a couple of years ago in Acrobat and LiveCycle.
    I wanted visitors to have the ability to fill in the document and save their data.
    So, I opened it in Adobe Acrobat X and saved it using the Save As > Reader Extended PDF > Enable Additional Features.
    However, after filling in the document and saving, no data is saved.
    I was informed that since it was an XFA form created in LiveCycle Designer, that they have special considerations that don't apply to forms created in Acrobat.
    Still needing help in giving my visitors the ability to save their form data.
    Thanks,
    Charley

    Thanks so much for your reply.
    Employing your solution our website visitors can save the data using Acrobat Pro.
    They cannot save their data using Reader (most of them don't have Acrobat Pro).  See image below.
    Any other thoughts?
    Thanks very much for your time and interest. 
    Charley

  • Data form not saving enter data after hit of submit

    Hi,
    Entered data on Data from not saving after hitting the submit button in smartview.
    A rules is attached to the same data from and its running on save, after retrieve it's not display enter data.
    it's urgent, please help.
    Regards

    You need to have the below updates done on the affected PC.
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings]\
    "ReceiveTimeout"=00dbba00 (hexadecimal)
    "KeepAliveTimeout"=300000 (decimal)
    "ServerInfoTimeout"=300000 (decimal)
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings]\
    "ReceiveTimeout"=00dbba00 (hexadecimal)
    "KeepAliveTimeout"=300000 (decimal)
    "ServerInfoTimeout"=300000 (decimal)
    if its windows 7 machine the same key has to be added under wow6432node under same path.
    once the changes are done reboot the machine and try launching the BR. Hope it works !!!
    Thanks
    Amith

  • Batch change does not change meta data name when exporting or copy

    I use batch change to change the name of an event when photos from more than one source (camera) are imported. When I copy or export the photos the name reverts to the original meta data file. I do this to override duplicate names. For instance photos from two cameras taking pictures of the same event can have identical names such as IMG_0100. Iphoto does not show all the metadata on info but does show the change in the name when viewing info in iphoto.
    Is there some way to permanently change the name on photos using a group or batch method?

    No you're not changing any filenames at all.
    There is no way to change a filename in iPhoto at all. What you with Batch Change is add a Title to the photo. A Title is an entry in the metadata.
    You can set the name of an exported file to be the same as the title, when you export... if you choose that option.
    This User Tip
    https://discussions.apple.com/docs/DOC-4921
    has details of the options in the Export dialogue.

  • Serial Key code for Adobe Audition not working

    I purchases Adobe Audition CS6 last week and I keep getting the message “The serial number you entered is invalid. Please try again. Customer Service" The company Leximart that I bought CS6 provided me  with a cserial key code that doesn't seem to work. Leximart is impossible to get a hold of by phone and there is nobody live to talk to at Adobe. Any suggestions?
    Thanks.
    Brad

    Brad you can try registering the serial number to determine if it is valid.  You can find details on how to register the serial number at Find your serial number quickly.  If the serial number is unable to be registered then please contact the party which you purchased Creative Suite 6 from.

  • Add button not saved binded data

    The below code call when my forms Add button clicks.
    The issue is it runs only procedure and not saved binded value to the table.Pls suggest me any alternative code to this
    If pVal.ItemUID = "1" And (pVal.EventType = SAPbouiCOM.BoEventTypes.et_CLICK) And pVal.BeforeAction = True And pVal.FormMode = 3 Then
                    If Soft_Application.MessageBox("Is the GPP-GCP Confirmed ?", 1, "OK", "Cancel") = 1 Then
                            Call Card_Num
                            Call Createjournal
                    End If
    End if

    Hi Dhanraj,
    If objMain.objApplication.MessageBox("Advance Payment Not Recieved.Do you want to Proceed Further !!!", 1, "Continue", "Cancel")= "2" Then
                                                BubbleEvent = False
                                                Exit Sub
                                            End If
    ''''''write ur code here
    Rgds
    Micheal

  • Adobe form not saving user-input data into saved pdf file

    Hi forumers,
    I'm a new abap developer and I'm tasked to create an interactive adobe form that will require the user to input data in the form.
    No data is passed and received from PDF, but PDF has to be u2018Fillableu2019. I am able to fill out the form but when I actually save the form, it will be saved as a blank form again. I've seen the relevance of the  LS_DOCPARAMS-FILLABLE = 'X' on this forum and I have incorporated it in my code. But how should I code the abap program to enable to save the user input as well into the form.
    DATA: GV_FMNAME TYPE FPNAME,
          LS_DOCPARAMS    TYPE SFPDOCPARAMS,
          LS_OUTPUTPARAMS TYPE SFPOUTPUTPARAMS.
    CALL FUNCTION 'FP_FUNCTION_MODULE_NAME'
      EXPORTING
        I_NAME                     = 'ZSC_ZRUFORREP'
    IMPORTING
       E_FUNCNAME                  = GV_FMNAME
    *   E_INTERFACE_TYPE           =
    *   EV_FUNCNAME_INBOUND        =
    CALL FUNCTION 'FP_JOB_OPEN'
      CHANGING
        IE_OUTPUTPARAMS       = LS_OUTPUTPARAMS
    EXCEPTIONS
       CANCEL                = 1
       USAGE_ERROR           = 2
       SYSTEM_ERROR          = 3
       INTERNAL_ERROR        = 4
       OTHERS                = 5
    IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    LS_DOCPARAMS-FILLABLE = 'X'.
    LS_DOCPARAMS-DYNAMIC = 'X'.
    CALL FUNCTION GV_FMNAME
    EXPORTING
       /1BCDWB/DOCPARAMS        = LS_DOCPARAMS
    * IMPORTING
    *   /1BCDWB/FORMOUTPUT       =
    EXCEPTIONS
       USAGE_ERROR              = 1
       SYSTEM_ERROR             = 2
       INTERNAL_ERROR           = 3
       OTHERS                   = 4
    IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL FUNCTION 'FP_JOB_CLOSE'
    * IMPORTING
    *   E_RESULT             =
    EXCEPTIONS
       USAGE_ERROR          = 1
       SYSTEM_ERROR         = 2
       INTERNAL_ERROR       = 3
       OTHERS               = 4
    IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Thanks,
    dgrachee

    Not quite yet, I have to say...
    If you check the domain "FPINTERACTIVE", you'll see these values:
                   Print Form
    X     Interactive Form with Additional Usage Rights
    N     Interactive Form Without Additional Usage Rights
    F                                                                
    So, you are not providing "additional usage rights" (Adobe Form Credentials), meaning there could be a problem when you want to use those forms in a Production environment.

  • Adobe form not saving data.

    hi Experts,
    I am facing strange problems with Adobe forms.
    I am working on both Offline and online adobe forms.
    adobe form which i make does not allow to save data.
    I am using the Adobe liveCycle designer 7.1.
    The Adobe reader version is 7.08
    and service pack is SPS 11.
    I have used both the tutorials for offline and online adobe forms.
    Online Problem :-
    The project for online works fine and it also allows to save data(when i save the form on my PC).
    But when i create a new form on my machine it does not allow to save data.
    Really confuse what the problem is.
    I have also tried this.
    Copeid the XDP file from the Online tutorial project into my project
    if i use this work around the the problem is resolved. But i am no able to understand why the XDP CREATED on my machine does not work.
    Offline problem:-
    In this case i am not able to save data in the form at all.
    As the PDF created itself not allow to save data.
    Please help.
    Points would be awarded to helpful answers.
    Regards,
    Sanjyoti.

    Hi Satya & sanjyoti,
    I am facing a pecular problem in using Adobe forms.
    I am able to pass data from webdynpo application, to the Interactive form(using mappings, as mentioned by satya).
    But for the same form & WD application, i am not able to pass data from the Interactive Form, back to the WD application.
    My scenario is like this:
    I need to show a form, with some prefilled data, such as date, userID, etc. I populate the node in my WD application, & then call the form.
    The form displays the above prefilled data. Now the user has to fill the remaining fields & click on submit(Submit-to-sap button). The onsubmit property of the Interactive form is mapped to a onaction event, where WD tries to read the data entered by the user.
    The problem is that on clicking of the submit button in the form, the event is not getting called.
    If i use a button in the WD view itself, then the action gets called, but there is no data. In short, the data is NOT getting passed from Interactive form to WD application.
    Can you please help me out with this?
    Thanks,
    Hanoz

  • Audition not saving Metadata correctly

    I'm seeing two problems with how Audition CS6 (version 5) saves metadata:
    Problem 1:
    After saving a file as a WAV file when you view that file in Windows Explorer many of the metadata tags have the last character truncated.  The only way that I have found to solve the problem is to add a trailing space on each fields entry.  In fact if you change the Recording Date to say "2012" the date won't show up at all in Windows Explorer, but if you save it as "2012 " it shows correctly.
    Problem 2:
    If I open a WAV file to save it back out as an MP3 - it doesn't matter if I do a batch process or one file it is the same - all the metadata is lost (YES, I have the "Include markers and other metadata" box checked).  I follow these steps.. Open the Wav file>Click "Save as">set Format Settings to MP3>check the include markers>click OK.  At this point if you look at the resulting mp3 file in windows explorer you will see that no metadata is present, but if you still have the file open in Audition it appears that all of the metadata is there - you can even try changing a value and saving again, but Windows explorer still shows no data.  If you completely close the file in Audition and then reopen the mp3 file in audition, you will see that there is NO metadata there either.  At this point you can then repopulate the data in audition and save the file and then it will show the metadata when viewed with Windows Explorer.    VERY Annoying!!
    Am I doing something wrong or is this a bug in Audition... It sure looks like a bug to me!!

    lamar64 wrote:
    Problem 1:
    After saving a file as a WAV file when you view that file in Windows Explorer many of the metadata tags have the last character truncated.  The only way that I have found to solve the problem is to add a trailing space on each fields entry.  In fact if you change the Recording Date to say "2012" the date won't show up at all in Windows Explorer, but if you save it as "2012 " it shows correctly.
    Okay, well I just checked this out in Windows 7, 64bit. If there were going to be problems, this is where I'd expect them to be - and there simply aren't any - it works absolutely fine. If you don't put the metadata in a fields absolutely correctly, you get a ! at the end of the line, and all bets are off at that stage. And in the date format, that puts the year in first, then the month and then the date (yyyy-mm-dd). So if you try to put too many figures at the end, then yes I'd expect them to get truncated. But everything I put in my test file showed up fine, and correctly, in Windows Explorer.
    lamar64 wrote:
    Problem 2:
    If I open a WAV file to save it back out as an MP3 - it doesn't matter if I do a batch process or one file it is the same - all the metadata is lost (YES, I have the "Include markers and other metadata" box checked).  I follow these steps.. Open the Wav file>Click "Save as">set Format Settings to MP3>check the include markers>click OK.  At this point if you look at the resulting mp3 file in windows explorer you will see that no metadata is present, but if you still have the file open in Audition it appears that all of the metadata is there - you can even try changing a value and saving again, but Windows explorer still shows no data.  If you completely close the file in Audition and then reopen the mp3 file in audition, you will see that there is NO metadata there either.  At this point you can then repopulate the data in audition and save the file and then it will show the metadata when viewed with Windows Explorer.    VERY Annoying!!
    I checked this one out too, and once again didn't get the result you did. I saved a load of ID3 tag information in the same file that I used above, and saved two versions of it - one as a wav, and one as an MP3. Both saved the metadata correctly. Then I re-opened the wav file and resaved it again as another MP3, this time with a different file name - didn't touch the metadata at all. When I checked the new MP3, all the metadata was there, just as it was previously.
    So I don't know what you are doing (or which OS you are using either, come to that), but here it works fine. The previous complaint about MP3 related to indicated time with VBR saves, incidentally - not metadata at all.

  • Standard transaction CG02 is not saving the data through F4 help.

    Hi Guru's,
    I have a standard transaction CG02 for this i need to maintain the data for few of the fileds like Heat sensitive, Thermal energy hazard etc for updating Derived C-Alpha code. So for i can able to maintain data in two ways either directly or through F4 help. when i supply data through F4 help, on the F4 help window im providing the value and clicking on continue button. when i press on the contine button it has to update the Derived C-Alpha code if all the required fields filled. If suppose i do nt fill the required fileds it has to through the error message on the status bar like 'Invalid Data Combination'. Now the problem is when i clicking on continue button of F4 help window im displaying error message. when i try to change the value or try to fill the required fields so for im clicking on F4 button then its directly taking me out from the transaction. If i press on any key also samething is happening but the same is not happening when i supplied the value directly and saving. Please let me know the reason and help me for the same with needful solution. If anyting required plz ask me i wil provide u.
                          Here we are using the user-exit EXIT_SAPLC107_001 and is used in FM C107_CUSTOMER_FUNCTION_CALL.
    Thanks in advance.
    Yours,
    Somu.

    Hi Guru's,
    I have a standard transaction CG02 for this i need to maintain the data for few of the fileds like Heat sensitive, Thermal energy hazard etc for updating Derived C-Alpha code. So for i can able to maintain data in two ways either directly or through F4 help. when i supply data through F4 help, on the F4 help window im providing the value and clicking on continue button. when i press on the contine button it has to update the Derived C-Alpha code if all the required fields filled. If suppose i do nt fill the required fileds it has to through the error message on the status bar like 'Invalid Data Combination'. Now the problem is when i clicking on continue button of F4 help window im displaying error message. when i try to change the value or try to fill the required fields so for im clicking on F4 button then its directly taking me out from the transaction. If i press on any key also samething is happening but the same is not happening when i supplied the value directly and saving. Please let me know the reason and help me for the same with needful solution. If anyting required plz ask me i wil provide u.
                          Here we are using the user-exit EXIT_SAPLC107_001 and is used in FM C107_CUSTOMER_FUNCTION_CALL.
    Thanks in advance.
    Yours,
    Somu.

  • TDMS index files does not have meta data but indicates presence of raw data in the TDMS file??

    Hello All,
    I am working on reading TDMS Index files into Matlab. So far i have been fairly successful in reading them when the data has been acquired for a short period of time (checked at 2 min). However when a 15 minute data has been acquired, in a few segments the meta information is not present but a variable in the header info for that particular segment says raw data is present. Does anybody know if sometimes meta information is not available but the raw data is actually present (segment wise) in the TDMS file?
    Many Thanks,

    That means the segment shares the same meta information with the previous segment. It doesn't have any new properties. Its raw index information is the same as previous.
    You could use the meta information of the previous segment to read the raw data of this segment. Hope this helps,
    Message Edited by Yunzhu on 08-03-2009 08:45 PM

Maybe you are looking for

  • Making window active when mouse pointer moves over it?

    As the subject line says, how do I configure Mac OS X such that a window automatically becomes the active one (also in the menu bar) when the mouse pointer moves over it? If possible, with a slight delay?

  • Iphone 4 lost all contacts. where are they?

    went to answer a phone call and noticed no names with numbers.  contacts tab totally blank. Anybody got any ideas?

  • Changing Multiple Smart Playlists View Options

    Hello I have lots of smart playlists in different folders in my iTunes Library. Is there any way to change the view options for multiple smart playlists in iTunes 10? Many Thanks Shaun

  • Version of Camera Raw?

    Since updating to ACR 8.4 (and this includes 8.4.1) in Creative Cloud, nowhere on the ACR dialog box does it show which version you have.  Before it was always at the top of the dialog box.  When you open Adobe Camera Raw 8.4.1, is there a way inside

  • My Shortcut Keys are not Working

    Hi everybody. I was working on a project for the past couple of days. All of a sudden my "JKL" keys are not working. My "spacebar" will start and stop a clip, but the JKL keys have no effect. Also, none of my other shortcut keys will work. The keys w