Problem to create a package the download of the source faild

I want to create package for php-gtk:
http://gtk.php.net/
http://www.kksou.com/php-gtk2/index.php
http://www.kksou.com/php-gtk2/articles/ … -linux.php
http://gtk.php.net/download.php
I did this PKGBUILD:
# Contributor: Nadav Vinik <nadavvin at gmail.com>
pkgname=php-gtk
pkgver=2.0.0a
pkgrel=1
pkgdesc="GTK+ binding to PHP"
depends=('')
source=(http://gtk.php.net/do_download.php?download_file=php-gtk-2.0.0alpha.tar.gz)
url="http://gtk.php.net"
build() {
cd $startdir/src/$pkgname-$pkgver
tar xvzf php-gtk-2.0.0alpha.tar.gz
cd php-gtk-2.0.0
./buildconf --with-phpize=/usr/local/php-5.1.6/bin/phpize
./configure --prefix=/usr/local/php-gtk-2.01 --enable-sourceview --with-php-config=/usr/local/php-5.1.6/bin/php-config
make || return 1
make prefix=$startdir/pkg/usr install
The problem that It failed:
HTTP request sent, awaiting response... 416 Requested Range Not Satisfiable
The file is already fully retrieved; nothing to do.
==> ERROR: Failed to download do_download.php?download_file=php-gtk-2.0.0alpha.tar.gz
==> Aborting...
Before that it download, however it failed immediately after it download.
What is the problem?

Snowman wrote:
Install pkgconfig and add it as a makedepends. That should fix the build problem.
In the configure line, change --prefix=/usr/bin to --prefix=/usr
The PKGBUILD is also missing an arch, licence and md5sums fields.
thanks it work
I found a list of dependencies here:
http://www.kksou.com/php-gtk2/articles/ … -linux.php
# Contributor: Nadav Vinik <nadavvin at gmail.com>
pkgname=php-gtk
pkgver=2.0.0alpha
pkgrel=1
pkgdesc="GTK+ binding to PHP"
depends=('php>5.1.6' 'gtk' 'glib>2.6.0' 'libpng>1.2.8' 'freetype>2.2.1' 'fontconfig>2.4.0' 'cairo>1.2.4' 'pango>1.14.7' 'atk>1.9.1' 'libgnomeprint>2.12.1' 'gtksourceview>1.6.0' 'pkgconfig>0.21')
source=(http://gtk.php.net/distributions/php-gtk-2.0.0alpha.tar.gz)
url="http://gtk.php.net"
build() {
cd $startdir/src/$pkgname-$pkgver
./buildconf --with-phpize=/usr/bin/phpize
./configure --prefix=/usr --enable-sourceview
--with-php-config=/usr/bin/php-config
make || return 1
make prefix=$startdir/pkg/usr install
But I get:
==> Making package: php-gtk 2.0.0alpha-1 (Thu Mar 8 10:45:27 IST 2007)
==> Checking Runtime Dependencies...
==> Missing Dependencies:
==>
requires: php>5.1.6
requires: glib>2.6.0
requires: libpng>1.2.8
requires: freetype>2.2.1
requires: fontconfig>2.4.0
requires: cairo>1.2.4
requires: pango>1.14.7
requires: atk>1.9.1
requires: libgnomeprint>2.12.1
requires: gtksourceview>1.6.0
requires: pkgconfig>0.21
==>
I follow this explanation:
* depends: This should contain an array of package names that need to be installed before this program can be run, separated by spaces. The names can optionally be enclosed in single quotes (apostrophes) to prevent possible shell quoting problems, and the array should be enclosed in round brackets. Sometimes a program requires a minimum version of a dependency; In that case, you might want to use the mathematical "larger or equal than" operator, and enclose the whole construct in quotes. Here's an example to add a dependency on the glibc package, and the slang library of at least version 1.8.0: depends('glibc' 'slang>1.8.0')
From here
What is the problem?
Does GTK+ is part of the gtk package?
I didn't found package of GTK+.
Another problem.
Although, it successfully comple and build, The tar.gz file contain only two files FILELIST and PKGINFO
What is the problem?
Last edited by nadavvin (2007-03-08 09:13:49)

Similar Messages

  • Problem with creating links with the WPC (SP14)

    Hi,
    I have a problem creating links with the WPC (SP14): When I want to create internal links (Browse and select the target item) via the right button (choosing a website as a reference link). If I do so I encounter the problems either that the linked site (outside the WPC) shows a blue background and/ or has no navigation frame (on the left side & no breadcrumb-navigation on top).
    If I create links with the left button in the WPC via URLs I have the problem with the inserted URL, because sometimes (I don't know why und when) some parts of the code in the URL changes, so that the linked Website is empty (besides the navigation fram - the content isn't displayed anymore). To me it looks like as if the originally website cannot be "found" anymore.
    Does anyone has the same problems and is eventually able to help me? This would be really great. Thanks!

    Hi,
    you have also to deploy the following file from Service Marketplace:
    Patch for SP14 for KMC WEB PAGE COMPOSER 7.00
    Than it will works. The best way is you deploy WPC SP 15.
    If you want i can send you this file via email.
    regards,
    Sharam
    Edited by: Seed mopo on Apr 28, 2008 11:45 AM

  • [SOLVED] Creating PKGBUILDS where the source URL does not have version

    I am trying to create a a PKBUILD for idevsutil which is provided by IDrive for backing up into their cloud. The archive provided by them contains just a binary and a readme. Now the source URL, http://evs.idrive.com/download/download … inux64.zip does not include the version number. So looks like they are updating the same file for every version. In case they update the version the checksum should fail which should prevent mismatch in dev versioning and what gets installed. But are there any best practices for such cases when we write PKGBUILD?
    Last edited by nsmathew (2013-12-28 16:22:02)

    Trilby wrote:
    The content provided by the source url for version-control packages is also always changing, yet the PKGBUILDS don't need to.  The key for these is to use the 'SKIP' entry in the checksum variable.  The packages must also have the version control system appended to the title (eg package-git).
    You certainly could make a package-dev which skipped the checksum.  However, this would mean user's of the PKGBUILD would be downloading a random unchecked binary from someone's idrive site.  This seems like a very bad idea.
    My idea was to not allow for the installation of the software if the upstream version changes which the checksum should take care off. Will then update the PKGBUILD with the new version and checksum.
    In terms of the binary, it is the officially provided binary by IDrive and the URL points to the same.
    graysky wrote:Don't think you can do much with that.  I would send an email requesting a versioned archive explaining that you are packing their software for a linux distribution.
    I have already requested for the license info on their dev forums, let me also check with them if a versioned archive is available. Thanks.

  • I am unable to watch any tv channel due to the problem that it says is the source code is protected by html guardian. how to solve this problem?

    when i tried to watch a tv channel on livetvchannelsfree.in it says that the source code is protected by html guardian. in firefox 3.6 beeta5 i did not come across this problem. but now in latest version i am unable to watch any tv channel. canyou please tell me how to solve this problem?

    Forgotten Passcode or device disabled after entering wrong passcode

  • Problem while creating setup package

    Hi all,
    A week i created a setup package With SP18 0.0 . Everything worked fine..
    I download the Sca file for NWMADMIN AND NWMCLIENT and
    Today i deployed Patch 0.2  to NWMADMIN and Patch 0.6 to NWMCLIENT .
    I am getting these errors..
    0050 tc.mobile.admin.bl  170005 20070327 Error while trying to save the download url in setup package
    0050 tc.mobile.admin.bl.setup  170005 20070327 Error while trying to create the cab archive for setup package.
    0050 tc.mobile.admin.bl.setup  170005 20070327 Error while trying to create a cab file for setup package.
    0050 CAB CREATION LOG  170004 20070327 Error: Required file "D:\cabwiz.ddf" not found.
    Thanks and Regards
    Neha Kapoor

    Hi Prashantha,
    I could download SDK for Windows Mobile 2003-based Pocket PCs  from site http://www.microsoft.com/downloads/details.aspx?FamilyID=9996b314-0364-4623-9ede-0b5fbb133652&displaylang=en&Hash=%2fiQ91xWkO3zOCMv67Sphd8Q0HdCZtTMdWz3Ec5iPNq7%2fhrGF7rmyOcGv3trXOdGA8c6Qyc%2bVOlTpsmrahqFb5A%3d%3d.
    Now should i follow the steps given in http://help.sap.com/saphelp_nw04/helpdata/en/45/1eb142a174c811e10000000a1550b0/frameset.htm
    And create a Cabwiz file . Can i do this on my pc and zip the file and send it to basis and copy it on server or this should  be done on server itself.
    Thanks and Regards
    Neha Kapoor

  • Problem auto-creating tables with the IBFBS sample

    Hello,
    I'm fairly new to JDeveloper and OC4J and am trying to configure the new Financial Brokerage Service (IBFBS) sample to run on my system. I followed all of the setup instructions but have had problems getting the application to work. I've worked through a few issues, but I'm stuck on this one. When deploying/running the application to the JDev embedded OC4J an error occurs when trying to auto-create the tables for some of the EJBs. The error messages are all similar to this:
    "Auto-creating table: create table UserAccount_file:_M:_Ja_rfpkl9 (accountNumber NUMBER not null primary key, password VARCHAR2(255) null, firstName VARCHAR2(255) null, lastName VARCHAR2(255) null, organization VARCHAR2(255) null, address VARCHAR2(255) null, city VARCHAR2(255) null, state VARCHAR2(255) null, country VARCHAR2(255) null, phone VARCHAR2(255) null, accountBalance FLOAT null, email VARCHAR2(255) null, userType VARCHAR2(255) null, linesPerPage NUMBER null, alertMode VARCHAR2(255) null, mobileEmail VARCHAR2(255) null)
    Error creating table: ORA-00922: missing or invalid option"
    The app fails to start with an Ora message "Table or view does not exist"
    I think it's due to the colons in the table name, but how do I change the name of the table it's trying to create?
    I'm running JDeveloper 9.0.3 preview and 9.2.0.1.0 (patchset 1 applied) database all locally on a Windows XP SP1 machine.
    Any help appreciated.
    Nick

    Hi Nick,
    Firstly, regret for the late response.
    I guess what you are trying to do is run the Sample from JDeveloper itself. But this cannot be done, you have to deploy the
    sample to the embedded OC4J(<JDEV_HOME>/j2ee/home) bundled with JDev and run the sample from embedded OC4J.
    Refer to http://otn.oracle.com/sample_code/tutorials/fbs/over/setup.htm and follow the steps to deploy to OC4J.
    Curious to know if you were able to run it.
    Regards
    Elango.
    Hello,
    I'm fairly new to JDeveloper and OC4J and am trying to configure the new Financial Brokerage Service (IBFBS) sample to run on my system. I followed all of the setup instructions but have had problems getting the application to work. I've worked through a few issues, but I'm stuck on this one. When deploying/running the application to the JDev embedded OC4J an error occurs when trying to auto-create the tables for some of the EJBs. The error messages are all similar to this:
    "Auto-creating table: create table UserAccount_file:_M:_Ja_rfpkl9 (accountNumber NUMBER not null primary key, password VARCHAR2(255) null, firstName VARCHAR2(255) null, lastName VARCHAR2(255) null, organization VARCHAR2(255) null, address VARCHAR2(255) null, city VARCHAR2(255) null, state VARCHAR2(255) null, country VARCHAR2(255) null, phone VARCHAR2(255) null, accountBalance FLOAT null, email VARCHAR2(255) null, userType VARCHAR2(255) null, linesPerPage NUMBER null, alertMode VARCHAR2(255) null, mobileEmail VARCHAR2(255) null)
    Error creating table: ORA-00922: missing or invalid option"
    The app fails to start with an Ora message "Table or view does not exist"
    I think it's due to the colons in the table name, but how do I change the name of the table it's trying to create?
    I'm running JDeveloper 9.0.3 preview and 9.2.0.1.0 (patchset 1 applied) database all locally on a Windows XP SP1 machine.
    Any help appreciated.
    Nick

  • Problem with creating Operation with the BAPI_ROUTING_CREATE

    I try to create a routing with operations attached to the default sequence with the BAPI_ROUTING_CREATE, via an external rfc-program.
    I have no problems to transfer the Task Header und the MaterialTaskAllocation, but the transfer of the operation allways fails, without an error message. The system creates the Routing without any operation.
    Are there some additional fields needed for the tranfer of an operation, in the online documentation there is only
    the field OPERATION_ID defined as needed.
    Thank's for any help
    Jörg Sloksnaitis

    I'll share my code snippet since I got this kind of working this morning. The following code with hard-coded values works and is a fairly simple and straightforward Routing. This may be something you can build on.
    Task List Header
      w_bapi1012_tsk_c-VALID_FROM = sy-datum.
      w_bapi1012_tsk_c-VALID_TO_DATE = '99991231'.
      w_bapi1012_tsk_c-PLANT =  zzplant.
      w_bapi1012_tsk_c-LOT_SIZE_FROM = '1'.
      w_bapi1012_tsk_c-LOT_SIZE_TO = '99999999'.
      w_bapi1012_tsk_c-TASK_MEASURE_UNIT = 'EA'.
      w_bapi1012_tsk_c-TASK_LIST_STATUS = '4'.
      w_bapi1012_tsk_c-TASK_LIST_USAGE = '1'.
      append w_bapi1012_tsk_c to t_bapi1012_tsk_c.
    Material Fields
      w_bapi1012_MTK_C-material = zzmaterial.
      w_bapi1012_mtk_c-plant    = zzplant.
      w_bapi1012_mtk_c-VALID_FROM = sy-datum.
    w_bapi1012_mtk_c-VALID_TO_DATE = '99991231'.
      append w_bapi1012_mtk_c to t_bapi1012_mtk_c.
    Operation
      w_bapi1012_opr_c-ACTIVITY = '9000'.
      w_bapi1012_opr_c-CONTROL_KEY = 'RP02'.
      w_bapi1012_opr_c-WORK_CNTR = ' '.
      w_bapi1012_opr_c-PLANT = zzplant.
      w_bapi1012_opr_c-DESCRIPTION  = 'Test Operation'.
      w_bapi1012_opr_c-BASE_QUANTITY = '1'.
      w_bapi1012_opr_c-OPERATION_MEASURE_UNIT = 'EA'.
      w_bapi1012_opr_c-VALID_FROM = sy-datum.
      w_bapi1012_opr_c-VALID_TO_DATE = '99991231'.
      w_bapi1012_opr_c-DENOMINATOR = '1'.
      w_bapi1012_opr_c-NOMINATOR = '1'.
      append w_bapi1012_opr_c to t_bapi1012_opr_c.
    Thanks,
    Tim Stadler
    Menasha Corporation

  • Problem by creating table in the SHC Web-based Development Workbench

    Dear all,
    I'm facing an error by creating a new table with a file within a XS app.
    file name: new.hdbtable
    table.schemaName = "NEO_xxxxxxxxxxxxxxxxxxxxx";
    table.tableType = COLUMNSTORE;
    table.columns = [
        {name = "id"; sqlType = INTEGER; nullable = false;},
        {name = "text"; sqlType = SHORTTEXT;}
    table.primaryKey.pkcolumns = ["id"];
    The given message:
    Error while activating:
    Repository: Internal error during statement execution, please see the database error traces for additional details;sql syntax error: incorrect syntax near "NULL": line 1 col 112 (at pos 112) at qp_gram.y:40123,ALTER TABLE "NEO_xxxxxxxxxxxxx"."s000xxxxxxxxxxtrial.xxxxxxxx.new.data::new" ADD ("text" SHORTTEXT NULL)
    SHORTTEXT is allowed column type, but I'm still receiving the message. As soon as I change the type to TEXT the table is successfully activated.
    Is there any specific reason for this?
    Thanks & Regards,
    Martin

    HI Martin
    Even I'm facing the same issues did you resolve it???

  • Problem in creating template for the accounting transactions

    Hi,
    suppose for making an entry through fb50 we have to enter g/l a/c no. in that particular field but if some one does not want his end user to make an entry to this field other than putting an entry through his end user he wants system to take the required g/l a/c by default is it possible by creating template for that particular postings? if yes how to generate the template? i have tried to make a template through the recurring entries but not succeeded in that , so please help me.
    Thanking You
    santosh rothe
    9421542585

    You can create a template with a particular account code string from within FB50.
    Make sure you have the tree turned on (Tree On/ Tree Off button toggles display).
    Once you have entered the standard coding, right click on the Account Assignment Template folder to get a popup menu. Select "Save Account Assignment Template". A dialog box will ask you to name the template.
    You can then instruct users to use this template to record this type of transaction.
    However, this does not prevent the user from doing direct entry or changing account code strings. If you have a situation where for a particular combination of accounting elements, whether header or detail, for which the GL should always be a particular value, you can create a substitution rule in IMG which will automatically populate the GL field with the specific GL account value. The IMG transaction is OBBH.

  • Problems of Creating Indexes in the ProcessChain

    Hi, Experts!
    When I dragged the infopackage of updating data into InfoCube, there are two deleting index processes comes out,one is deleting index with InfoCubes, the other one is deleting index with InfoPackages.
    Then the question comes: what the difference between the two processes? Do I need to have the two processes in the process chain at the same time?
    Does anyone help me?
    Thx in advance!

    Hi,Siggi !
    Thank you!
    But what the diffence between them?
    Does the ODS attribute to the problem?
    Are there any problems if i take the two together?
    Could please give me some more info?

  • Problem in deploying and packaging the application and web component.......

    i am new to j2ee!! i am using sun application server 8 2005Q1(for j2ee)
    i have deployed my application successfully!!!!!
    yet i found an error(404) when i called it thro my web browser
    i am using oracle as my back end
    anybody plz help me as soon as possible.........

    Hi,
    I am not sure what some of your phrases mean but i want to clarify a couple of things.
    0) Be happy to make the switch
    1) SJAS contains a webserver, where iPlanet appserver did not and one was forced to put a webserver in front of the appserver.
    2) The iplanet webserver plugin was configured to forward all request which have /NasApp to the appserver, using the KCP protocol, SJAS LB plugin is configured on a webapplication context root base using http and or https protocol.
    3) If your logic needs the HTML pages (which is doubtful in a proper design) the pages must reside on the appserver.
    4) Deployment to SJAS can be done through asadmin CLI, deploytool or webbased admin GUI instead of just putting the EAR in the autodeploy directory.
    HTH Robert

  • Distribution manager failed to process package - the source directory does not exist

    Hi,
    I have the following behaviour:
    A Software Update Deployment Package is not distributing because of the following error:
    I have found the following query (http://blogs.technet.com/b/ken_brumfield/archive/2013/01/10/troubleshooting-sccm-software-update-deployment-package-distribution-due-to-missing-directories.aspx) to
    determine which update is missing.
    It is about update KB978601. If we search this update in the console, we see this:
    The update is not required, not downloaded, not deployed and superseeded.
    If we look into the members of the Update deployment package, we can't find this update.
    When I was digging into the database, I found this:
    SELECT
    distinct cp.Content_ID,
    cp.ContentSubFolder,cp.PkgID,
    con.ContentProvisioned
    FROM
    [dbo].[vCI_ContentPackages] cp
    INNER
    JOIN [dbo].[CI_ConfigurationItemContents]cic
    ON cp.Content_ID
    = cic.Content_ID
    inner
    join dbo.v_CIContents_All
    con on con.Content_ID
    = cp.Content_ID
    where cp.PkgID
    =
    'XXX002BA'
    and cp.ContentSubFolder
    =
    '39b46f0a-7244-48a6-b795-119ac74009f9'
    which resulted in:
    Content_ID ContentSubFolder PkgID ContentProvisioned
    16828355 39b46f0a-7244-48a6-b795-119ac74009f9 BP1002BA 1
    I found the "ContentProvisioned = 1 " a little bit strange.
    So, my question is:
    Why SCCM is thinking of distributing the content although it is not downloaded or deployed and how can we fix this?
    Has it something todo with the "ContentProvisioned" or is it something else?
    Thanks,
    Sem

    I can tell you why CM wants to distribute it, but the easiest way would be downloading that patch thus adding it to the package (so that it can be distributed) and remove it afterwards.
    Torsten Meringer | http://www.mssccmfaq.de

  • Could I create exception but the source based from 2 columns ?

    Hi All,
    Greeting.
    In my tables, if right now, I have 4 columns, 2 Char and 2 KF.
    e.g. Acct# | Cost Center | Sales in 01.2009 | KF 1 |
    Could I create exception like this ??
    I will highlight RED if Sales in 01.2009 > $ 1000  and KF 1 has value 0.
    Could I do like this ?
    How do I create this ?
    Thanks a lot and have a good day,
    Best regards,
    Daniel N.

    Hi,
    You can do one thing.
    Create one formula. and use conditions in it.
    For e.g.
    ( Sales > 1000) * (KF1 = = 0) * 0
    ..This will check if Sales is greater then 1000 and value in KF1 is zero, then its value will be zero.
    And create an exception on this. i.e. if the value of this formula is zero then , highlight it with RED.
    And in display tab when you create an exception mark "Affect all structure element".
    Hope this will help.
    - Jaimin

  • Problem in Creating Certificate in java

    Dear all
    I have problem in creating certificate using the java lang
    I created the keystore as shown in my code:
    but i still hasing problem with the code as u can see in the pics...
    Please help me to create my digitale certificate because i have to verifying it later... and i am still having no idea how i am going to verify the certificate.....
    Thanks in advance..
    Mariah
    Message was edited by:
    screen83

    i am sorry the picture can't be displayed
    anywhy, this the the code:
    1KeyStore ks = KeyStore.getInstance("JKS");
    2               char[] password = getPassword();
    3               java.io.FileInputStream fis =
    4               new java.io.FileInputStream("keyStoreName");
    5               ks.load(fis, password);
    6               fis.close();
    7               // get my private key
    8               KeyStore.PrivateKeyEntry pkEntry = (KeyStore.PrivateKeyEntry)
    9               ks.getEntry("privateKeyAlias", password);
    10               PrivateKey myPrivateKey = pkEntry.getPrivateKey();
    11
    12               // save my secret key
    13               javax.crypto.SecretKey mySecretKey;
    14               KeyStore.SecretKeyEntry skEntry =
    15               new KeyStore.SecretKeyEntry(mySecretKey);
    16               ks.setEntry("secretKeyAlias", skEntry, password);
    17
    18               // store away the keystore
    19               java.io.FileOutputStream fos =
    20               new java.io.FileOutputStream("newKeyStoreName");
    21               ks.store(fos, password);
    22               fos.close();
    and I have error at line 2 when I am calling rhe method getPassword();
    and at line 9 when calling the method getEntry()
    and at line 16 when calling the mthod setEntry
    Thanks
    Mariah
    Message was edited by:
    screen83

  • Problem in creating IR through BAPI_INCOMINGINVOICE_create BAPI

    Hi,
    Some problem in creating IR through the BAPI BAPI_INCOMINGINVOICE_create. I am able to see the IR number after executing the BAPI but unable to see the IR number in the table. The IR number is not getting updated in the database table even though we are doing the commit work after executing the BAPI. Could anyone help me out with this error.
    Regards,
    Ram

    First of all I am assuming that you did not get any error in the BAPI return structure (even though you see document number populated).
    Secondly,  I guess you tested the BAPI with SE37 and did not get any error (functionally there are a number of BAPIs available to post an invoice and it is important to figure out the correct BAPI - e.g. PO, non-PO invoice, invoice as a GL entry only, etc.).
    If that is not true (there is some error in posting), since during the BAPI call the next document number is obtained as a first step, you will see the document number but subsequently if for some reason it is not posted, you will see the result as you mentioned (no data in the database).
    If you are using correct BAPI and have no errors, then  in ABAP program make sure to call 'BAPI_TRANSACTION_COMMIT' after the BAPI call to post invoice.
    For non-SAP external system, you need not have to call the commit BAPI but just closing the connection to SAP will help.

Maybe you are looking for

  • Windows Phone and Windows 8 Mail App not sending email from Reply/Forward

    I have recently upgraded from Windows 8 to 8.1. After a successful upgrade I configured the Windows 8 Mail app to also sync with Exchange (2010 in house server). On my Windows Phone (Nokia Lumia 800) I have the same account configured. This resulted

  • Purchased music now "unauthorized" on computer and won't transfer to iPod

    Hardware: I have a 60 GB video ipod for 7 months, have had the same computer for 3 years, and same operating system for 2 months. Timeline: Last week everything was working with my iPod and my entire iTunes library was successfully updated to my ipod

  • Suggestion required for with or without BPM

    I have a requirement IDOC-XI-SOAP. I am using multimapping 1:N  one idoc gets spilt into say three wsdl, A B and C. My first requirement is if A fails then B and C should not be sent. If I use only EOIO without BPM then I will need to identify B and

  • Version management in BOR object

    Hi Gurus, I have a custom BOR object and i am checking it from SWO1 transaction.But i am not able to do version management for the Z BOR object.Kindly provide the way to do the same. Thanks and Regards Sudipto Sinha

  • Canon XF camera metadata in CS6

    Hello, Can  you see camera metadata, like Shutter Speed, F Number, Gain, Color Temperature etc. from Canon XF files, directly in Premiere Pro? I can't find this properties in Metadata Display menu.