Quantcast
Channel: Adobe Community: Message List - XMP SDK
Viewing all 801 articles
Browse latest View live

Re: XMP Toolkit in an Illustrator Plugin

$
0
0

Please ignore this post. The issue was in my own code (of course), I was stomping over some memory that wasn't mine to stomp on.

 

/idiot


Re: Using XMP how do I get the duration of an AVI file ?

$
0
0

Hi lafultz,

    duration is a structure type and stored in dynamic media namespace (XMP_NS_DM). It has two fields "values" and "scale" which are of string type. Please use the following code to check duration is present or not, and if present reading value and scale

 

--------------------------------------------Code to read duration --------------------------------------------------------------------- ----------------

std::string value, scale;

if (meta.DoesPropertyExist(kXMP_NS_DM, "duration")) {

                meta.GetStructField ( kXMP_NS_DM, "duration", kXMP_NS_DM, "value", &value, 0 );

                meta.GetStructField ( kXMP_NS_DM, "duration1", kXMP_NS_DM, "scale", &scale, 0 );

}

---------------------------------------------------------------------- ---------------------------------------------------------------------- ------------------

 

 

    To read the frame rate (stored as videoFrameRate under dynamic media schema). Please use the following code to read it

----------------------------------------Code to read videoFrameRate------------------------------------------------------- ------------------------

           if (meta.DoesPropertyExist(kXMP_NS_DM, "videoFrameRate")) {

                string videoframerate;

                meta.GetProperty ( kXMP_NS_DM, "videoFrameRate", &videoframerate, 0 );

            }

---------------------------------------------------------------------- ---------------------------------------------------------------------- ------------------

Re: Metadata Panel - Drop-Down & Boolean

$
0
0

I'm Looking to do this as well.

Is the Following something that has to be done using Flex?

 

AdobeBridgeIPTCExtensionVlauelist.png

 

Is there a Code sample someplace?

 

This following, doesn't work to create that type of list for a Adobe Bridge custom panel.

 



<xmp_property name='Getty_Terms' category='external' label='$$$/Custom/Property/Getty_Terms=Getty Terms:' type='closedchoice'>

 




<xmp_choice raw_value="" label="(select choice)"/>







<xmp_choice raw_value="Royalty-free" label="Royalty-free"/>







<xmp_choice raw_value="Rights-managed" label="Rights-managed"/>







<xmp_choice raw_value="Royalty-free_Footage" label="Royalty-free_Footage"/>







<xmp_choice raw_value="Rights-ready_Footage" label="Rights-ready_Footage"/>






</xmp_property>

XMP SDK; CC FileInfoPanel Error and Bridge Custom Panel Localization usage

$
0
0

I'm getting the following error when trying to create a custom XMP FileInfoPanel using a localization file.

 

An error occured parsing 'properties.xml':

TypeError: Error #1083

 

 

If I don't Include the localization lines

$$$/Custom/Schema/

or

$$$/Custom/Property/ 

 

in the label=' <but Before;> Design_Element=Design Element:'

 

The File Info Panel works, but gives the label of; Design_Element=Design Element:

 

When making a corresponding copy for Adobe Bridge custom panel. The label reads correctly as: Design Element:.

 

If the Design_Element= part isn't included in the properties.xml for the File info panel, It displays correctly, but not at all for the Custom panel.

 

I assume then the rest of the Localization part has to be used.

 

I added the $$$/Custom/Schema/ and $$$/Custom/Property/  to the xmp_property and xmp_schema Labels as shown in the generic example file.

and set in the manifest.xml file with the line for; localizationFile = "<customPanel>" using our company name.

 

and copied all these lines into a file customPanel_en_US.dat in the folder loc. and renamed it to our CompanyName_en_US.dat.

 

And since all else is the same, for the Localization.. I'm not sure why i'm getting the error.

 

Also can anyone indicate in a manual and page number how the languages informaton works..

 

why $$$ ?

Or /Custom/ for instance are they needed.. or should they really say.

