Could you please send me the log?
Re: Embedding data from xml file into metadata of a pdf
Re: Embedding data from xml file into metadata of a pdf
Dear Sunil,
I am sorry. May I know what is the "log" you refer to ?
Is it the choice I enter?
On Fri, Oct 3, 2014 at 5:07 PM, sunilkishorpathak <forums_noreply@adobe.com>
Re: Embedding data from xml file into metadata of a pdf
Dear Sunil,
I attached the console dialog after I click the "GenerateXMPToolkitSDK_win"
On Fri, Oct 3, 2014 at 5:31 PM, Zizheng, Brian <zizhengbrian@gmail.com>
Re: Embedding data from xml file into metadata of a pdf
Dear Sunil,
After making the change, the program works for the sample 1
However, I found that if I change to the xml I use, even I change the name to sample.xml there is nothing happens. Therefore I wonder, is it only applied to certain format of xml, eg with the tag start with rdf ??
here is the xml I want to embed, is it workable?
<?xml version="1.0" encoding="UTF-8"?>
<Invoice xmlns="urn:oasis:names:specification:ubl:schema:xsd:Invoice-2" xmlns:cac=
"urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2" xmlns:cbc =
"urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2">
<cbc:UBLVersionID>2.1</cbc:UBLVersionID>
<cbc:ID>TOSL108</cbc:ID>
<cbc:IssueDate>2009-12-15</cbc:IssueDate>
<cbc:InvoiceTypeCode listID="UN/ECE 1001 Subset"
listAgencyID="6">380</cbc:InvoiceTypeCode>
<cbc:TaxPointDate>2014-10-01</cbc:TaxPointDate>
<cbc:DocumentCurrencyCode listID="ISO 4217 Alpha"
listAgencyID=" 6 ">USS</cbc:DocumentCurrencyCode>
<cac:InvoicePeriod>
<cbc:StartDate> 2014 - 10 - 01 </cbc:StartDate>
<cbc:EndDate> 2014 - 10 - 01 </cbc:EndDate>
</cac:InvoicePeriod>
</Invoice>
Regards,
Brian
Extract mp3 XMP markers to CSV
Hi,
I'm trying to figure out how to extract the start times of XMP markers in an mp3 file to a CSV file. Any advice on how to do this on OS X would be appreciated.
My current plan was to get the sample project for Xcode made and see if I could work that into an automator action so I can just drop an mp3 on it and have it spit out the CSV. I've already hit a wall with this plan since I can't seem to get the project files for Xcode created. I've downloaded cmake and followed the instructions on running the script in terminal but it fails do to errors:
CMake Error at CustomSchema/CMakeLists.txt:24 (add_executable):
add_executable called with incorrect number of arguments
CMake Error at CustomSchema/CMakeLists.txt:27 (SetupInternalBuildDirectory):
Unknown CMake command "SetupInternalBuildDirectory".
Maybe this is because Xcode is now version 6? I did use the older version of cmake that was listed in the documentation.
I'm not really that familiar with cocoa or c++ so I'd much rather try to do something like this in javascript but I don't know where to get started with making that either. The other thing that would be ideal would be to make an Audition plugin, since I'm making the markers in audition to begin with, but audition cc 2014 doesn't have extensions like ps, ai, and fl does. I understand this is not a focused post but any leads in how to achieve my goal would be appreciated.
Clik here to view.
XMPToolkitSDK64 build error Xcode 6
Hi,
I'm trying to build the the sdk with Xcode. I ran the shell script and selected option 4 to make a dynamic 64bit Xcode build. The shell was successful and I opened the XMPToolkitSDK64.xcodeproj. There was a warning to automatically update the project settings which I followed. Made sure the target was building for the latest sdk. I'm trying to run ALL_BUILD and it fails at ZERO_CHECK with 1 issue:
PhaseScriptExecution CMake\ Rules xcode/dynamic/intel_64/XMPToolkitSDK64.build/Debug/ZERO_CHECK.build/Script-344FD180C52B49 5F800CA666.sh
cd /Users/greg/Desktop/XMP-Toolkit-SDK-CC201306/build
/bin/sh -c /Users/greg/Desktop/XMP-Toolkit-SDK-CC201306/build/xcode/dynamic/intel_64/XMPToolkitSDK64 .build/Debug/ZERO_CHECK.build/Script-344FD180C52B495F800CA666.sh
echo ""
make -f /Users/greg/Desktop/XMP-Toolkit-SDK-CC201306/build/xcode/dynamic/intel_64/CMakeScripts/Re RunCMake.make
make[1]: *** No rule to make target `/Users/greg/Desktop/XMP-Toolkit-SDK-CC201306/build/xcode/dynamic/intel_64/CMakeFiles/2.8 .11.1/CMakeCCompiler.cmake', needed by `/Users/greg/Desktop/XMP-Toolkit-SDK-CC201306/build/xcode/dynamic/intel_64/CMakeFiles/cma ke.check_cache'. Stop.
make: *** [/Users/greg/Desktop/XMP-Toolkit-SDK-CC201306/build/xcode/dynamic/intel_64/CMakeFiles/ZER O_CHECK] Error 2
Command /bin/sh failed with exit code 2
I then ran the other schemes and they worked. Only ZERO_CHECK has an error and won't build. Do I need it to get started or any idea how to fix this?
Better yet, if anyone can put up all the files, including Xcode samples project, already built that would be great. I'm getting stuck just trying to get the code I need to make what I need. It's really frustrating. I suppose maybe this whole thing is just over my head and fixing this is something simple but If I didn't need to read xmp to get marker data from mp3s I'd not be waisting my time right now.
Message was edited by: Eugene Moss
Clik here to view.
Re: XMP metadata lost in PNG files
@Stefan Makswit If this works in Bridge, why do I often attempt to add metadata to a PNG in bridge only to get a pop-up error message: "The file ####.png canot store XMP metadata. No changes will occur." ??
Re: XMP metadata lost in PNG files
@wwtg-ccolan : Is the file on a shared folder where you do not have write access? Adding metadata to PNG files is supported in Bridge, and the issue you are facing appears to be a bug. Please share a sample file for which you are facing this issue.
Clik here to view.
Solaris specific cmake files missing in XMP toolkit
XMP_Config.cmake references Solaris specific files:
execute_process(COMMAND "uname" OUTPUT_VARIABLE OSNAME) string(TOUPPER "${OSNAME}" OSNAME) if ( ${OSNAME} MATCHES SUNOS) execute_process(COMMAND "uname" "-p" OUTPUT_VARIABLE PLATFORM_SUNOS_ARCH) string(TOUPPER "${PLATFORM_SUNOS_ARCH}" PLATFORM_SUNOS_ARCH) if ( ${PLATFORM_SUNOS_ARCH} MATCHES SPARC) include(${XMP_ROOT}/build/XMP_sunos_sparc.cmake) else() include(${XMP_ROOT}/build/XMP_sunos_intel.cmake) endif() else() include(${XMP_ROOT}/build/XMP_Linux.cmake) endif()
However, these files do not exist in the build directory (or anywhere in the package).
I am trying to get this compiled on Solaris, so this is causing me grief.
Where can I get these files?
Re: Solaris specific cmake files missing in XMP toolkit
Hi Bejhan,
XMP SDK is not supported on Solaris platform. In past we provided support for Solaris and by mistake this code was left in SDK. I can help you to build the xmptoolkit for Solaris but you have to do some more work on your side to get it done. Again, you may face crashes on SPARC Solaris due to endian (big & little).
Please follow the following steps in order to build it on Solaris
1. Go to the build/shared directory
2. Create a copy SharedConfig_Linux.cmake and name it SharedConfig_sunos_sparc.cmake OR SharedConfig_sunos_intel.cmake depends whether you are using SPARC or intel processor.
3. Make some changes in newly created cmake files
a. set XMP_PLATFORM_FOLDER to intelsolaris<_x64> or sparcsolaris<_x64> (depending upon 32/64 bit machine. for 64-bit machine add _x64 suffix)
b. Set XMP_GCC_PATH=<gcc path>
c. Set XMP_GCC_LIBPATH=<gcc libpath>
4. Make a copy of ToolchainRelEng.cmake to ToolchainRelEng_sunos_<intel/sparc>.cmake and fix the gcc path's
Hope this will help you.
-Sunil
Clik here to view.
We are trying to implement a process so that any document that needs to be printed through our Java application will be printed as PDF using Adobe Reader.
We are trying to implement a process so that any document that needs to be printed through our Java application will be printed as PDF using Adobe Reader.
For which, We created and execute the below command line to call Adobe Reader and print the PDF on a printer.
"C:\Program Files (x86)\Adobe\Reader 11.0\Reader\AcroRd32.exe" /T "\\<Application Server>\Report\<TEST.PDF>" "<Printer Name>".
Current Situation: The above command line parameter when executed is working as expected in a User's Workspace.
When executed in a command line on the Application Server, it is working as expected.
But, the same is not working while executing it from Deployed environment.
Software being used: 1. Adobe 11.0 enterprise version. 2. Webshpere Application Server 8.5.5.2.
Please let us know if there is a way to enable trace logs in Adobe Reader to further diagnose this issue.
Re: Solaris specific cmake files missing in XMP toolkit
Sunil, thank you for your reply.
I attempted the steps you instructed.
However, I cannot find the file ToolchainRelEng.cmake.
Please advise.
Also, please give me more information about the endianess issues.
Re: Solaris specific cmake files missing in XMP toolkit
Sorry. Correct name is ToolchainGCC.cmake, It is in build/shared folder. Don't rename it, just modify the content of this file and set correct gcc and other path.
-Sunil
Clik here to view.
Re: Solaris specific cmake files missing in XMP toolkit
Is it possible to use the Solaris compiler rather than the GNU compiler?
This is requirement for me as all of my other applications are compiled with the Solaris compiler.
XMP Data available only with Photoshop CS6
Hi,
We are using an image vault to manage our pictures and i made an InDesign JavaScript to retreive images description contained within the XMP datas.
The text entered in the image bank is good in the browser.
When i open the image in Photoshop CS6 (and older), the XMP data shown is good.
When i open the image in others application (Bridge, PSD CC or my InDesign Script), only the old data is showing (prior to the image bank text update).
To make the good XMP data available to all application, i must open the image in CS6, make a "save as" and then the good XMP is showing through all the application. With an image bank of over 30000 images, this is hardly a solution.
This is what the header looks like when exporting the XMP datas)
Header when exporting XMP from PSD CS6 before the save as (showing the old schema)
Image may be NSFW.
Clik here to view.
Header when exporting XMP from PSD CS6 after the save as (the old schema isn't there anymore and "TC_GENERIC" is now showing)
Image may be NSFW.
Clik here to view.
Any pointers to what i should do to make this right?
Thanks
Clik here to view.
maxLength="10" Character Count Limit in a Data Field
Hello,
Below is the syntax I'm using trying to get a data field ( MyField ) in my panel to have a maximum allowance of 10 characters.
This syntax is not doing anything to limit the count. Do you know what I have wrong in the line below?
<xmp_property name="MyField" category="external" label="$$$/Custom/Property/MyField Input_Label= My Field:" type="text" maxLength="10" ui:width="50%" ui:mru="true"/>
Clik here to view.
Re: XMP metadata lost in PNG files
Info: Mac, Yosemite, Bridge CC
I have an extensive collection of PNG files that HAD been keyworded in Bridge (XMP). I noticed several days ago that the XMP of all those files is now missing.
When attempting to assign keywords back in, I also get the message: "The file ####.png canot store XMP metadata. No changes will occur." Weird. Like you said, it's looking like a bug.
And here's the kicker... if I duplicate the PNG file (Edit > Duplicate), the "copy" DOES contain the original XMP that went missing.
I really don't want to have to manually duplicate all my PNG files just to regain the metadata. Any brainy solution? I'm attaching an example of the original PNG (missing XMP) and the duplicated PNG (magically restored XMP).
Clik here to view.
Re: Update for XMP FileInfo SDK available
Hi guys, (Jorg and csuebele) thanks for this - I'm not a mac expert so bear with me - I'm a press photographer using Photoshop CC 2014 on a new iMac. Have been having the IPTC templates experience outlined on the public thread, and would LOVE to crack this without calling for the IT cavalry. I've followed the Adobe instructions, downloaded and opened up the tools sub folder from the XMP Metadata UI SDK, but my mac won't allow me to go any further due to 'unrecognised developer' (or similar but I expect you recognise the problem). Any ideas please? Would be very much appreciated. Thanks
Clik here to view.
Size limit for XMP metadata to be added externally to a file's metadata
Hi,
There is a situation where I need to add some 'text data' to the metadata of Adobe Illustrator document, in XMP format. The data being added is in the form of Array Item. While adding the data, I found that, after certain limit, the data addition is not happening. I read in the XMP Specification Part:3 that, the StandardXMP meta object(JPEG) can have size of 64 KB. It can be extended using ExtendedXMP object further..
Is this limit applicable to text data also?
Is there a limit on having such ExtendedXMP chunks?
Will the data in ExtendedXMP be considered in same way as that of in StandardXMP?
Clik here to view.
Re: Size limit for XMP metadata to be added externally to a file's metadata
Hi,
There is no any limit set by XMP for adding metadata in a file. The 64 KB limits exists only for JPEG using standard XMP block which can be increased by using Extended XMP block.
I am not sure how you are adding metadata. Are you using XMP SDK or Adobe illustrator?
Will you please elaborate how can we reproduce this issue?