Revel date editing/metadata display feature

The Revel app for IOS allows you to edit the date of a photo, but this feature does not seem seem to available via the Revel website, Windows 8.1 app, or Android app. Is this something that will be added soon? Also, I think there needs to be a way to edit metadata, or at least SEE it.

I was playing with it, checking it for you on a project with one MXF HVX-200 clip and it just crashed. Haven't ever tried to change my meta data before, no need, unlike you the HVX writes it for me.
Can't help ya man. Might be a coincidence or might be real problem.

Similar Messages

  • Bridge - Exposure Camera Data (Exif) metadata display problem

    I'm working with raw files with thumbnails displayed in Bridge Content.  In Bridge preferences > Metadata I have Exposure and Exposure Bias Value checked on. (These are the first two lines in the metadata panel.)  When I select a raw file in Bridge the Exposure and Exposure Bias Value metadata are displayed in Bridge Metadata panel as expected.  When I open the raw file in acr 7 and make some edits, click Done in acr and return focus to Bridge, the Bridge thumbnail is updated  but the Exposure line in Bridge metadata panel disappears -- the Exposure Bias Value is the first line of the metadata panel.  If I clear the settings, the Exposure line and data return to the metadata panel.  I also have 'Exposure' selected for one of the additional lines in thumbnail metadata, where the exposure data is correctly displayed even when the exposure metadata line is not shown in the metadata panel. 
    I do not see this problem in pscs5 with acr 6.7 beta.  Is there some setting I need to check or is this a bug?

    For anyone who may find this post wondering why they can't see the specific EXIF data for each photo... "Show Metadata Placard" may be what you're looking for. Click the drop down at the top right of your Metadata panel and tick "Show Metadata Placard."  This will display a panel that looks like the info. panel on your camera (shutter speed, f-stop, iso, white balance, etc.).
    I had to figure this out after getting frustrated by the fact that Camera Data (Exif) in the Metadata panel only shows the "Max Aperture Value" of the lens instead of the aperture value that you actually shot.

  • Bridge display wrong RAW data in metadata panel

    Create a .PSD file with a raw file opened as a smart object. (CR2 files in my case)
    Save the file.
    Open the file.
    Edit the PSD file and change some basic raw settings.
    Save the file.
    Look at the Camera Raw metadata in Bridge. It shows the raw meta data from the raw file originally opened. Not the current raw settings of the raw smart object in the PSD file.
    With my currnet files Bridge shows the process 5.7 settings since that is how the PSD was created. The file(s) have all been switched to process 6.7 in the PSD file so the metadata displayed is even further from reality.
    I believe the current raw settings of the raw smart object should be shown since they are the ones used to render the image. The original settings have no meaning in the current document.
    I reported this ages ago in CS5.
    Windows 7, 64-bit. Bridge and PS 64-bit
    Norman

    I'll try to reproduce this;  thanks for reporting it... We are not ignoring you, we just have a lot of forum posts to reply to and it takes a bit of time. We are trying to ensure everyone is loaded and installed first, then bugs, and the rest....Really, it is not a black hole you are posting to!   Sorry for the delay.
    Pattie

  • Edit metadata without changing modified file date

    I'd like to use Bridge (CS4) to edit metadata in both JPEGs and RAW files, without changing the original file date/time stamp.
    Any way I can do this? Thanks.

    Thanks. I'm familiar with the file date utilities available (I've even written such a program myself), but it seems like an awkward solution.
    Since first posting this question, I discovered that I can keep my raw files untouched, by selecting Camera Raw Preferences > Save image settings > Sidecar .xmp files.
    I'd like to see a similar setting for JPEG images as well. Please?

  • JFormattedTextField with edit and display formatter for date

    How can I have a date display formatter and a edit mask date formatter for JFormattedTextField instance.
    When I do
                   DateFormatter dateFormatter = new DateFormatter(new SimpleDateFormat("dd/MM/yyyy"));
                   JFormattedTextField.AbstractFormatterFactory factory = new DefaultFormatterFactory(dateFormatter, dateFormatter, dateFormatter);
                   jFormattedTextField_2.setFormatterFactory(factory);
    all is okie but I wanna a mask formatter and if I do
                   DateFormatter dateFormatter = new DateFormatter(new SimpleDateFormat("dd/MM/yyyy"));
                   MaskFormatter editFormater = new MaskFormatter();
                   try {
                        editFormater.setMask("##/##/####");
                   } catch (ParseException e) {
                        e.printStackTrace();
                   editFormater.setPlaceholderCharacter('_');               
                   JFormattedTextField.AbstractFormatterFactory factory = new DefaultFormatterFactory(dateFormatter, dateFormatter, editFormater);
                   jFormattedTextField_2.setFormatterFactory(factory);
    jFormattedTextField_2 accepts invalid date.
    What can I do to have a date edit mask and a date display mask for a
    JFormattedTextField instance.
    Thx a lot, Tony.

    txtdatnalzaproizvoid = new JFormattedTextField(datformater("##/##/##"));
    txtdatnalzaproizvoid.setValue(datumformat());
    public static MaskFormatter datformater(String formatnavnes){
    MaskFormatter formatter = null;
    try {
    formatter = new MaskFormatter(formatnavnes);
    formatter.setValidCharacters("0123456789");
    } catch (java.text.ParseException exc) {
    System.err.println("formatter is bad: " + exc.getMessage());
    System.exit(-1);
    return formatter;
    public static String datumformat(){
    Date dddd = new Date();
    SimpleDateFormat formatter = new SimpleDateFormat("dd/MM/yy");
    datumformat = formatter.format(dddd);
    return datumformat;
    }

  • Editting data on tabular display

    Our customers complain that they have to double click to select the whole field to enter data on tabular displays. I am using Forms 6i. What they want is something similar to excel where users can type directly after move the cursor to a field.

    Hello Gary,
    Today i've implemented ORDER_SAVE BADI, method PREPARE with the same task as you have.
    And it's working.
    code:
    data: lt_customer_h type crmt_customer_h_comt.
    data: ls_customer_h type crmt_customer_h_com.
    ls_customer_h-ZZFLD000003 = LV_YOUR_VARIABLE
    ls_customer_h-ref_guid = LV_HEADER_GUID
    append ls_customer_h to lt_customer_h.
    data: lt_input_fields     type crmt_input_field_tab.
    data: ls_input_field      type crmt_input_field.
    data: ls_input_field_name type crmt_input_field_names.
    ls_input_field_name-fieldname = 'ZZFLD000003'.
    insert ls_input_field_name into table ls_input_field-field_names.
    ls_input_field-objectname = gc_object_name-customer_h.
    ls_input_field-ref_guid = iv_guid.
    ls_input_field-ref_kind = gc_object_kind-orderadm_h.
    insert ls_input_field into table lt_input_fields.
    CALL FUNCTION 'CRM_ORDER_MAINTAIN'
       EXPORTING
         it_customer_h   = lt_customer_h
       CHANGING
         ct_input_fields = lt_input_fields.
    data: lt_cust_h   type crmt_customer_h_wrkt.
    CALL FUNCTION 'CRM_ORDER_READ'
       EXPORTING
         it_header_guid = lt_guids
       IMPORTING
         et_customer_h  = lt_cust_h.
    In my example, i saved LV_YOUR_VARIABLE into the field CRMD_CUSTOMER_H-ZZFLD000003 for the transaction guid LV_HEADER_GUID.
    If you are using your own program, don't forget to call CRM_ORDER_SAVE and BAPI_TRANSACTION_COMMIT afterwards. Clearing of the buffers can be done via CRM_ORDER_INITIALIZE.
    Hope it's not yet late.
    Best Regards, Dima

  • Metadata Display box is empty (PP 4.0.1)

    I don't know if anyone else is seeing this issue. In Premiere Pro CS4, the Metadata Display dialog is empty, except for a search box (magnifying glass). This dialog box can be found in the context menu of the Project and Metadata panels. It is used to select which metadata fields you want visible.
    Both panels are populated with information. If I try typing a search (like "usage" to get video and/or audio usage info), it closes. As a result, I cannot change the metadata display fields.
    This feature definitely worked when I first installed Premiere. I suspect it broke after installing the 4.0.1 patch.
    I'm running Windows XP SP2 on a custom built Intel Core Duo E6300/ASUS P5B motherboard, with an EVGA GeForce 8800GT video card (180.48 drivers). Premiere is installed on my Windows drive, and my project and footage are on an external SATA drive. Other CS4 applications installed are Flash and Soundbooth. I also have the CS3 Master Suite previously installed.
    I'm editing 24p standard definition DV (from a Panasonic DVX100C).
    Thanks.

    I was playing with it, checking it for you on a project with one MXF HVX-200 clip and it just crashed. Haven't ever tried to change my meta data before, no need, unlike you the HVX writes it for me.
    Can't help ya man. Might be a coincidence or might be real problem.

  • Problems with the "Date Created" Metadata in Adobe Bridge

    Hi everyone.
    I am currently working on an electronic photo library for our organization.  Part of my mandate is to add a Date Created metadata on all the photos since it is very important to know when the photo was taken.  Some photos were dated since 1980s.  Since we do not have the digital version of the old photos, we end up scanning these and, in effect the date specified on the "Date Created" was the date it was scanned.
    I have the date of some of the old photos when it was taken, but for some, I only have the month and the year (sometimes, just the year).  Inventing a day and a month is not an option.
    Is it possible to enter a month-year or just the year on the Date Created field under Metadata?
    I appreciate your help.
    Thanks,
    .m.u.r.d.o.c.h.

    The problem is that dates are recorded in the file in different schemas. Bridge is displaying the XMP Date Created field which was likely derived from the original Exif date (probably DateTimeOriginal, but may be DateTimeDigitized). This will be the date recorded in the file by the scanner software at the time it was scanned.
    The IPTC Date Created field is handled differently. It seems counterintuitive, but if you work in the news business you will know that news photographers often use the IPTC Date Created field more like a "date submitted" or "date scheduled" property, so that photos for a particular shoot which may have been captured over multiple days will sort together.  Because of this, most image browsers will not update the XMP Date Created (or Date Taken) fields when the IPTC Core date is changed.
    You can edit the original capture date in various programs, which should cause both the Exif and the XMP Date Created fields to be updated. Two that come to mind are Lightroom and BreezeBrowser Pro (for Windows).  I've found that with certain images it is necessary to use both programs to get all the dates to line up.

  • Problems using "Edit Column Widths" feature in List View component

    Hello. I'm using a list view component (Xcelsius 4.5 Professional) to display a simple table of text from Excel. I want to adjust the width of the component colums so that all of them fit on the screen at the same time- regardless of how wide they are in the excel columns. The problem is the columns in excel are of variable length; I have no way to predict how wide they will be. The list view component always defaults to the widest column(s) so it ends up pushing some of the columns to the right and  I then have to use the scroll bar to see them. I thought the "edit column widths" would allow me to force the column widths in the component (potentially truncating some of the columns), but it does not work that way.
    How is the "edit column width" feature supposed to work? What does one enter in the value for each label? Are the units in pixels? When I start entering values I get all kinds of strange behavior...

    This was a great place for me to start
    Thank you
    I took profdant139's suggestions a bit further as my real goal was to have the "Document column" narrower. The goal to be able to see all the other document info that was usually hidden way out to the right
    To achieve my results I right clicked in the upper bar with the column names and chose from the drop down box "comments" column (as suggested). I then dragged it to the far right. This pushed all the other columns over.
    In the end of the day I ended up adding "Size" and "Date modified" columns as well to get my desired results.
    Remember one can move different columns around to be in the order you need by clicking on the column to get it active and then left click and drag it to where you want
    Another great thing is that by default (Using Mavericks) the date modified, opened,created columns have date and time. One can shrink them down to xx/xx/xx format by manually adjusting the column width like one does in Excel - click on column separator up top and drag
    Once all that is done, at least on my box, I closed it out and opened up a new finder window and everything was as I wanted.
    Thank you for the help  from the above helper to get me here

  • Numeric data is not displayed in BI Publisher 11g report

    Hi,
    I'm using Oracle BI 11g (11.1.1.6.0).
    I'm experiencing a serious issue with numeric data in reports created with Publisher.
    When I define the query in the data model, numeric data gets declared as "integer" (even if it should be "double"). Anyway, when creating the layout all data is correctly shown.
    The issue emerges when I run the report in interactive mode: numeric data is not displayed at all.
    If I run it in HTML mode or other, I get proper results.
    I tried to explicitly CAST numeric data in the query to number(21, 6) but I get no different result.
    Any help or suggestion is warmly welcome.
    Thanks,
    Cristina

    Yes, assuming that you are using the Standalone version, following are some excerpt from user guide.
    10g see Oracle® Business Intelligence Publisher
    Report Designer's Guide
    Release 10.1.3.4
    Part No. E12187-01
    Chapter 6 Building a Data Template
    Supported Column Types
    CLOB (conditionally supported)
    The CLOB must contain text or XML. Data cannot be escaped inside the CLOB column.
    And for 11g see
    Oracle® Fusion Middleware
    Data Modeling Guide for Oracle Business Intelligence Publisher
    Release 11g (11.1.1)
    Part No. E18862-01
    Chapter 3 Creating Data Sets
    Using Data Stored as a Character Large Object (CLOB) in a Data Model
    BI Publisher supports using data stored as a character large object (CLOB) data type in
    your data models. This feature enables you to use XML data generated by a separate
    process and stored in your database as input to a BI Publisher data model.
    Use the Query Builder to retrieve the column in your SQL query, then use the data
    model editor to specify how you want the data structured. When the data model is
    executed, the data engine can structure the data either as:
    • a plain character set within an XML tag name that can be displayed in a report (for
    example, an Item Description)
    • structured XML
    Cheers,
    ND

  • Error while importing : /metadata/iam-features-ldap-sync/LDAPUser.xml

    Hi,
    I am unable to import modified Oracle Identity Manager metadata. I am using OIM 11.1.1.5 on Windows Server 2007 EE.
    I am trying to use the import/export functionality via EM.
    I am able to export the LDAPUser.xml file from */metadata/iam-features-ldap-sync/LDAPUser.xml,* have made changes to it but when I am importing it back I am getting the error :
    Error occurred while executing operation.
    MDS-00001: exception in Metadata Services layer
    MDS-01059: document with the name /metadata/iam-features-ldap-sync/LDAPUser.xml missing in the source metadata store
    The values of the parameters in the import MDS operations are :
    fromLocation : E:/MDS/import/ +(On the physical server hosting the OIM)+
    docs : */metadata/iam-features-ldap-sync/LDAPUser.xml*
    restrictCustTo:               
    excludeAllCust: false
    excludeBaseDocsan : false     
    excludeExtendedMetadata : false
    cancelOnException : true
    I have tried using the command line script as well, It runs without a hitch but when I try and import back, it gives me the same old unedited document.
    Has anyone been successful with this approach ?
    Regards,

    Yes, I have. But still the same issue. It seem to run fine using the weblogicImportmetadata.bat fine but when I export and check the updated file, I still get back the original.
    Here's what I get on runnung the weblogicImportmetadata.bat file
    Initializing WebLogic Scripting Tool (WLST) ...
    Welcome to WebLogic Server Administration Scripting Shell
    Type help() for help on available commands
    Starting import metadata script ....
    Please enter your username :weblogic
    Please enter your password :
    +Please enter your server URL [t3://localhost:7001] :t3://localhost:7001+
    Connecting to t3://localhost:7001 with userid weblogic ...
    Successfully connected to Admin Server 'AdminServer' that belongs to domain 'OIM
    +1'.+
    Warning: An insecure protocol was used to connect to the
    server. To ensure on-the-wire security, the SSL port or
    Admin port should be used instead.
    Location changed to domainRuntime tree. This is a read-only tree with DomainMBea
    n as the root.
    For more help, use help(domainRuntime)
    Disconnected from weblogic server: AdminServer
    End of importing metadata script ...
    Exiting WebLogic Scripting Tool.
    C:\Oracle\Middleware1\Oracle_IDAM\server\bin>
    Edited by: 810367 on Aug 21, 2012 6:45 PM

  • Item field to non-editable mode(display mode) in Purchase Order(ME22n).

    Hi SDN,
    Based on the Comany code i need to modify the item level fields like <b>Item, Account Assignment, Material</b> to non-editable mode(display mode) in Purchase Order(ME22n).
    So i modifed in the method MODIFY_SCREEN_TC_LINE of class CL_TABLE_VIEW_MM and set the value L_FIELD_STATUS = *  for the screen filed MEPO1211-EBELP. When i execute, the whole column changed to display mode and the empty rows filled with 0(zero). But i want only grey mode for the line items that are present for that PO but not for the whole column. So can any one guide me to do so. I am using 4.6c.
    Thanks in Advance
    Regards
    Basha

    Hi Ramesh,
    Normally you can change the currency field, after entering information in Data base's table, go to Detail's table and change the rate as you want, then directly choose your PO number.
    so the system accept the rate entered aven though the PO had another rate.
    Regards.

  • Custom field in Account Master Data Tcode BCA_CN_ACCT_03 - Display Account

    Hi all,
    I want to add a custom field in Basic Data tab of display account screen : Tcode BCA_CN_ACCT_03. 
    Please give step-by-step solution.
    Points assured!
    Jogdand M B
    Edited by: Jogdand M B on May 19, 2008 5:36 PM

    Solved by myself
    I write here the response because I didn't found it anywhere:
    When you are adding a custom field to MAKT table you have to add it to appending structres SKTEXT and DMAKT too because the standard uses them to read/write the data to MAKT. It's easy to do but hard to find out

  • Adhoc Query data not getting displayed on Portal

    Hi,
    I have a problem with custom Adhoc query data not getting displayed on the portal.
    It was getting displayed initially but after a user made some changes to the query its not getting displayed.
    The query is displaying data perfectly on R/3 but on portal ..Its giving the message no data found.
    Can anyone help me on this.
    Also if anyone can tell me how do i debug an Adhoc query from potal.
    Is there any tool to debug an Abap program from portal.
    I dont want to use trace,
    Thanks
    GT
    Message was edited by: GT

    Hi GT
    find out the EXACT query u want to launch if it's display
    in BW buisness explorer then change the iview property
    for that query in portal . right click on iview
    BEx Web Application Query String -> assign correct query
    regards,
    kaushal

  • Data is not displaying though Master Infoobject data has been maintained

    Hi All,
    I have created a Master Infoobject and maintained data manually.
    Also activated the master data.
    But Iam unable to see the data I manually entered, when Im trying to Display Data at the right click of the infoobject.
    Can someone plz suggest me y this is happening?
    Note: I have already checked the object in RSRV and it shows no error

    Hi,
    1.Can you please check that you have pressed "SAVE" button after doing the necessary editting in the maintenance screen of the master data...
    2.Again please rightclick---->maintain master data, and check whether your records are present there or not..if there are not present, again maintain and save
    3.Check whether your info object is active
    4.are there any time dependent attributes...
    if there are, i guess only the records valid for the current date will be displayed when you select display data option....check this by adding the records for which the current date lies between datefrom and dateto values.
    5.Is there any DTP...or transformation, you have to schedule the DTP to update ...
    Thanks,
    Tarun Brijwani.
    Edited by: Tarun Brijwani on Apr 14, 2009 3:20 PM

Maybe you are looking for

  • HOW CAN I PUT E MAIL DIRECTIONS IN THE ADDRESS BOOK

    I don't know how to fill the address book with the e-mail directions, how can i put'em in?

  • Which tool i should use to develope a portal

    Hi all,   we are planning to develop a portal which we will expose to internet. Now my question is which tool i should use to develope this    1.BSP    2. jspdynpage    3.Webdynpro java    4.Webdynpro abap Which application will perform better on int

  • WDS & VLANS

    We are trying to setup a wireless system at our restaurant to be able to use wireless handheld POS devices and allow guest internet access. The hardware we have is, RV 120W Router, and 2 WAP200 access points. What we were trying to do is setup a VLAN

  • Where to implement my Business Logic in ADF?

    Hi, I am new to Oracle ADF. I found this forum very useful to get my queries and doubts answered. Thanks to the participants. I am basically from Struts background, Where i design my UI in jsp pages using Struts tags, Actions and some utility classes

  • How to register a program in Gateway

    Hi, In my daily monitoring schedule I have found in that all teleFAX mails are in failed status( SOST) error number 816. On further analysis I have found that the RFC for the FAX server ( SAPCONNECT_FAXSERVER ) is not working,it gives that the progra