'$$$/Custom/CompanyName/Property/Design_Element=Design Element:'

 

or does it matter as long as $$$/ is used?

 

Any help in this matter would be appreatiated.

 

I'm Using windows 7 and Adobe Creative Cloud and I have Admin on my machine.

place the files at the following paths;

 

CS6 & CC with administrator privileges

Bridge

C:\Program Files\Adobe\Adobe Bridge CC (64 Bit)\Custom File Info Panels\4.0\custom

 

CS6 & CC  without administrator privileges

Info Panel

C:\Users\<User Name>\AppData\Roaming\Adobe\XMP\Custom File Info Panels\4.0\Panels

 

Flash Trust File

C:\Users\<user name>\AppData\Roaming\Macromedia\Flash Player\#Security\FlashPlayerTrust/Trust.cfg

 

The Trust file is named: Trust.cfg  (does it matter what its named? all i could find is it needs to be a .cfg file)

it has in it

C:\Users\<User Name>\AppData\Roaming\Adobe\XMP\Custom File Info Panels\4.0\panels

C:\Program Files\Adobe\Adobe Bridge CC (64 Bit)\Custom File Info Panels\4.0\panels

Re: Metadata Panel - Drop-Down & Boolean

Cannot build XMP-Toolkit-SDK-CC201306

$
0
0

Hi

 

Is this the correct forum to post this question?

 

I am using WIN 7 Professional 64 bit and Visual Studio 2010.

 

I have been trying to produce the Visual Studio project from the GenerateXMPToolkitSDK_win.bat file.

 

It fails repeatedly. It produces the VC10 directory.

 

When I open the solution in VS2010 it has no project files?

 

Note that I do not have Visual Studio running at the time of the build.

 

The following text is the message returned: -

 

 

G:\Downloads\Exif\XMP-Toolkit-SDK-CC-201306\XMP-Toolkit-SDK-CC201306\b uild>REM l

ist of all projects to build

 

G:\Downloads\Exif\XMP-Toolkit-SDK-CC-201306\XMP-Toolkit-SDK-CC201306\b uild>echo

"Update path environment that cmake can be found"

"Update path environment that cmake can be found"

 

G:\Downloads\Exif\XMP-Toolkit-SDK-CC-201306\XMP-Toolkit-SDK-CC201306\b uild>REM s

et PATH=C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windo ws\Syste

m32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Microsoft SQL Server\100\Tool

s\Binn\;C:\Program Files\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\M

icrosoft SQL Server\100\DTS\Binn\;C:\Program Files (x86)\Microsoft ASP.NET\ASP.N

ET Web Pages\v1.0\;C:\Program Files (x86)\Intel\OpenCL SDK\2.0\bin\x86;C:\Progra

m Files (x86)\Intel\OpenCL SDK\2.0\bin\x64;C:\Program Files (x86)\CMake 2.8\bin;

G:\Downloads\Exif\XMP-Toolkit-SDK-CC-201306\XMP-Toolkit-SDK-CC201306\b uild\..\..

\resources\tools\CMakeApp\win\bin

 

G:\Downloads\Exif\XMP-Toolkit-SDK-CC-201306\XMP-Toolkit-SDK-CC201306\b uild>set P

ATH=C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows \System32\

WindowsPowerShell\v1.0\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Bi

nn\;C:\Program Files\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Micro

soft SQL Server\100\DTS\Binn\;C:\Program Files (x86)\Microsoft ASP.NET\ASP.NET W

eb Pages\v1.0\;C:\Program Files (x86)\Intel\OpenCL SDK\2.0\bin\x86;C:\Program Fi

les (x86)\Intel\OpenCL SDK\2.0\bin\x64;C:\Program Files (x86)\CMake 2.8\bin;G:\D

ownloads\Exif\XMP-Toolkit-SDK-CC-201306\XMP-Toolkit-SDK-CC201306\build \..\tools\

cmake\bin

 

