XML export with chaptermarks

Is it possible to export chaptermarks to an XML file in FCP?

no, not directly, but you can export a sequence as an xml which will contain the chapter markers along with all the other sequence info ... that xml could then be queried to return only the chapter marker data

Similar Messages

  • XML Export with XSLT

    Dear scripters,
    With this little script you can export XML.
    But is there an way you can use an XSLT to export the XML?
    var w = new Window ("dialog"); 
    var myBut = w.add ("button", undefined, "EXPORT", {name: "ok"}); 
    var myName = app.activeDocument.name.split(".indd").join(".xml"); 
    if (w.show() == 1){ 
        try { 
             var myFolder = Folder.selectDialog("Select the folder", "");  
             app.scriptPreferences.userInteractionLevel=UserInteractionLevels.neverInteract; 
             var myInxfile = new File(myFolder.fsName+"/"+app.activeDocument.name.split(".indd")[0]+".xml"); 
             app.activeDocument.exportFile(ExportFormat.XML, myInxfile); 
             } catch(err) {alert(err);} 
    app.scriptPreferences.userInteractionLevel = UserInteractionLevels.INTERACT_WITH_ALL;
    XSLT:
    <?xml version='1.0' encoding='UTF-8' ?>
    <xsl:stylesheet version='1.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>
    <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/> 
    <!-- Match everything --> 
    <xsl:template match="@*|node()"> 
    <xsl:copy> 
    <xsl:apply-templates select="@*|node()" /> 
    </xsl:copy> 
    <xsl:text> 
    </xsl:text></xsl:template> 
    </xsl:stylesheet> 
    Greetings

    insert before line 9:
    app.activeDocument.xmlExportPreferences.allowTransform=true;
    app.activeDocument.xmlExportPreferences.transformFilename=File('PATH_TO_YOUR_TRANSFROM_FILE');

  • Recordset xml export WITH html tags

    Hi there,
    I am trying a rather simple thing (I hope) but cannot figure it out how to do it.
    I created a dynamic xml (.php) file using the export recordset as xml behaviour. The generated xml works fine when I use spry to display it. The downside is that html tags are converted to something like this (I understand that these are the greater then and lesser then signs used in html):
    <strong>fringilla</strong>
    In the html document where I use spry to display this xml, the < etc are converted back to <  and >, but the html is not rendered.
    I tried cdata, but somehow cannot get this to work. I also cannot get dsSpecials.setColumnType("quote_tekst", "html"); to render the xml as correct html.
    Can someone tell me how to do this? Database and xml are both utf-8.
    Kind regards and big thanks in advance if you can help (it is really appreciated ;-D),
    Ben

    Sorry about that, don't know what happened in that last post..formatting I guess, here's the whole reply - xml enclosed w/ a pre - thanks again.<br /><br />Hi Günter,<br /><br />Thanks so much for the info.  I have been diligently trying to use CDATA and read the generated XML, but still I'm not seeing the HTML text rendereed in my detail section.<br /><br />The XML is setup from my mySQL data as:<br /><pre> <br /><?xml version="1.0" encoding="UTF-8"?><br /><CurrentSpecials><br />     <special><br />          <name> Caribbean Sun </name><br />          <detail> <h1>special deal!!</h1><p style="color:#00f;"><strong>Join us</strong>!</h1> </detail><br />          <expire> 2007-08-31 00:00:00 </expire><br />          <rating> highest </rating><br />     </special><br />...<br /></pre><br />and I want the detail to render in my div (or I'll add a table/textarea...) as the html indicates.  I'm not having any luck w/ using CDATA for it - it's probably just me - I'm just starting out with this stuff.  Any pointers in the right direction? I'm getting the detail as {dsList:detail} and somehow need to say - this is html.  I've tried using javascript and php to render it.<br /><br />I could I guess just echo the detail on a mouseclick without a spry but didn't want to have to do all the implementation myself - I wanted to take advantage of dreamweaver's functionality! <br /><br />Thanks so much for looking at this - any help is so much appreciated!!

  • XML EXPORT with XMLCONCAT

    Good Morning,
    I have a package that I use to export an XML file created by taking data from 2 tables and I was thinking of splitting used in two procedures, one procedure for each table.
    But the select that goes to compose the XML file is FROM dual.
    I was advised to use the function XMLCONCAT, someone knows how to use it in my case?
    Thank you very much

    Good Morning,
    I have a package that I use to export an XML file created by taking data from 2 tables and I was thinking of splitting used in two procedures, one procedure for each table.
    But the select that goes to compose the XML file is FROM dual.
    I was advised to use the function XMLCONCAT, someone knows how to use it in my case?
    Thank you very much

  • XML output with multiple tags in one line

    I have not done much XML exporting with SQL. Previously I had just been ending my SQL queries with
    FOR XML RAW ('Company'), ROOT ('Companies'), ELEMENTS;
    and it formatted my query nicely in an XML output. That put every column name as a tag and the cell data within the tag.
    However, now the criteria has changed on me. I need to create a tag with multiple sub tags in it.
    Example: <Location Floor="10" Suite="512" DoorType="Metal">
    But I'll still need other tags to be normal in the XML output such as
    <Address>123 Fake St</Address>
    <City>Springfield</City>
    <Location Floor="10" Suite="512" DoorType="Metal">
    Is there any way to get this XML mixed in the output like above?
    Thank you for any help. 

    Hi, you can FOR XML PATH for a finer degree of control over your XML.  Use the @ symbol to create attributes.  Here's a simple example:
    DECLARE @t TABLE ( rowId INT IDENTITY PRIMARY KEY, [address] VARCHAR(50), city VARCHAR(30), floor INT, suite INT, doorType VARCHAR(20) )
    INSERT INTO @t VALUES
    ( '123 Fake St', 'Springfield', 10, 512, 'Metal' )
    SELECT
    [address] AS "Address",
    city AS City,
    [floor] AS "Location/@Floor",
    suite AS "Location/@Suite",
    doorType AS "Location/@DoorType"
    FROM @t
    FOR XML PATH ('Company'), ROOT ('Companies'), ELEMENTS;

  • Problem with Xml exporter

    Hi All,
    Thanks in advance for ur warm replies.
    I am exporting personalizations which i did but iam facing problems with this.
    Please help me on this issue.
    Steps i follwed.
    Step1: exec jdr_utils.listcustomizations('/oracle/apps/ego/item/eu/webui/EGOITEMATTRIBUTEPGL');
    It displays me the customizations which i did as follows
    /oracle/apps/ego/item/eu/webui/customizations/responsibility/24091/EGOITEMATTRIBUTEPGL
    Pl/sql procedure completed successfully.
    Step2: Iam now at command prompt on java_top and i run the following command
    java oracle.jrad.tools.xml.exporter.XMLExporter
    /oracle/apps/ego/item/eu/webui/customizations/responsibility/24091/EGOITEMATTRIBUTEPGL
    -username apps -password <mypwd> \
    -dbconnection "(description=(address_list=(address=(protocol=tcp)(host=<host>)(port=<myport>)))(connect_data=(sid=<mysid>)))" \
    -rootdir "/oracle/apps/ego/item/eu/webui/EGOITEMATTRIBUTEPGL'"
    * I don't know exactly what is root directory here. which path i need to provide here.*
    Error: No such file or directory.
    Thanks and Regards
    Zaheer

    Zaheer,
    <output_dir> - (Required) Output directory where the exported xml file structure is to be stored. You may set this to any directory, however, we recommend that you export your packages or XML files to $APPL_TOP/personalizations.
    If you run the export tool for the package
    /oracle/apps/ak/dem/webui/customizations/site/0/REQORDERSTATUSPAGE and specify -rootdir
    $APPL_TOP/personalizations, the xml file is saved as
    $APPL_TOP/personalizations/oracle/apps/ak/dem/webui/customizations/site/0/REQORDERSTATUS PAGE.xml.
    In your case define rootdir as rootdir "/oracle/apps/ego/item/eu/webui ".
    Thanks
    --Anil                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • CS2/MAC/Applescript: XML Export problem with Special Character (thin space).

    Hi,
    I just have noticed that the base XML export of Indesign doesnt encode/keep the unicode value of Thin Space in the exported XML. Strangely, a non-breaking space is encoded ( ) and a few other higher range unicode values (well not encoded, it's in the text data just like any other character).
    The thin space is converted to a char 63 (?). I have tried utf8 and utf16.
    Is this behavior documented somewhere? There is no option in the export window.
    Does it mean that the only complete and reliable way to export text data is to have another script to export the tagged page item text content? (i definitively can do this, but it's remove alot of the simplicity of using the base XML export) [and make any simple xml/text roundtrip unfunctionnal]
    Anyone having experience with XML workflow can confirm if i have just met a known limitation of Indesign??
    Thanks,
    Eric

    Oups! I was able to find something here on the same subject:
    http://www.adobeforums.com/webx/.59b561c7/0

  • Crystal Report 2008 SP2 & InfoView: Custom XML Export doesnt work

    Hi,
    I have created a Crystal Report .rpt and want to use the custom xml export function to output a custom xml file. For that, I created a custom transformation file (xsl) and imported it into the .rpt . On the client machine, if I open the .rpt with Crystal Reports 2008 SP2, and select to export it using the custom xml output, all runs fine. (under SP1, only half the file was created...)
    If I upload the .rpt file to Infoview (server-side: BO Enterprise 3.1, SP2 as well) and schedule it, I can select xml, and then my custom xml as output format, but I am getting the error message u201EUngültige Exportoptionen" (="invalid export options"), in the instance history. No output file is created. I use file system as destination. Other output formats like .pdf and .rpt work fine and files are created.
    Ideas:
    -Are there any more settings needed on the server (e.g.CMC - Crystal Server Jobs, other Processes, ...) so I can schedule the report and successfully create the custom xml format file as output?
    -Do I need to upgrade to a specific SP or FP on server-side so everything runs smooth?
    Thanks for your help!

    Hi Florian,
    I'm having the same problem, have you by any chance found a solution?
    Gajus.

  • XMl Export not working as it should...

    Hi there guys
    Have been owrking on this concert for the last 4 days. 4 Seperate Color Projects 3 have an average of 600 clips and the last one has around 1200. There are also 3 dissolves on the last sequence. All were created in Color by using the Send to Color command from FCP. They are all rendered and the first 3 are back in FCP (Using Export XML from Color)and relinked with no problem to the graded media. This morning we tried to create the XML for the last sequence, when loading into FCP it completes the import but the timeline is empty. THe size of the XMl is also suspect (3.4MB) where the other ones average around 20MB.
    Now we still have all the media and it's graded, but have been unable to get a proper XML from Color so we can relink back in FCP.
    Any suggestions will be welcomed.
    Regards
    Patrick Morgan
    www.bluegiraffe.tv

    You are well in excess of the comfort number with 1200 or so events. That may or may not be the actual problem, though. "Dissolves", or maybe you mean keyframed transitions(?), don't usually pose any obstacles, either.
    If the Send to... FCP isn't working, then the other possibility to start the ball rolling, is to attempt to brute force load the XML file with no apps running, so that neither FCP nor COLOR are resident. Find the correct XML, right click (default is open with COLOR), change to FCP and give it a go.
    This approach surprised me a couple of days ago. I had a render crash. Usually, that means COLOR won't remember it did anything and one is obliged to start the render all over again. But I exported an XML, opened it and lo and behold, all the grades appeared up to 88 which was "offline". The rest were original source media. SAVE. Went back to COLOR and loaded the render queue with everything from 88 to 143. Render. Successful. SAVE. And then, for the h&LL of it, I sent out another XML. I thought I'd hack the two sequences together. To my wonderment, the sequence loaded intact with all grades resident, even though 1-87 had no status back in COLOR. Interesting.
    jPo

  • XML Mapping with B1 Field

    Hi Expert,
    can anybody know how to identify / map the xml document with b1 field. I did not found any link / documentation on this.
    Thanks,
    Tushar

    Hi Tushar
    You will need to be more specific. Do you want an XML layout to use for importing or exporting SAP Business One objects? Maybe give us details of the specific object. Most DI API objects have a write to XML which will give you the layout for that object. You can also refer to the REFDI.CHM file under the SDK Help folder.
    Kind regards
    Peter Juby

  • XML Export/Import Query & Variables

    Hello,
    We are currently bringing up a new environment/landscape.  With that, I'm trying to copy some of the query elements off our current production server and move them back to the new development server.  After much wasted time trying to duplicate the query manually, I've decided to do it via XML Export/Import. 
    I have successfully created an XML file from our production system (sitting on my local machine).  I then go to the import area on the development system and bring up the XML file I created.  I then process the file on the development server.  The import wizard tells me that it saves the objects successfully, but I'm unable to find any of the objects on the system.  So, I have two questions. 
    1)  Is this the proper way to do this, or is there a better way (assuming not on the transport path)
    2)  With the logs saying successful, where do those objects go?  Is there a way that I can go find them?  Do they need activated?
    Thanks in advance,
    JW
    Edited by: J W on Sep 19, 2008 2:02 AM

    bump

  • XML export character encoding bug

    I've found a bug with Final Cut Pro XML export for any projects where media has a "#" in the name. Premiere Pro passes the "#" character into the file pathname instead of encoding it as "%23". The result is any clips with names such as "clip #1", "clip #2", "clip #3", etc. will be broken whe the XML is imported by another application. Compare:
    Premiere Pro XML (does not work):
    <pathurl>file://localhost/Volumes/P50%20Production%20Drive%202/CNMT%202011-12/CNMT%202011- 12%20Final%20Cut%20Pro%20Documents/Mom%20is%20Never%20Wrong/
    CNMT_MomNeverWrong_Street_12_14_11/Clip%20#2.mov</pathurl>
    Final Cut Pro XML (works properly):
    <pathurl>file://localhost/Volumes/P50%20Production%20Drive%202/CNMT%202011-12/CNMT%202011- 12%20Final%20Cut%20Pro%20Documents/Mom%20is%20Never%20Wrong/
    CNMT_MomNeverWrong_Street_12_14_11/Clip%20%232.mov</pathurl>
    Note the difference in the clip name. A global search and replace of "#" with "%23" makes the Premiere Pro XML work properly.
    This bug is easily repeatable and verifiable. I've filed a bug report but wanted to post here just to give folks a heads up.
    Thanks for your help!
    --dhl

    This tech note will help:
    http://sunsolve.sun.com/pub-cgi/retrieve.pl?doc=fsunone%2F7717&zone_110=7717%2A%20
    ka

  • Report acts funny AND xml-export broken

    Hi @ all,
    1.
    My users are experiencing some weird problems: A report is displayed with the pagination showing that there are 59 rows, but the report is empty... only the column headings are shown!
    Take a look at the screen shot (2004-07-21_Report-Problem.JPG):
    http://marvel.oracle.com/pls/otn/p?n=3444139716751380138
    I've seen this only a couple of times and we thought that we had eliminated the problem by installing a newer version of the IExplorer (6.0). My users had some more difficulties with the older version (mostly 5.0).
    Creating this page I used the howto 'Build a master-detail application'. And yes, I'm positive, there are Samples associated with Delivery 11.
    Has anyone ever experienced such a thing?? How did you get around it? (especially this being such a sometimes-works-sometimes-doesn't-work phenomenon)
    2.
    Another thing: I tried the XML-export (Data Workshop) here in my installation. When I'm at the very end and click Export Data I just get an error message: ORA-04063: has errors ORA-04063: package body "FLOWS_010404.WWV_FLOW_DATALOAD_XML" has errors ORA-06508: PL/SQL: could not find program unit being called. (This happens whether the 'Export as file' -checkbox is checked or not!)
    I tried exactly the same thing on marvel.oracle.com and got a nice XML-file.     :-)
    Has anyone a clue what that program unit is that is not found?
    -David-

    David,
    1. Looks like a pagination problem. Look for threads on resetting pagination on this forum. Your mileage may vary, given the version of HTML DB you are running.
    2. I know you don't want to hear this, but it's time to upgrade to the production version of HTML DB. Like you said, it's working on htmldb.oracle.com. It's tough to say what may be wrong with your setup, other than that it's pre-release software.
    Sergio

  • Soft returns, xml export

    If I want to export text, including soft returns, to xml I get the error that some kind of characters are not recognized.
    Is there a way to export soft returns correctly to xml ?
    I already posted a similar question, but maybe I was not clear anough, so please accept my appologizes.
    Kind Regards,
    Droom

    Hi Droom,
    are you sure that it is this forced line break character that causes the error message?
    There are indeed some characters that can not be exported by InDesign's XML export, but as far as I know there are no problems with the forced line break.
    Maybe you are using another char like an AutoPageNumber char (0x0018), a SectionMarker char (0x0019) or a right indent tab char(0x0008). These characters can not be exported.
    Generally every character that has a hex value lower that 0x0020 (except 0x0009, 0x000A and 0x000D) can not be im- or exported by XML.
    Try to create a new document with only one frame, insert a single forced line break and export it. If it works you have to look for another character that causes the problem. If it doesn't work I am mistaken.
    Form more info see my approach to import a right indent tab ( http://www.adobeforums.com/webx/.59b6dbd5/2 ).
    For some information about InDesign characters see: http://www.absatzsetzer.de/downloads/Zeichen.pdf (it is in German, but the table is understandable, I think)
    Best wishes
    Silo

  • Forum XML Export failure - user not found

    Hi,
    first, I know the export/import functionality is disabled by default in the jive forum version of SAP.
    But they don't provide any other mechanism to export forum content, so we have to use it.
    We want to export our forum content with the XML Export function.
    When I want to export the whole content, the error log shows following:
    2009.12.22 09:54:45 [error]
    com.jivesoftware.base.UserNotFoundException
    at com.sap.netweaver.coll.forums.ume.User$JiveUser.loadUserByIDFromDb(User.java:446)
    at com.sap.netweaver.coll.forums.ume.User$JiveUser.<init>(User.java:356)
    at com.sap.netweaver.coll.forums.ume.User.<init>(User.java:77)
    at com.sap.netweaver.coll.forums.ume.UserManager.lookupUser(UserManager.java:139)
    at com.jivesoftware.base.UserManagerAdapter.getUser(UserManagerAdapter.java:82)
    at com.jivesoftware.base.database.DbPoll.getUser(DbPoll.java:160)
    at com.jivesoftware.forum.proxy.PollProxy.getUser(PollProxy.java:47)
    at com.jivesoftware.forum.database.DbDataExport.exportPoll(DbDataExport.java:1643)
    at com.jivesoftware.forum.database.DbDataExport.exportPolls(DbDataExport.java:1624)
    at com.jivesoftware.forum.database.DbDataExport.exportForum(DbDataExport.java:1415)
    at com.jivesoftware.forum.database.DbDataExport.exportForums(DbDataExport.java:1330)
    at com.jivesoftware.forum.database.DbDataExport.exportForumCategory(DbDataExport.java:1305)
    at com.jivesoftware.forum.database.DbDataExport.exportForumCategories(DbDataExport.java:1112)
    at com.jivesoftware.forum.database.DbDataExport.exportForumCategories(DbDataExport.java:1101)
    at com.jivesoftware.forum.database.DbDataExport.doRun(DbDataExport.java:624)
    at com.jivesoftware.forum.util.DataExportServlet.service(DataExportServlet.java:120)
    at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.runServlet(FilterChainImpl.java:117)
    at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.doFilter(FilterChainImpl.java:62)
    at com.jivesoftware.base.action.JiveAdminActionFilter.doFilter(JiveAdminActionFilter.java:37)
    at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.doFilter(FilterChainImpl.java:58)
    at com.opensymphony.webwork.dispatcher.FilterDispatcher.doFilter(FilterDispatcher.java:189)
    at com.jivesoftware.base.action.util.JiveFilterDispatcher.doFilter(JiveFilterDispatcher.java:68)
    at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.doFilter(FilterChainImpl.java:58)
    at com.jivesoftware.base.util.webwork.JiveActionContextCleanUp.doFilter(JiveActionContextCleanUp.java:41)
    at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.doFilter(FilterChainImpl.java:58)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:384)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
    at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
    at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
    at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
    at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)
    But when I export the forums seperatly there are only a few which throws this exception.
    I looked up the usernames from the user who posted in this forums in the table JIVEUSER in the database. But they are all stored in it.
    Can I look up somewhere the username, that isn't found?
    Neither in the error log nor in the debug log I have found it.
    Best Regards,
    Manuel

    The error is caused to an authentication failure and is not an issue with authorization
    You need to look at your authentications policy (Policy->Authentications) and see which identity store was authenticated against
    In addition can do the Live Authentications page (Monitor->Authentications) and for the failing record click on the icon under details. This will give you the full details of the requets processing and you can see which rule was matched in the identity policy (Identity Policy Matched Rule) and "Selected Identity Stores".

Maybe you are looking for

  • Slow running query after upgrading to Oracle 10.2.0.4

    Hello I had posted a query in Database Upgrade section , but all in vian as i have had no replies . So i am posing this in general section as i can now confirm with the exact query issue . 1. I upgraded my oracle instance windows 64 bit from 10.2.0.1

  • How can i use visual logic on my mac

    I am a student at the University of Phoneix and Im taking a programming class that uses Visual Logic. The professor knows about my problem but really doesnt know what to do with a Mac but he says I will need a windows environment to install and run t

  • Can I remove the video of myself while on facetime

    Can I remove the video of myself while on facetime, I find it useful for the fisrt few seconds, then I want to remove it so it does not distract from my conversation. Charles.

  • SocketException: Connection reset in readLine()

    I am new to socket programming in java... A client program from another application connects to my server and sends a string input to my server. My server thread looks like this: public class CallBankAPIClientSendThread extends Thread {      Socket s

  • My iphones touchscreen will completely stop working

    My Iphone has been doing this a lot lately. The touchscreem will just completely quit working, the buttons work but not the screen. Its very frusterating because I cant even use it. I also have hard restarted it many times but it does no good. Apple