Keynote on Ipad: how to insert a Video from "Videos"

Hi all,
I just have bought Keynote for iPad as to prepare effective presentations and I am completely blocked: I need to use the videos I have uploaded from my PC into the "Videos" folder (from iTunes), but it seems that Keynote is just able to "see" the media library under "Images folder" (photos & videos).
I am completely halted, since I cannot find event the way to transfer the videos from "Videos" to "Images".
please help!
thanks

alessandrofrompavia wrote:
Hi,
The target videos are stored into Videos folder, which is syncronized through iTunes
the folder mapped by Keynote clicking into the media icon on the ipadis instead the Images folder
the Videos are not protected, since I have personally built from my PC...
Do you see any way to make the videos mapped by Keynote?
Thanks a lot
Hi Guys,
sorry to bother, but... anyone who has an idea on this?
Thanks

Similar Messages

  • How to insert the data from XML to a table

    Hi,
    I'm using Oracle 10g Express Edition
    I need help in How to insert the data from XML file into the table.
    Below is the example i'm working on..
    I have create ridb user with below mentioned privileges:
    Account Status Locked Unlocked
    Default Tablespace: USERS
    Temporary Tablespace: TEMP
    User Privileges :
    Roles:
    CONNECT
    RESOURCE
    Direct Grant System Privileges:
    CREATE DATABASE LINK
    CREATE MATERIALIZED VIEW
    CREATE PROCEDURE
    CREATE PUBLIC SYNONYM
    CREATE ROLE
    CREATE SEQUENCE
    CREATE SYNONYM
    CREATE TABLE
    CREATE TRIGGER
    CREATE TYPE
    CREATE VIEW
    & table is created TRIALZIPCODES below mentioned is the DDL:
    CREATE TABLE TRIALZIPCODES
    STATE_ABBR VARCHAR2(20) NOT NULL
    , ZIP_CODE NUMBER(10, 0) NOT NULL
    , ZIP_CODE_EXT VARCHAR2(20)
    Below is the XML FILE: which is stored in C:\OracleProject Folder
    File name: trial.xml
    <?xml version="1.0" ?>
    <metadata>
    - <Zipcodes>
    - <mappings Record="4">
    <STATE_ABBREVIATION>CA</STATE_ABBREVIATION>
    <ZIPCODE>94301</ZIPCODE>
    </mappings>
    - <mappings Record="5">
    <STATE_ABBREVIATION>CO</STATE_ABBREVIATION>
    <ZIPCODE>80323</ZIPCODE>
    <ZIP_CODE_EXTN>9277</ZIP_CODE_EXTN>
    </mappings>
    </Zipcodes>
    </metadata>
    PL/SQL Procedure:which i'm trying to execute from SQLDeveloper
    create or replace
    PROCEDURE TRIAL AS
    BEGIN
    DECLARE
    -- declare attributes
    charString varchar2(80);
    finalStr varchar2(4000) := null;
    rowsp integer;
    v_FileHandle UTL_FILE.FILE_TYPE;
    l_context_handle dbms_xmlgen.ctxHandle;
    insCtx DBMS_XMLStore.ctxType;
    begin
    -- DBMS_XMLGEN.setRowTag ( ctx IN ctxHandle, rowTag IN VARCHAR2);
    -- DBMS_XMLGEN.setRowSetTag ( ctx IN ctxHandle, rowSetTag IN VARCHAR2);
    -- the name of the table as specified in our DTD
    DBMS_XMLGEN.SETROWSETTAG(l_context_handle,'zipcodes');
    -- the name of the data set as specified in our DTD
    DBMS_xmlgen.setRowTag(l_context_handle,'mappings');
    -- for getting the output on the screen
    dbms_output.enable(1000000);
    -- open the XML document in read only mode
    v_FileHandle := utl_file.fopen('c:/OracleProject','trial.xml', 'r');
    loop
    BEGIN
    utl_file.get_line(v_FileHandle, charString);
    exception
    when no_data_found then
    utl_file.fclose(v_FileHandle);
    exit;
    END;
    dbms_output.put_line(charString);
    if finalStr is not null then
    finalStr := finalStr || charString;
    else
    finalStr := charString;
    end if;
    end loop;
    -- for inserting the XML data into the table
    insCtx := DBMS_XMLSTORE.NEWCONTEXT('RIDB.TRIALZIPCODES');
    insCtx := DBMS_XMLSTORE.INSERTXML(insCtx, finalStr);
    dbms_output.put_line('INSERT DONE '||TO_CHAR(rowsp));
    DBMS_XMLStore.closeContext(insCtx);
    END;
    END TRIAL;
    For the first time when i complied i got the errors as :
    Procedure RIDB.PROCEDURE1@RIDB
    Error(16,14): PLS-00201: identifier 'UTL_FILE' must be declared
    Error(16,14): PL/SQL: Item ignored
    Error(29,1): PLS-00320: the declaration of the type of this expression is incomplete or malformed
    Error(29,1): PL/SQL: Statement ignored
    Error(33,1): PL/SQL: Statement ignored
    Error(33,19): PLS-00320: the declaration of the type of this expression is incomplete or malformed
    Error(36,1): PL/SQL: Statement ignored
    Error(36,17): PLS-00320: the declaration of the type of this expression is incomplete or malformed
    So i logged in as sys & grant the permission to execute on UTL_FILE to ridb (user):
    SQL Statement:
    grant execute on utl_file to ridb
    So, it got compiled successfully but when i execute it gives me error as:
    Source does not have a runnable target.
    What does this mean?
    So I browse through forum & i got to know that i need to initial the UTL_FILE_DIR ="C:/OracleProject" in init.ora
    So can i edit the init.ora with notepad.When i tried to do that it says permission denied
    In my system it shows the init.ora file in path C:\oraclexe\app\oracle\product\10.2.0\server\config\scripts
    but there is also other file initXETemp in the same path do i need to do the changes in it.
    I have tried even editing the SPFILE as mentioned below:
    C:\oraclexe\app\oracle\product\10.2.0\server\dbs\SPFILEEXE - I had edit this file using notepad & set the value of UTL_FILE_DIR ="C:/OracleProject". So next time when i restarted i'm unable to log on to the database.
    So i had reinstall the software again.
    Could you please let me know how to proceed..

    hi,
    I have created the directory from sys database
    CREATE or replace DIRECTORY XML_DIR2 AS 'C:\OracleProject';
    & grant read,write access to the user
    grant read,write on directory XML_DIR2 to RIDB;
    & i had change the tag name in the xml file as shown below:
    <?xml version = '1.0'?>
    <metadata>
    <Zipcodes>
    <mappings Record="4">
    <STABBRE>CA</STABBRE>
    <ZIPCODE>94301</ZIPCODE>
    </mappings>
    <mappings Record="5">
    <STABBRE>CO</STABBRE>
    <ZIPCODE>80323</ZIPCODE>
    <ZIPCODEEXT>9277</ZIPCODEEXT>
    </mappings>
    </Zipcodes>
    </metadata>
    TRIALZIPCODE table as shown below:
    CREATE TABLE "RIDB"."TRIALZIPCODE"
    (     "STABBRE" VARCHAR2(20 BYTE),
         "ZIPCODE" NUMBER(*,6) NOT NULL ENABLE,
         "ZIPCODEEXT" NUMBER
    ) PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING
    STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
    PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
    TABLESPACE "USERS" ;
    I have tried two methods as shown below:
    Procedure 1:
    create or replace
    PROCEDURE TRIAL_V2 AS
    BEGIN
    DECLARE
    -- declare attributes
    charString varchar2(80);
    finalStr varchar2(4000) := null;
    rowsp integer;
    v_FileHandle UTL_FILE.FILE_TYPE;
    l_context_handle dbms_xmlgen.ctxHandle;
    insCtx DBMS_XMLStore.ctxType;
    cnt NUMBER;
    xmldoc xmltype := xmltype( bfilename('XML_DIR2','trialxml.xml'), nls_charset_id('AL32UTF8') );
    --XML_DIR VARCHAR2(40) := 'C:\\OracleProject';
    BEGIN
    insCtx := DBMS_XMLStore.newContext('DEV.TRIALZIPCODES');
    DBMS_XMLStore.setUpdateColumn(insCtx, 'STABBRE');
    DBMS_XMLStore.setUpdateColumn(insCtx, 'ZIPCODE');
    DBMS_XMLStore.setUpdatecolumn(insCtx, 'ZIPCODEEXT');
    DBMS_XMLStore.setRowTag(insCtx, 'mappings');
    cnt := DBMS_XMLStore.insertXML(insCtx, xmldoc);
    DBMS_XMLStore.closeContext(insCtx);
    END;
    Procedure 1 was compiled with out errors but when i execute i got the error as :
    Source does not have a runnable target.
    Procedure 2_
    CREATE OR REPLACE PROCEDURE TRIAL_V3 AS
    BEGIN
    DECLARE
    -- declare attributes
    charString varchar2(80);
    finalStr varchar2(4000) := null;
    rowsp integer;
    v_FileHandle UTL_FILE.FILE_TYPE;
    l_context_handle dbms_xmlgen.ctxHandle;
    insCtx DBMS_XMLStore.ctxType;
    cnt NUMBER;
    xmldoc xmltype := xmltype( bfilename('XML_DIR2','trialxml.xml'), nls_charset_id('AL32UTF8') );
    --XML_DIR VARCHAR2(40) := 'C:\\OracleProject';
    BEGIN
    INSERT INTO trialzipcode (STABBRE, ZIPCODE, ZIPCODEEXT)
    SELECT extractvalue(x.column_value, 'mappings/STABBRE'),
    extractvalue(x.column_value, 'mappings/ZIPCODE'),
    extractvalue(x.column_value, 'mappings/ZIPCODEEXT')
    FROM TABLE(
    XMLSequence(
    EXTRACT(
    xmltype( bfilename('XML_DIR2','trialxml.xml'), nls_charset_id('AL32UTF8') ),
    'metadata/Zipcodes/mappings'
    ) x
    END;
    END TRIAL_V3;
    Procedure 2 was complied without errors but when i execute i got the error as:
    Connecting to the database RIDB.
    ORA-22288: file or LOB operation FILEOPEN failed
    The system cannot find the file specified.
    ORA-06512: at "SYS.DBMS_LOB", line 523
    ORA-06512: at "SYS.XMLTYPE", line 287
    ORA-06512: at "RIDB.TRIAL_V3", line 12
    ORA-06512: at line 2
    Process exited.
    Disconnecting from the database RIDB.
    Could you please let me know how to proceed...

  • How to insert select columns from one internal table to another

    Hi,
    How to insert select columns from one internal table to another based on condition as we do from a standart table to internal table.
    regards,
    Sriram

    Hi,
    If your question is for copying data from 1 int table to other ;
    we can use
    APPEND LINES OF it_1 TO it_2.
    or if they have different columns then:
    loop at it_1 into wa_it1.
    move wa_it1-data to wa_it2-d1.
    apped wa_it2 to it_2.
    clear wa_it2.
    endloop.
    thnxz

  • How to insert a value from sequence in Bussiness Components?

    How to insert a value from sequence in Bussiness Components?
    I would like to do it, but without a triger that would do it before insert.
    I know that there is a type DBSequence in BC where you can insert a sequence name but it does not work when I type there my sequence name.
    Do you now how to fix that problem?
    Bart.

    The newer way to do it is to make the type DBSequence and enter the name of the Sequence object in the sequence field. It must match the same name of the sequence object in the database. Next, you have to create a before insert for each row trigger on the table. Basically, something like this:
    CREATE OR REPLACE TRIGGER TGB_THEME_SEQ
    BEFORE INSERT ON THEME
    FOR EACH ROW
    DECLARE
    BEGIN
    -- Assign the id from the sequence if null
         IF( :new.theme_id IS NULL ) THEN
              SELECT THEME_ID_SEQ.nextval
              INTO :new.theme_id
              FROM dual;
         END IF;
    END;
    In the above example, THEME_ID_SEQ is the seuence object name in the database. If you have the name right but it still fails, then the user you are logging in as probably doesn't have access to the sequence in the database.
    Hope this helps.
    Erik

  • HT4053 how do i move files from videos to photos si i can send them via whatsapp etc

    how do i move files from videos to photos si i can send them via whatsapp etc

    What is it then? How and what exactly do i use it for? My i pad says there is not enough storage available so i have purchased more in i cloud. I now want to save some TV programmes and films to i cloud to free up some space but don't know how to... When you are told there is not enough space to download you are prompted to go to settings and to purchase more storage - so it is not unreasonable to assume that this will solve the problem - or am I missing something here? Or is this just a way for apple to get money out of me?
    If this is not what it is meant for then what is it meant for? Is it just space to back up files to? If so then surely what i need is stored there - so i can delete the TV programmes from my i pad and grab them from i cloud later?
    Am rather perplexed...

  • How to move my videos from videos to camera roll?? I can not access them to create a proyect in imovie...

    How to move my videos from videos to camera roll?? I can not access them to create a proyect in imovie...

    As far as I know, iMovie will recognize only Firewire connected camcorders. If you are connecting with USB, it will never work.
    If the memory card is removable, take it out and use a card reader to copy the video to your Mac.
    I found this from a topic ………

  • How do you transfer videos from video roll to camera roll on ipod touch 4g

    how do you transfer videos from video roll to camera roll?

    I do not understand your question. There is no Video Roll album. There is the Camer Roll album in which all photos and videos taken by anad saved to the iPod are contained.

  • How can I stop apps from popping up on my iPhone after I download them on my iPad., How can I stop apps from popping up on my iPhone after I download them on my iPad.

    How can I stop apps from popping up on my iPhone after I download them on my iPad., How can I stop apps from popping up on my iPhone after I download them on my iPad.

    AUTOMATIC DOWNLOADS
    How To  >  http://support.apple.com/kb/ht4539
    Troubleshoot  >  http://support.apple.com/kb/ts3688

  • This is my first ipad how do i download music and videos from my pc to my ipad air thank you for any help

    Hello this is my first apple product, I just got a ipad air. How do i download music and vidos stored on my pc to my ipad air also how do i download videos from youtube?  Thank you for any help

    Add all you wanna sync to Itunes by selecting a folder.
    Then select it to sync in Itunes.
    At the End synch your Ipad.
    And you will see your IPad experience can start....
    Wish you a wonderful Journey to explore wonderful things on a powerful Tool.
    Nick.

  • HT201342 When I want to change the tv videos downloaded to my iPad how do I remove them from the iPad back to my iTunes library?

    I have purchased a couple of tv series and downloaded to my iPad, now I want to put a couple of new series on remove these to save space on my iPad how do I do this?

    Connect your iPad to iTunes, go to the TV Shows tab of your iTunes sync settings, uncheck the ones you no longer want on your iPad and sync to remove them.

  • How do you move videos from video app into camera roll?

    I need to use a video in a Keynote presentation. How do I move a video from the Videos app into the Camera Roll so I can access it in Keynote?

    I don't think that you can do it directly on the iPad, you will need to sync it to the Photos app from your computer's iTunes i.e. if you are syncing photos from your computer then copy it into one of those photo folders, make sure that 'include videos' is ticked on the Photos tab, and re-sync (or if you have the camera connection kit then you can use, for example, an SD card and copy it via that).
    If it's an iTunes purchased video then it possibly won't sync to the Photos app (I've never tried it), and whilst they can be copied via the kit they won't play in the Photos app - so they might not also play in Keynote, they may only play in the Videos app.

  • Using notes on iPad: how do I prevent numbers from being displayed as phone numbers?

    Using notes on iPad how do I enter numbers such that notes thinks that they are just numbers, not phone numbers, links, or calendar events?
    Example:
    Enter the line "Number: 00012345678".  The number is highlighted in yellow, tap it and I get the options to "Send Message", "Add to Contacts", or "Copy".
    Enter the line "Numlet: 9H". The "9H" is highlighted in yellow, tap it and I get the options to "Create Event", "Show in Calendar", or "Copy".
    I don't think this is an iOS 7 problem.

    Personally, I think that an App like AirWatch would be overkill for the average home user and form the very little bit that I know about the app, it would not make sense from a money standpoint - IMO anyway. I don't use any third party app to manage devices.
    I manage four iDevices in my iTunes library on my MacBook Pro. All four devices are mine, but all of them have their own unique content on them so it does take a little bit of extra attention to detail when I sync and make changes to the sync configuration. And because I share my Apple ID with my wife and daughter (who each have their own MBP laptops) every now and then I inadvertently download a previously purchased app that I didn't want (I delete more Disney apps than you can shake a stick at) and I scratch my head trying to figure out where that app came from.
    I guess what I'm trying to say is, again IMO - that you can get the hang of keeping everything separate without the purchase of an enterprise app, you just have to be a little more aware of what you are syncing, and pay a little closer attention to what's going on.

  • How to insert cropped images from photoshop without the white background

    Basically all I want to do is take a peice of writing from a video and insert it into another video. To do this I've took a screenshot of the font from the video and imported it into photoshop. I've then cropped/cut/took the the peice of writing I want, letter by letter. I want to be able to insert it into another video, but whenever I attempt to do it, I have the default white background of photoshop. Is there anyway to insert an image from photoshop, without taking the background with it, or even insert a layer from photoshop straight into final cut pro? Sorry if this is confusing.

    I don't think so. I cropped the letters, put them each an individual file, removed the background, saved them as a TIF then tried to import them onto Final Cut Pro, but a white background still appeared in the TIF file. Basically I just want to make the background transparent I believe.

  • How to insert special character from Oracle form builder 10g

    Dear all,
    I need help. how to insert special character like 'Superscript or Subscript ' from oracle form builder 10g. I had try in Oracle form builder 6i with press ALT+ASCII code in the text item and it work, but in the oracle form builder 10g this method doesn't work... would you like to help me...somebody please...
    Best Regard,
    Dedy P.T.

    What do you mean by insert ... from Forms Builder? Do you mean you want to add it as text in a string of pl/sql code or as part of boiler plate text (label) or a value on the Property Palette?
    For special characters you would need set NLS_LANG to something that would support the characters you want to use. For the Builder to see the change, you would need to set NLS_LANG to something like:
    NLS_LANG=AMERICAN_AMERICA.UTF8
    This can be done in the Windows Registry or system. As I mentioned, this will only apply to the Builder and will have nothing to do with a running form. For running forms you would need to set this in default.env. As for things like super and sub scripts, these are font formats and not necessarily characters. For the most part, I don't believe these are supported in Forms.

  • How to Make a Still from Video and Burning a DVD

    Hello All,
    I am using FCP HD and I would like to know how do you make a still photo from video footage?
    Also I have to burn an editing project to dvd. I don't know how to use studio pro, but the person said that it needs to be a ntsc full resolution version. I am not sure what that means.
    The project is about 10 minutes long and this person had me using the H.264. I have been playing around and I think I not doing something write because when I send the project to compressor it tells me that I have like 200+ hours befoe it outputs.
    Could someone give me some simple instructions using the H.264 on how to do a good large size (over 320x240) QT movie to dvd?
    THANKS...

    To export a still park the playhead on the image you want, mark IN OUT, go to FILE>EXPORT>QUICKTIME CONVERSION. Click on QUICKTIME MOVIE and In the dropdown choose STILL IMAGE.
    You will have to De-Interlace it in Photoshop after you export.
    As for making the DVD:
    Shane's Stock Answer #3:
    To export your DV project so there is no loss in quality, simply go to the File Menu and select EXPORT>QUICKTIME MOVIE. Not Quicktime Conversion, fot this will compress the footage. Make sure the settings match your timeline settings, make it self contained and you are set.
    Import this into iDVD or DVDSP and burn your DVD. Don't go the h.264 route.
    Shane
    "There's no need to fear, UNDERDOG is here!"

Maybe you are looking for