G:\Downloads\Exif\XMP-Toolkit-SDK-CC-201306\XMP-Toolkit-SDK-CC201306\b uild>echo

"================= Generate project for XMP build ================="

"================= Generate project for XMP build ================="

 

G:\Downloads\Exif\XMP-Toolkit-SDK-CC-201306\XMP-Toolkit-SDK-CC201306\b uild>call

  1. cmake.bat 64 2010 WarningAsError Dynamic

 

G:\Downloads\Exif\XMP-Toolkit-SDK-CC-201306\XMP-Toolkit-SDK-CC201306\b uild>echo

OFF

64 bit specified

"Generator VS 2010 specified"

"sensible warnings activated"

"Static build off"

CMakeFolder: "vc10/dynamic/windows_x64"

Generator used: Visual Studio 10 Win64

cmake ../../../. -G"Visual Studio 10 Win64" -DXMP_CMAKEFOLDER_NAME=""vc10/dynami

c/windows_x64"" -DCMAKE_CL_64=ON -DCMAKE_ARCH=x64 -DXMP_BUILD_WARNING_AS_ERROR=O

n -DXMP_BUILD_STATIC="Off"

-- The C compiler identification is MSVC 16.0.40219.1

-- The CXX compiler identification is MSVC 16.0.40219.1

-- Check for working C compiler using: Visual Studio 10 Win64

Could not register CMake's Visual Studio macros file 'CMakeVSMacros2.vsmacros' w

hile Visual Studio is running. Please exit all running instances of Visual Studi

o before continuing.

 

CMake needs to register Visual Studio macros when its macros file is updated or

when it detects that its current macros file is no longer registered with Visual

Studio.

 

-- Check for working C compiler using: Visual Studio 10 Win64 -- works

-- Detecting C compiler ABI info

Could not register CMake's Visual Studio macros file 'CMakeVSMacros2.vsmacros' w

hile Visual Studio is running. Please exit all running instances of Visual Studi

o before continuing.

 

CMake needs to register Visual Studio macros when its macros file is updated or

when it detects that its current macros file is no longer registered with Visual

Studio.

 

-- Detecting C compiler ABI info - done

-- Check for working CXX compiler using: Visual Studio 10 Win64

Could not register CMake's Visual Studio macros file 'CMakeVSMacros2.vsmacros' w

hile Visual Studio is running. Please exit all running instances of Visual Studi

o before continuing.

 

CMake needs to register Visual Studio macros when its macros file is updated or

when it detects that its current macros file is no longer registered with Visual

Studio.

 

-- Check for working CXX compiler using: Visual Studio 10 Win64 -- works

-- Detecting CXX compiler ABI info

Could not register CMake's Visual Studio macros file 'CMakeVSMacros2.vsmacros' w

hile Visual Studio is running. Please exit all running instances of Visual Studi

o before continuing.

 

CMake needs to register Visual Studio macros when its macros file is updated or

when it detects that its current macros file is no longer registered with Visual

Studio.

 

-- Detecting CXX compiler ABI info - done

COMMON_BUILD_SHARED_DIR= G:/Downloads/Exif/XMP-Toolkit-SDK-CC-201306/XMP-Toolkit

-SDK-CC201306/build/../build/shared

-- ===================================================================== ======

--  XMPCore64

-- ===================================================================== ======

--  OUTPUT_DIR = G:/Downloads/Exif/XMP-Toolkit-SDK-CC-201306/XMP-Toolkit-SDK-CC2

01306/XMPCore/build/../../public/libraries/windows_x64/$(configuration )

-- ===================================================================== ======

--  XMPFiles64

-- ===================================================================== ======

--  OUTPUT_DIR = G:/Downloads/Exif/XMP-Toolkit-SDK-CC-201306/XMP-Toolkit-SDK-CC2

01306/XMPFiles/build/../../public/libraries/windows_x64/$(configuratio n)

-- ===================================================================== ======

--  XMPToolkitSDK

-- ===================================================================== ======

--  64 bit build is: 1

--  Static build is: Off

