Workflow to extract artist metadata within an mp4 movie

When I add an mp4 file to a document library, I would like to be able to run a workflow to get the artist name out of the file and I'll set a column with that.
I may want to get other fields at a later point, but I need to know how to start this process 

Hi Carphuntin_god,
According to your description, my understanding is that you want to use workflow to extract embedded metadata from a video file to SharePoint 2010.
Per my knowledge, there is not an OOB way to achieve it. You can get the embedded metadata using programming.
Here are some similar posts for you to take a look at:
http://social.msdn.microsoft.com/Forums/sharepoint/en-US/67c007fd-d59c-4881-bbd4-95fbc54ac0b3/pdf-file-metadata-into-sharepoint-list-while-uploading?forum=sharepointdevelopmentlegacy
http://social.msdn.microsoft.com/Forums/sharepoint/en-US/f685caf9-8c0d-401e-b0e2-646c2c779cb2/pdf-metadata-into-a-sharepoint-column?forum=sharepointadminprevious
Or, you can use a third party solution called Video Library to get the embedded metadata from video files.
https://store.bamboosolutions.com/sharepoint-video-library.aspx
I hope this helps.
Thanks,
Wendy
Wendy Li
TechNet Community Support

Similar Messages

  • I'm using LR 4.4.  How do I extract the metadata from my images and export it into Excel?

    I want to extract the metadata I have added to my images and export it into an Excel spreadsheet.  Can this be done within LR4.4?  If the software doesn't have a function for this is there another way to do it?
    Thanks for any help you can offer.

    JB's ListView is the most straight-forward solution, but
    ConfidentialInformant
    allows for full customization (e.g. if you want to pick and choose custom metadata fields, or export more fields than ListView supports (10), or tweak data formats, or add intelligence...).
    Rob

  • How do i extract pages from within a pdf document?

    how do i extract pages from within a pdf document?

    Hi adobespurs,
    To extract pages from a PDF, you need to use Acrobat. If you don't have Acrobat, you can try it for free for 30 days. Please see www.adobe.com/products/acrobat.html for more information.
    Best,
    Sara

  • Extract XMP metadata from specific Photoshop Layer in After Effects

    How do it extract XMP metadata from specific Photoshop Layer in After Effects?
    I am just getting my hands dirty with metadata.
    I know it is possible to attack metadata to a layer/layerset in Photoshop, but how to I get it out in After Effects.
    Here is the process.
    I create BunchaLayers.psd.
    Using the PerLayerMetaData.jsx file attached.
    I use the setCommMetadata("something") function to attacked metadata to a selected layer.
    I know that is is there because I check it using the exportLayerMetadata().
    I save and imprt BunchaLayers.psd into AE as a comp.
    Here I am lost.
    I select my layer in the project window and check the XMP metadata window.
    I can't find my comment.
    Is the XMP data actually attached to the layer I imported in AE?
    I want to be able to select the layer and see that the data is attached.  Is this possible?
    If it is will it work on layersets (comps in AE)?
    I would appreciate any layer specific XMP insight.
    Thanks for looking.
    - Josh

    John Nack on Adobe : Per-layer metadata comes to Photoshop
    This was the article that made me think this might be possible.
    There is also the preference to Create Markers From Metadata
    ["Metadata"]
              "CreateLayerMarkersFromFootageXMP" = 01
    Which made me wonder if there is a way to create the metadata in the first place that made it something AE would read and automatically change to layer markers.
    Any ideas?

  • Api to extract portal metadata?

    Hi, I want to build my own Flash Menu based on the Oracle Portals content, instead of using the existing tab components. How can I extract this metadata as a XML ?
    Thanks in advance,
    Alessandro

    I was able to get user data out of the metadata repository. Here is the procedure I use to insert the data into a table to pull out user profile info:
    CREATE OR REPLACE PROCEDURE <NAME> IS
    BEGIN
    EXECUTE IMMEDIATE 'ALTER TABLE PM_TEAM_MEMBER disable CONSTRAINT FK_PMTM_USER_ID';
         DELETE acquisitions.closepf_person2;
         COMMIT;
              FOR i in (select id from portal.WWSEC_PERSON$)
              LOOP
         DECLARE
              l_person_ID                number     := portal.wwsec_api.person_info(p_person_id => i.id).ID;
              l_person_USER_NAME      varchar2(256) := portal.wwsec_api.person_info(p_person_id => i.id).USER_NAME;
              l_person_EMPNO                varchar2(30) := portal.wwsec_api.person_info(p_person_id => i.id).EMPNO;
              l_person_LAST_NAME           varchar2(60) := portal.wwsec_api.person_info(p_person_id => i.id).LAST_NAME;
              l_person_FIRST_NAME      varchar2(60) := portal.wwsec_api.person_info(p_person_id => i.id).FIRST_NAME;
              l_person_MIDDLE_NAME      varchar2(60) := portal.wwsec_api.person_info(p_person_id => i.id).MIDDLE_NAME;
              l_person_KNOWN_AS           varchar2(80) := portal.wwsec_api.person_info(p_person_id => i.id).KNOWN_AS;
              l_person_EMAIL                varchar2(256) := portal.wwsec_api.person_info(p_person_id => i.id).EMAIL;
              l_person_WORK_PHONE      varchar2(30) := portal.wwsec_api.person_info(p_person_id => i.id).WORK_PHONE;
              l_person_MOBILE_PHONE      varchar2(30) := portal.wwsec_api.person_info(p_person_id => i.id).MOBILE_PHONE;
              l_person_PAGER                varchar2(30) := portal.wwsec_api.person_info(p_person_id => i.id).PAGER;
              l_person_FAX                varchar2(30) := portal.wwsec_api.person_info(p_person_id => i.id).FAX;          
              l_person_OFFICE_ADDR1      varchar2(60) := portal.wwsec_api.person_info(p_person_id => i.id).OFFICE_ADDR1;
              l_person_OFFICE_ADDR2      varchar2(60) := portal.wwsec_api.person_info(p_person_id => i.id).OFFICE_ADDR2;
              l_person_OFFICE_ADDR3      varchar2(60) := portal.wwsec_api.person_info(p_person_id => i.id).OFFICE_ADDR3;
              l_person_OFFICE_CITY      varchar2(30) := portal.wwsec_api.person_info(p_person_id => i.id).OFFICE_CITY;
              l_person_OFFICE_STATE      varchar2(30) := portal.wwsec_api.person_info(p_person_id => i.id).OFFICE_STATE;
              l_person_OFFICE_ZIP      varchar2(30) := portal.wwsec_api.person_info(p_person_id => i.id).OFFICE_ZIP;
              l_person_OFFICE_COUNTRY varchar2(256) := portal.wwsec_api.person_info(p_person_id => i.id).OFFICE_COUNTRY;                                        
              l_person_TITLE               varchar2(80) := portal.wwsec_api.person_info(p_person_id => i.id).TITLE;
              l_person_MANAGER           number     := portal.wwsec_api.person_info(p_person_id => i.id).MANAGER;
              l_person_DEFAULT_GROUP      number          := portal.wwsec_api.person_info(p_person_id => i.id).DEFAULT_GROUP;
              l_person_GUID               varchar2(32);     
              CURSOR get_guid IS
                   SELECT guid
                   FROM orasso.wwsec_person$
                   WHERE user_name = l_person_USER_NAME;
         BEGIN
              OPEN get_guid;
              FETCH get_guid INTO l_person_GUID;
              CLOSE get_guid;
              INSERT INTO acquisitions.closepf_person2 (
                   id,
                   user_name,
                   empno,
                   last_name,
                   first_name,
                   middle_name,
                   known_as,
                   email,
                   work_phone,
                   mobile_phone,
                   pager,
                   fax,
                   office_addr1,
                   office_addr2,
                   office_addr3,
                   office_city,
                   office_state,
                   office_zip,
                   office_country,
                   title,
                   manager,
                   default_group,
                   guid)
              VALUES      (
                   l_person_ID,
                   l_person_USER_NAME,
                   l_person_EMPNO,
                   l_person_LAST_NAME,
                   l_person_FIRST_NAME,
                   l_person_MIDDLE_NAME,
                   l_person_KNOWN_AS,
                   l_person_EMAIL,
                   l_person_WORK_PHONE,
                   l_person_MOBILE_PHONE,
                   l_person_PAGER,
                   l_person_FAX,
                   l_person_OFFICE_ADDR1,
                   l_person_OFFICE_ADDR2,
                   l_person_OFFICE_ADDR3,
                   l_person_OFFICE_CITY,
                   l_person_OFFICE_STATE,
                   l_person_OFFICE_ZIP,
                   l_person_OFFICE_COUNTRY,                                                                                                     
                   l_person_TITLE,     
                   l_person_MANAGER,
                   l_person_DEFAULT_GROUP,
                   l_person_GUID);                                                                      
                   EXCEPTION WHEN NO_DATA_FOUND
                        THEN
                             EXIT;
                   COMMIT;
         END;
         END LOOP;
    END;
    Martin

  • Extract Essbase metadata

    Hello,
    I'm trying to create an interface to extract Essbase metadata. I reversed an essbase model. At the interface diagram window, I was able to drag the essbase dimension into the source area. However, i don't see the Target Datasource area where I can drop the target model into. How do I get to see the Target area?
    Thanks

    Thank you I see that. When I opened it, it showed in horizontal view. How can I switch it to Vertical view where I can see the source and the target at the same time?

  • Looking for pure Java API to read metadata from an MP4 file.

    Hi, I am looking for a pure Java api that can read MP4 metadata. I have been trying to look online for one but have not found anything
    suitable. If there are no good api's, can someone point me to resources on how to parse metadata from an MP4, tutorials would be great
    as well. I have looked online for that as well but have not found much. Any help would be greatly appreciated.

    Cross posted
    http://www.java-forums.org/new-java/59652-looking-pure-java-api-read-metadata-mp4-file.html
    http://www.coderanch.com/t/580833/Streams/java/Looking-pure-Java-API-read
    http://stackoverflow.com/questions/10568588/looking-for-pure-java-api-to-read-metadata-from-an-mp4-file
    db

  • ERROR:- ENT-09671 ERROR WHILE EXTRACTION DIMENSION METADATA FOR DIMENSION

    Hello all,
    i am working on OWB 10gR2 while i try to validate & Deploy according to the following process it was successful but as i tried to view data from dimension i am getting an error which i have mentioned below
    Source Table = CUST_MST
    Destination Table = CUSTOMER
    Dimension = CUSTOMER
    Mapping = CUSTOMER_MAP
    Validate Table CUST_MAP.
    Validate Table CUSTOMER.
    Validate Dimension CUSTOMER.
    Validate Mapping CUSTOMER_MAP.
    Deploy table CUSTOMER.
    Deploy mapping CUSTOMER_MAP.
    Deploy dimension CUSTOMER (configured => Deploy All).
    Deploy table CUSTOMER.
    Deploy sequence <CUSTOMER_SEQ>
    Deploy mapping CUSTOMER_MAP.
    Deploy dimension CUSTOMER (configured => Deploy All).
    Start mapping to load table CUSTOMER.
    After this i am getting an error while i tried to view the data in the dimension
    ERROR:- ENT-09671 ERROR WHILE EXTRACTION DIMENSION METADATA FOR DIMENSION DATAVIEWER
    Thanks & Regards
    Pratik Lakhpatwala
    Jr Oracle DBA

    Not sure if it's valid to have a dimension with 1 hierarchy and 1 level in that hierarchy. The hierarchy may have to have at least 2 levels. If you want the configuration of a dimension with 1 hierarchy and 1 level, CWM2 may want you to omit the hierarchy, thus creating the dimension with only 1 level.

  • Extracting HFM Metadata

    Hi
    I am currently researching the possibilities for extracting HFM metadata into a SQL database. I know ODI has a KM to extract the members for the dimensions.
    Could you confirm the format that these members are extracted in?
    Does it extract them in a parent/child format or just a flat list members?
    Thanks
    M

    Hi Paul,.
    I tried the script and it worked well for me, except the state/rrovince was blank.  I think it must be from the category where the city and country wer before that didn't show.
    Previously it was a very convoluted procedure for me to get the info to my Access database.  I would first enter the info in MSWorks database, because of the time saver of the fill-down and fill series that MSAccess doesn't have.  After entering all the info I would save it as a text file and import into Access after assigned the fields, some of which had to be modified slightly as one for example would such as slide # and the other slide_#,  One I couldn't change and if I changed the other in ACCESS then all the queries and reports based on it would have to redone also..  I would get the fields to coincide and then do an append query to add to the main table.
    I had only one location field when I set up the database, and not separate ones as in Bridge, so city, state and country would all be in the same field. I would only add country when it was not US which was seldom.
    In anticipation of the ability to import the different location fields, I added city, state/province and country to the database, and then I spent about 8 hours creating hundreds of update queries, for each state, city and country to have the data of 166,000 records in the respective fields.
    I did a sma run yesterday with a folder that only had a couple dozen images.  I have to reorder the fields somewhat, but this is promising to be a huge time-saver and I look forward to using it when I have some much bigger downloads to convert.
    Thanks very much for all your help with this.

  • Why won't my .mov or my .mp4 movie play in Keynote 4.0?

    Others on the forum seem able to play movies in their keynote projects. I can't.
    When the slide I have placed the movie comes up, the movie plays for a second or so and then quits while the next slide comes up. What am I doing wrong? The movie is just over 2 minutes long. Why won't it play?
    Any help will be appreciated. I'm new to using Keynote. I've enjoyed making builds with music on mulitiple slides, but dang it, I can't seem to make a simple .mov or a .mp4 movie work. I'm guessing I'm missing something very basic. Please help.

    If I am understanding your problem correctly, this is unfortunately a bug (or simply an unsupported feature) in Keynote that has not been corrected since the very beginning. Currently, the only way to have a movie play properly through is to:
    1) make sure the slide containing the movie has no delay in the transition to the next slide, and
    2) you will need to create transparent objects (like a square), each building in a set amount of seconds (60 seconds max allowable per object). For example: For a three minute movie, you will need to create an object, build it in over 60 seconds. Then copy and paste for the second object only this time, set it to start building in AFTER the previous build. Copy and paste again, set to build after the previous build, only this time, you will need to adjust the 60 seconds down to whatever fits. When the last object is done building, the slide will transition regardless of whether or not the movie is done playing.
    It is a complete waste of time as trying to determine the duration of the last object to build in is totally trial and error. I am amazed that this simple feature (playing a movie within a slide) is hampered.

  • Can't import mp4/mov files into iMovie

    I tried to create a new project by importing a .mp4 file from my account on Youtube. It copied the file to the event but didn't create a thumbnail. I did some research and I tried:
    -Quitting imovie, changing the name of the event folder, then restarting imovie.
    -Importing the .mp4 to a different event folder. Quitting/restarting.
    At this point, the thumbnail for the newly imported movie appeared but the other videos that were previously (and successfully) thumbnailed in that event disappeared. I quit/restarted iMovie and all the thumbnails in that event were missing.
    Here's what I've tried since then:
    -Converting the .mp4 in Handbrake to .mp4 and then importing again. No luck.
    -TRYING to convert the .mp4 to .mov in mpeg streamclip. I get an "Audio Decoding Error" when I attempt.
    -Converting the .mp4 to .mov while disabling the sound in mpeg streamclip. IT WORKS and iMovie is able to import AND thumbnail.
    So it'd appear that there's something wrong with the audio in the .mp4 file. Tried other .mp4 files and none of them were able to be converted or imported. Tried extracting the audio from the .mp4 file via MPEG streamclip and there's the same "Audio Decoding Error." The audio on the .mp4 file is AAC.
    OK... It'd appear that I'd need to just import the .mov (no sound) along with the audio from the clip (I've used AudioHijack for that) to edit both in iMovie. The problem is that when I try to export it in iMovie I receive error codes.
    This just all seems way, way more complicated that it needs to be. Does anyone have any suggestions on something I haven't tried yet or perhaps some video editing software (non FCE) worth looking into?
    Thanks

    I was currently having the same issue trying to import into imovie. I have EyeTV Hybrid and when exporting a movie it asks you to select format in which to export it in. I selected m-peg4 and when I tried to import into imovie it was grayed in the finder, so what I did was return to the export feature in EyeTV and exported again under a different format - for imovie. It's exporting as we speak and I feel this will allow me to import properly now. Hope this helps.

  • .mp4 movie won't play with QT 7.1.2

    hi,
    I have .mp4 movie that can't play and I have the message "Error opening movie. The movie coud not be opened.". It is a personal movie I extracted with handbreak. Yet, yesterday I was able to open it and work with it in iMovie. PLEASE HELP!!!
    thank

    "Normal" HandBrake conversions are about one quarter of the source in file size. An export (conversion) of a DVD would become about 1GB. Your file is 4.3GB's which would seem to be about the same size as the source MPEG-2 file.
    Can you recall the settings you used in HandBrake? Did you use FFmpeg or XviD encoder?
    Sorry to ask so many questions instead of pointing you to an answer. I'm running out of ideas to the error.
    Others?

  • Why does my imported .mp4 movie appear black?

    Imported an .mp4 movie (technical animation created in another app) into EA (2014 CC).
    Added buttons and interactivity, everything works fine, assignment completed.
    A month later, go back into EA to make minor changes.
    However, when I'm EA, the .mp4 movie now appears black, thus making it impossible for me to make changes.
    FYI:  When I Preview In Browser, the animation plays back fine.
    Question: Any ideas as to why the imported movie now appears black when I play it back within the app?

    Joe,
    ·         I just uploaded the folder to my “Creative Cloud Files”.
    ·         Right now, it is set to “Share with Nobody”.
    ·         When I click on “Share with”, I get 2 choices, “Nobody” or “Specific people”.
    ·         When I click on “Specific people”, I get 2 choices, “Everyone” or “Find people”.
    ·         I’d rather not select “Everyone” because it is a company doc.
    ·         Is there a way for me to add your name in “Specific people”?
    ·         Please advise, thanks.
    Eddie
    Eddie Ostrowski
    Pitney Bowes Inc. | Multimedia Specialist
    Global Knowledge and Content Management
    37 Executive Drive | Danbury, CT  06810 USA
    Internal:  8.796.6691 | External:  203.796.6691

  • Replacing audio in mp4 movie clip

    For two days now I'm trying to find a way to easily replace audio track in my mp4 movie clip without re-encoding the whole thing. I found an answer how to do it in QuickTime Pro and some other software, but no luck with Adobe Premiere Pro or Audition or other Adobe CS6 Production Premium software which I own. Can somebody please tell me how to do it? Is it even possible
    Thanks in advance.

    Hi Kevin,
    There is a way!  I just figured it out!
    I have my extracted audio in the clip bin where it should be after I "edit audio in Adobe Audition."  I then unlinked just my audio clips with the track selection tool as they were on the same track.  Then I relinked the audio to the extracted enhanced audio file and BAM!  It worked!
    Figuring this out just saved me hours possibly days of manually replacing these audio clips!

  • MP4 movies not playing on iPod with version 1.3

    I have iTunes version 7.6.1.9 and iPod firmware version 1.3. I have several movies converted to MP4 format via Nero which played on the iPod just fine up until about 10 days ago. Now the MP4 movies will no longer play on the iPod, i just get a blank screen. The one movie I did convert using Handbrake to M4V format does still play on the iPod. Also I downloaded an MP4 movie from ipodarchive.com and it plays fine on iPod. All movies in all formats play fine in iTunes.
    Does anyone know if there is something in one of the firmware updates which prevents the playing of MP4's converted by certain programs?
    Thanks

    I found the same problem. It's not all mp4's, though; some of mine work perfectly. I think higher quality videos don't work, for some reason. Movies at 159 kbps and 640x480 don't work, though they used to. Movies at 79 kbps and 480x352 still work fine.
    Have you found any fixes/workarounds?

Maybe you are looking for

  • How to find out SD billing doc # using accounting doc number ?

    Hi Experts, Using accounting doc tables such as BKPF , BSEG and BSID , I need to find out respective SD billing doc no when I have accounting doc number. The issue is I cannot use either 'reference number' or assignment number' because the same numbe

  • Hover Card is showing US formated date rather than UK formated date

    The HoverCard in the search results is showing the last modified date in US culture i.e. MMM/dd/yyyy rather than UK dd/MMM/YYYY. The culture of the search site collection is UK.  jamtoday

  • Voucher payment posting

    Hi I have a voucher, payment is done payment reference number is also generated. Payment entry is showing in PS_PAYMENT_TBL for that payment reference number. However there corresponding entry is not showing in PS_PYMNT_VCHR_XREF table. PS_VCHR_ACCTG

  • Entire ipod and Library wiped

    Im really sorry if this has been posted about before but I just cannot find it anywhere on the discussion boards. Yesterday I purchased some items from the itunes store, I havent upgraded to the latest version of itunes as I had heard people having t

  • FM of date and time

    hi i look for FM that check the correctness of date and time for eaxmple: The date 01/55/2006 is not correct becasue the range of month is between 1 to 12 thanks have a nice day