--  XMPToolkitSDK

--

--

--  Compiler:

--  CC=C:/Program Files (x86)/Microsoft Visual Studio 10.0/VC/bin/x86_amd64/cl.e

xe

--  CXX=C:/Program Files (x86)/Microsoft Visual Studio 10.0/VC/bin/x86_amd64/cl.

exe

-- ===================================================================== ======

-- Configuring done

Could not register CMake's Visual Studio macros file 'CMakeVSMacros2.vsmacros' w

hile Visual Studio is running. Please exit all running instances of Visual Studi

o before continuing.

 

CMake needs to register Visual Studio macros when its macros file is updated or

when it detects that its current macros file is no longer registered with Visual

Studio.

 

CMake Error at G:/Downloads/Exif/XMP-Toolkit-SDK-CC-201306/XMP-Toolkit-SDK-CC201

306/build/shared/SharedConfig_Common.cmake:132 (add_library):

  Cannot find source file:

 

    G:/Downloads/Exif/XMP-Toolkit-SDK-CC-201306/XMP-Toolkit-SDK-CC201306/ XMPCore

/build/../../third-party/expat/lib/xmlparse.c

 

  Tried extensions .c .C .c++ .cc .cpp .cxx .m .M .mm .h .hh .h++ .hm .hpp

  .hxx .in .txx

Call Stack (most recent call first):

  G:/Downloads/Exif/XMP-Toolkit-SDK-CC-201306/XMP-Toolkit-SDK-CC201306/ XMPCore/b

uild/CMakeLists.txt:192 (AddLibraryAndDependencies)

 

 

CMake Warning:

  Manually-specified variables were not used by the project:

 

    CMAKE_ARCH

    XMP_BUILD_WARNING_AS_ERROR

 

 

-- Build files have been written to: G:/Downloads/Exif/XMP-Toolkit-SDK-CC-201306

/XMP-Toolkit-SDK-CC201306/build/vc10/dynamic/windows_x64

Failed XMP build cmake.

"Exiting CMakeUtils.bat"

Failed  build cmake.

"Exiting cmake.bat"

  1. Failed.

"Exiting cmake_all.bat"

CMake Build Failed.

Press any key to continue . . .

 

Can anyone hjelp me with this?

 

Thanks John

Re: Cannot build XMP-Toolkit-SDK-CC201306

$
0
0

Hi QPR John,

 

>Is this the correct forum to post this question?

Yes It is.

 

>Cannot find source file:

 

 

 

  >  G:/Downloads/Exif/XMP-Toolkit-SDK-CC-201306/XMP-Toolkit-SDK-CC201306/ XMPCore

 

/build/../../third-party/expat/lib/xmlparse.c

 

Looking at the error messages it is clear that the scripts are unable to find expat source file. You have to follow the instructions in “XMP Toolkit Programmer’s Guide” (present in <xmptoolkitroot/docs>)  section “Using the XMPToolkit SDK -Getting started “ to get the expat sources and others if not done already.

If you still see a different error after these changes, do let us know.

 

Thanks

Inder

Re: Cannot build XMP-Toolkit-SDK-CC201306

$
0
0

Inder

 

Thanks for your help so far, perhaps I should have read the "Getting Started Guide" first!

 

I have now been able to create all the VS solutions, when I open them in VS and I try to build the solution I get 45 warnings, samples of which include: -

 

Warning               1              warning C4800: 'XMP_OptionBits' : forcing value to bool 'true' or 'false' (performance warning)                G:\Downloads\Exif\XMP-Toolkit-SDK-CC-201306\XMP-Toolkit-SDK-CC201306\ XMPCore\source\ParseRDF.cpp 458                1              XMPCore

Warning               2              warning C4267: 'argument' : conversion from 'size_t' to 'XMP_Uns32', possible loss of data                G:\Downloads\Exif\XMP-Toolkit-SDK-CC-201306\XMP-Toolkit-SDK-CC201306\ XMPFiles\source\WXMPFiles.cpp                204         1              XMPFiles

Warning               3              warning C4244: '=' : conversion from 'double' to 'float', possible loss of data                G:\Downloads\Exif\XMP-Toolkit-SDK-CC-201306\XMP-Toolkit-SDK-CC201306\ source\XMP_ProgressTracker.cpp                134         1              XMPFiles

Warning               4              warning C4244: 'initializing' : conversion from 'double' to 'float', possible loss of data                G:\Downloads\Exif\XMP-Toolkit-SDK-CC-201306\XMP-Toolkit-SDK-CC201306\ source\XMP_ProgressTracker.cpp                142         1              XMPFiles

Warning               5              warning C4244: '=' : conversion from 'double' to 'float', possible loss of data                G:\Downloads\Exif\XMP-Toolkit-SDK-CC-201306\XMP-Toolkit-SDK-CC201306\ source\XMP_ProgressTracker.cpp                149         1              XMPFiles

 

Similarly if I try to run the solution I get the following error : -

 

Unable to start program 'G:\Downloads\Exif\XMP-Toolkit-SDK-CC-201306\XMP-Toolkit-SDK-CC201306 \build\vc10\static\windows_x64\x64\Debug\ALL_BUILD'.    The system cannot find the file specified.

 

Can you help me with this? I hope it's not something obvious and I don't want to waste your time.

 

One problem I do have is that my programming background is VB.Net and not C++ !

 

Regards John


Re: Cannot build XMP-Toolkit-SDK-CC201306

$
0
0

John

 

Typically it takes the following steps to build and run the Toolkit Samples

  1. 1)      Setup the Environment/Dependencies  - copy expat, Zlib, cmake distributions
  2. 2)      Generate and build XMPToolkit Solutions- Successfully
  3. 3)      Generate and build the Samples - Successfully
  4. 4)      Run the samples

Assuming that you have reached step 3 without any error, you just need to go to the <xmpsdkroot>\samples\target\[windows|windows_x64]\[Debug|release] folder and run the command line sample applications you built in step 3. For info on how to use these sample applications refer “XMP Toolkit Programmer’s Guide” section “XMP Toolkit SDK Overview-> The XMP libraries -> Sample Code and Tools”

 

Hope this helps

Inder

Re: simple xmp query tool

$
0
0

I was traing to extract the clip marker comments of a sequence, as clip markers in premiere are not preserved when clips are added to a sequence. But in the meantime I found that exporting the sequence to AfterEffects does this, so I can easily extract the info with a script from within AE... So for the moment, there's no need anymore for me to dive into XMP, thanks!

Re: How to read AVCHD in XMP SDK sample programs

$
0
0

Prelude and PPro provide the XMP (for .mts files, and all others) through their panel API. Are you writing a panel?

Custom File Info Panel: Bridge Locks Up (trials, tribulations, woes)

$
0
0

o/ all!

 

So I've spent the better part of this morning trying (for what I think is the fifth time this year) to get a custom file info panel installed properly. I've managed to successfully install a generic panel with most of the properties that I'd like in the panel proper, however, I'm having no end of trouble publishing and installing the panels and having them display properly in Bridge CC (64-bit).

 

I've followed the instructions provided in the Programmer's Guide to the letter (yes, including the trust files), and I'm still having issues.

-- System Information --

OS: Windows 7 64-bit

Flash Builder 4.7 (64-bit)

Adobe Bridge CC (64-bit)

-----------

 

Right now, all I'm trying to do is:

Create the flash builder project for an XMP File Info Panel

Publish the file info panel

Confirm the file info panel was installed correctly in Adobe Bridge CC.

 

The process:

1. I create the new project in Flash Builder (I've attempted using the 4.6.0 and 3.6A flex SDKs).

Now, at this point, I'm simply attempting to confirm that everything is hunky-dory with the installation process before I start converting my generic panel into a flash/flex panel; so I'm not modifying any of the files that the wizard created.

 

2. Right-click the root project folder in the leftmost pane in Flash Builder, select XMP>Publish.

 

3. Locate the published panel's output directory that Flash Builder published to

 

4. Copy/paste the published panel's root directory to the following directories:

C:\Users\Erik\AppData\Roaming\Adobe\XMP\Custom File Info Panels\4.0\panels\

C:\Users\Erik\AppData\Roaming\Adobe\XMP\Custom File Info Panels\4.0\custom\

C:\Program Files (x86)\Common Files\Adobe\XMP\Custom File Info Panels\4.0\panels\

C:\Program Files (x86)\Common Files\Adobe\XMP\Custom File Info Panels\4.0\custom\

 

I put the panel definition in all of these folders as per various 'fixes' to what I think my issue is that I've discovered while google-troubleshooting.

 

5. Create a trust file in FlashPlayerTrust folder with the name testPanel36A.cfg (contents listed below):

C:\Users\Erik\AppData\Roaming\Adobe\XMP\Custom File Info Panels\4.0\panels\testPanel36a\bin\testPanel36a.swf

C:\Users\Erik\AppData\Roaming\Adobe\XMP\Custom File Info Panels\4.0\custom\testPanel36a\bin\testPanel36a.swf

C:\Program Files (x86)\Common Files\Adobe\XMP\Custom File Info Panels\4.0\panels\testPanel36a\bin\testPanel36a.swf

C:\Program Files (x86)\Common Files\Adobe\XMP\Custom File Info Panels\4.0\custom\testPanel36a\bin\testPanel36a.swf

 

As far as I know, I can put multiple paths in these .cfg files, but I'm not-at-all confident that this is, in fact, the case.

 

After all this, I fire up bridge, right click an image file, and select FileInfo. The dialog displays fine, and the panel tab appears on the right. Clicking on the panel reveals nothing but a gray area with no content, and Bridge locks up entirely. I can't cancel out of the dialog, and end up having to end the process from Task Manager.

 

My gut tells me that I'm doing something wrong with the trust files, as this seems like the issue that most closely resembles what I'm encountering. Secondarily, It may be the flex SDKs -- I only have the 4.6.0 and the 3.6A SDKs, and the link in the Flash Builder dialog takes me to the sourceforge page for Adobe, and from there, I cannot locate any additional older SDKs to try this with (I've seen posts around saying that people got their panels to work with 3.0, or 3.5).

 

Anyone have ANY insight on this? Seriously at my wits end -- I've tried everything but nothing seems to work . Many thanks,

.e

Re: Custom File Info Panel: Bridge Locks Up (trials, tribulations, woes)

$
0
0

Hi The_Mumm,

     You need to correct content fo the .cfg file (hope your .cfg file is at correct directory i.e. C:\Documents and Settings\<user name>\AppData\Roaming\Macromedia\Flash Player\#Security\FlashPlayerTrust). Yes, I agree that you have followed the documentation and put the path upto .swf file.

 

    Could you please modify the content of the trust file, with the below content (you path have been modified)

C:\Users\Erik\AppData\Roaming\Adobe\XMP\Custom File Info Panels\4.0\panels\testPanel36a\bin\

C:\Users\Erik\AppData\Roaming\Adobe\XMP\Custom File Info Panels\4.0\custom\testPanel36a\bin\

C:\Program Files (x86)\Common Files\Adobe\XMP\Custom File Info Panels\4.0\panels\testPanel36a\bin\

C:\Program Files (x86)\Common Files\Adobe\XMP\Custom File Info Panels\4.0\custom\testPanel36a\bin\

 

Hope everything will work now. If it doesn't work, please put only one path in trust file e.g. "C:\Users\Erik\AppData\Roaming\Adobe\XMP\Custom File Info Panels\4.0\panels" and put the publish panel in this folder.

One more precaution, don't copy, if required move the custom panel from one place to other.

 

Please let me know if you still faces any issue.  Enjoy you new year.

 

 

For your reference, I am following the following steps and everything is working fine

1. Open the Fb7,

2. file->new->project

3. in the new project wizards, select "xmp->custom panel wizard"

4. xmp->publish custom panel

5. Open the .cfg file and added the path (C:\Users\<user name>\appdata\Roaming\Adobe\XMP\Custom File Info Panels\4.0\panels)  where my panel has got published.

6. Ran Bridge CC, panel is there and working fine.

 

One more variations I did is, moved custom panel from C:\Users\<user name>\appdata\Roaming\Adobe\XMP\Custom File Info Panels\4.0\panels to C:\Program Files\Adobe\Adobe Bridge CC (64 Bit)\Custom File Info Panels\4.0\panels  (the location of the custom file info panel inside bridge).

 

 

 

      For you doubts I tried with flex SDK 3.3A and 3.6a both worked fine. As in forum you have written that you don't have any other sdk. If you like please go on the following links for older SDKs "http://sourceforge.net/adobe/flexsdk/wiki/Download%20Flex%203/"

 

-Sunil

Custom File Info Panels in PS Elements?

$
0
0

I've created quite a few custom panels for CS, but the question was recently put to me as to whether it was possible to incorporate a previously built custom panel into Photoshop Elements. Anybody know for sure? Unfortunately don't have a copy of Elements on hand to test this out.

MSVC solution files not generated

$
0
0

Edit 2

The current problem has been resolved.

It was due to a missing service pack for MSVC 2010.

There are still other problems thoug after fixing this issue and I will start I new question for it.

 

Edit:

This seems to be a MSVC problem - it shows up in another context - will try to resolve and the report back

 

 

After a recent disk crash I have to re-install the XMP SDK and try to regenerate  the libraries, but I have run into a problem.

After downloading the SDK and CMake, installing the third-party libraries zlib & expat, when I run the file

F:\pkg\C++\XMP-Toolkit-SDK-CC201306\build>GenerateXMPToolkitSDK_win.bat

and select 3 to "Generate XMPSDKToolkit Static  Win32"

I get the following in the file CMakeError.log

Determining if the C compiler works failed with the following output:

Change Dir: F:/pkg/C++/XMP-Toolkit-SDK-CC201306/build/vc10/static/windows/CMakeFiles/CMakeTmp

 

Run Build Command:C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe cmTryCompileExec1933478064.vcxproj /p:Configuration=Debug /p:VisualStudioVersion=10.0

Microsoft (R) Build Engine version 4.0.30319.18408

 

[Microsoft .NET Framework, version 4.0.30319.18408]

 

Copyright (C) Microsoft Corporation. All rights reserved.

 

 

 

Build started 07/01/2014 1:05:47 PM.

 

Project "F:\pkg\C++\XMP-Toolkit-SDK-CC201306\build\vc10\static\windows\CMakeFiles\CMakeTmp\cmTryC ompileExec1933478064.vcxproj" on node 1 (default targets).

 

PrepareForBuild:

 

  Creating directory "cmTryCompileExec1933478064.dir\Debug\".

 

  Creating directory "F:\pkg\C++\XMP-Toolkit-SDK-CC201306\build\vc10\static\windows\CMakeFiles\CMakeTmp\Debug\ ".

 

InitializeBuildStatus:

 

  Creating "cmTryCompileExec1933478064.dir\Debug\cmTryCompileExec1933478064.unsuccessfulbuild" because "AlwaysCreate" was specified.

 

ClCompile:

 

  C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\CL.exe /c /Zi /W3 /WX- /Od /Ob0 /Oy- /D WIN32 /D _WINDOWS /D _DEBUG /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Fo"cmTryCompileExec1933478064.dir\Debug\\" /Fd"cmTryCompileExec1933478064.dir\Debug\vc100.pdb" /Gd /TC /analyze- /errorReport:queue testCCompiler.c

 

  Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 16.00.30319.01 for 80x86

 

  Copyright (C) Microsoft Corporation.  All rights reserved.

 

 

 

  cl /c /Zi /W3 /WX- /Od /Ob0 /Oy- /D WIN32 /D _WINDOWS /D _DEBUG /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Fo"cmTryCompileExec1933478064.dir\Debug\\" /Fd"cmTryCompileExec1933478064.dir\Debug\vc100.pdb" /Gd /TC /analyze- /errorReport:queue testCCompiler.c

 

  testCCompiler.c

 

ManifestResourceCompile:

 

  C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\bin\rc.exe /nologo /fo"cmTryCompileExec1933478064.dir\Debug\cmTryCompileExec1933478064.exe.embed.manifest.re s" cmTryCompileExec1933478064.dir\Debug\cmTryCompileExec1933478064_manifest.rc

 

Link:

 

  C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\link.exe /ERRORREPORT:QUEUE /OUT:"F:\pkg\C++\XMP-Toolkit-SDK-CC201306\build\vc10\static\windows\CMakeFiles\CMakeTmp\D ebug\cmTryCompileExec1933478064.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /ManifestFile:"cmTryCompileExec1933478064.dir\Debug\cmTryCompileExec1933478064.exe.interm ediate.manifest" /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /DEBUG /PDB:"F:/pkg/C++/XMP-Toolkit-SDK-CC201306/build/vc10/static/windows/CMakeFiles/CMakeTmp/D ebug/cmTryCompileExec1933478064.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"F:/pkg/C++/XMP-Toolkit-SDK-CC201306/build/vc10/static/windows/CMakeFiles/CMakeTm p/Debug/cmTryCompileExec1933478064.lib" /MACHINE:X86 cmTryCompileExec1933478064.dir\Debug\cmTryCompileExec1933478064.exe.embed.manifest.res

 

  cmTryCompileExec1933478064.dir\Debug\testCCompiler.obj  /machine:X86 /debug

 

LINK : fatal error LNK1123: failure during conversion to COFF: file invalid or corrupt [F:\pkg\C++\XMP-Toolkit-SDK-CC201306\build\vc10\static\windows\CMakeFiles\CMakeTmp\cmTryC ompileExec1933478064.vcxproj]

 

Done Building Project "F:\pkg\C++\XMP-Toolkit-SDK-CC201306\build\vc10\static\windows\CMakeFiles\CMakeTmp\cmTryC ompileExec1933478064.vcxproj" (default targets) -- FAILED.

 

Build FAILED.

 

"F:\pkg\C++\XMP-Toolkit-SDK-CC201306\build\vc10\static\windows\CMakeFiles\CMakeTmp\cmTryCo mpileExec1933478064.vcxproj" (default target) (1) ->

 

(Link target) ->

 

  LINK : fatal error LNK1123: failure during conversion to COFF: file invalid or corrupt [F:\pkg\C++\XMP-Toolkit-SDK-CC201306\build\vc10\static\windows\CMakeFiles\CMakeTmp\cmTryC ompileExec1933478064.vcxproj]

 

    0 Warning(s)

 

    1 Error(s)

 

Time Elapsed 00:00:27.25

 

So I am stuck - any help or hints, preferrable a solution will be most appreciated

TIA


Re: How to read AVCHD in XMP SDK sample programs

$
0
0

No, I am writing a C# application which utilizes the SDK via a wrpper around the C++.  I utilize the SDK to extract metadata for my program.

 

Bill

Re: How to read AVCHD in XMP SDK sample programs

Re: simple xmp query tool

Re: CS 6 Generic File Info - not keeping checkboxes

$
0
0

I have Adobe Creative Cloud (CC) now and I can attest that the problem still exists and the workaround still works. This is very disconcerting however. I know guys who are not upgrading from CS5 because of this problem. Big companies with large installations. I would hope that this gets fixed soon.

 

Regards,

David

Include custom panel into the file

$
0
0

Hi

 

I created custom panel. It works great. But is it possible to include scheme of this panel to the file, so that the file can be opened on another computer with this custom panel (without additional xml of custom schema on this machine)?

 

Thanks

Viewing all 801 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>