Uploading Video into Apex workspace

Hi,
I am trying to upload a video into a workspace on apex.oracle.com, and I am having trouble finding any instructions on how to do so. Does anyone know how to upload a video into an apex workspace of if it can even be done?
Thank You,
Tami

Yes.

Similar Messages

  • Cannot upload videos into itunes library!

    sorry if this is the wrong place to post or something, but i'm in desperate need of help!
    i can't seem to upload any of my own videos into itunes video library. i heard that i'm supposed to drag the file into the library but when i do that it just stays the same and nothing happens. i tried to reformat the video files to MPEG but it still doesn't work.
    Can someone please help me?
    PS. I'm using Ipod video

    Welcome to Apple Discussions!
    Open Quicktime. Try to open the video through that. Does it open and play in Quicktime?
    Also, right click on the video file. Go to properties. What is the file type/kind?
    You will most likely need to use a 3rd Party Converter, as iTunes will only accept videos that are compatible with Quicktime.
    btabz

  • Uploading Video Into iPhone 5

    I've bought recently an iPhone 5, before this one I used iPhone 4.
    To upload some of my own videos into my iPhone 4, first I used Compressor 3.5.3 to convert them to a format that could play into an iPhone 4.
    Now, to put these same videos into my iPhone 5, would those converted movie files to iPhone 4 would work into an iPhone 5?
    Thanks!

    Yes.

  • Upload files into apex using plsql

    i use apex upload option to upload files in to flow_files. Now it has to be deon via PL/SQl process. Via PL/SQL Process the files has to be uploaded on to apex application flow files tables .
    the data input to my application come not from same apex another but from extenal source via plsql procedure.
    is it possible ?
    thanks
    Raj

    Just for completeness ...
    Got this to work, but it's a pl/sql issue as opposed to an APEX issue.
    Anyway, if anyone needs to have the ability to read multiple files then a quick easy way to do it (as lomg as they know the file names that will be read), is to create a directory on the database which points to the actual harddrive on your PC, then create a table (called an external table) and read from that external table as if it was an actual database table ...
    1 - Log on as sys and grant CREATE ANY DIRECTORY to whatever user you are logging in as (assuming you are not using sys to create apps)
    2 - Create a directory e.g....CREATE OR REPLACE DIRECTORY GB_TEST AS 'c:\gbtest';
    3 - Create an external table as ...
    CREATE TABLE gb_test
    (file_name varchar2(10),
    rec_date date
    rec_name VARCHAR2(20),
    rec_age number,
    ORGANIZATION EXTERNAL
    TYPE ORACLE_LOADER
    DEFAULT DIRECTORY GB_TEST
    ACCESS PARAMETERS
    RECORDS DELIMITED BY NEWLINE
    FIELDS TERMINATED BY ','
    LOCATION ('data1.csv','data2.csv','data3.csv','data4.csv')
    PARALLEL 5
    REJECT LIMIT 20000;
    That's it then ...
    select * from gb_test
    where file_name = 'xxx'
    will return all the data where the file_name = 'xxx'
    very easy to use.

  • Security Issues with uploading files into APEX - How is anti-virus handled?

    Hi APEXers!
    We have been using APEX 3 for some time and are now migrating to APEX 4. We have a request for a new application that will require uploading spreadsheets. From other developers, I know it can be done in a few ways. The only thing we have done before is limitied - storing them in BLOBs.
    With the Websheets in APEX 4, users could load them directly into the database.
    But the anti-virus issue has always been unclear. For the apps that we are allowing to upload to BLOBs, they are small user, internal apps so we hope that our enterprise desktop software will stop a bad file before it gets uploaded.
    We have gotten some questions about allowing outside-our-network people to upload spreadsheets or maybe even the public. So far, our security people have just said no - but I wondered what everyone else is doing?
    Are there any White Papers or articles on this? My general impression is that anti-virus software has to be installed at the server level to deal with this.
    If anyone can provide some guidance, I would appreciate it as I have to figure out what to tell the development team requesting to do this.

    Do you have to take excel format? CSV would be a lot safer.
    You might take inspiration from this:
    http://stackoverflow.com/questions/3363767/how-do-you-virus-scan-a-file-being-uploaded-to-your-java-webapp-as-it-streams

  • Uploading video into database

    Hai,
    There r no errors in the code below, it is supposed to load a video file in to the database, but the problem is the jsp page is not loading(the page is not loading even after 30 minutes, continously loading). I think the problem is with the loadDataFromFile( ) method, can any one solve the problem for mee
    <HTML>
    <HEAD>
    </HEAD>
    <BODY bgcolor="pink">
    <%@ page import="oracle.ord.im.OrdVideo" %>
    <%@ page import="oracle.jdbc.driver.*" %>
    <%@ page import="oracle.sql.*" %>
    <%@ page import="java.sql.*" %>
    <%@ page import="java.io.File" %>
    <%@ page import="java.util.Date" %>
    <%@ page import="java.io.*" %>
    <%@ page import="javax.servlet.*" %>
    <%@ page import="javax.servlet.http.*;" %>
    <CENTER>
    <%
    Class.forName("oracle.jdbc.driver.OracleDriver");
    Connection con=DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:orcl","system","indublin");
    try
    PreparedStatement ps =con.prepareStatement("INSERT INTO t1 (id ,vid) values(16,ORDSYS.ORDVIDEO.INIT( ))");
    ps.executeUpdate( );
    ps.close();
    con.setAutoCommit(false);
    Statement st=con.createStatement();
    out.println("gdjhg");
    out.println("gdjhg");
    OracleResultSet rs=(OracleResultSet)st.executeQuery("select vid from t1 where id=16 for update");
    out.println("gdjhg");
    rs.next();
    OrdVideo videoproxy = (OrdVideo)rs.getORAData("vid", OrdVideo.getORADataFactory());
    String videofile="CAMWIZ 15-APR-06 16=44=52.50.wmv";
    videoproxy.loadDataFromFile(videofile);
    out.println("gdjhg");
    byte[ ] [ ] ctx = new byte[1][64];
    videoproxy.setProperties(ctx);
    out.println("gdjhg");
    String updateSQL = "update t1 set vid=? where id=16";
    OraclePreparedStatement opstmt = (OraclePreparedStatement)con.prepareStatement(updateSQL);
    opstmt.setORAData(1, videoproxy);
    opstmt.execute();
    opstmt.close();
    con.commit();
    catch(Exception e)
    out.println(e.getMessage()+"I/O exception");
    %>
    </center>
    </body>
    </html>
    Thanks,
    bye now.

    --Database procedure to get the file
    create or replace PROCEDURE get_video(pfileid IN NUMBER) IS
    v_blob BLOB;
    v_length NUMBER;
    v_mime_type VARCHAR2(300);
    v_file_name VARCHAR2(200);
    BEGIN
    -- get pdf_data and its mime type from the database
    SELECT file_blob, mime_typ, file_nm
    INTO v_blob, v_mime_type, v_file_name
    FROM appl_gui.hcd_cont_dtl_file
    WHERE tablex = pfileid;
    v_length := dbms_lob.getlength(v_blob);
    owa_util.mime_header(v_mime_type, FALSE);
    htp.p('Content-length: ' || v_length);
    htp.p('Content-Disposition: filename="' || v_file_name || '"');
    owa_util.http_header_close;
    wpg_docload.download_file(v_blob);
    EXCEPTION
    WHEN OTHERS THEN
    RAISE_APPLICATION_ERROR(-20001, 'Error: ' || SQLERRM);
    END get_video;
    --Application Process Name it as GET_VIDEO
    BEGIN
    get_pdf(:P25_FILE_ID);
    END;
    BEGIN
              htp.p('
              <object>
              <embed type="application/x-mplayer2" src="f?p=&APP_ID.:25:&APP_SESSION.:APPLICATION_PROCESS=GET_VIDEO::::" name="MediaPlayer" width=800 height=300></embed>
              </object>');
    END;

  • Why can't i upload videos into iMovie on my iPad?

    So I need to upload some pre-shot videos onto iMovie on my iPad, but it won't let me. Someone please help... It's for a school project due in four days...

    tammy313 wrote:
    the options in the tool bar at the bottom are not highlighted and it does not respond to my touch.
    You are talking about the forward, back, mail and trash can icons in the Notes App - correct?
    I've gone through restarting it and followed the instructions from the person last week.
    Have you restarted the iPad - is that what you mean? Have you quit and then restarted the app? Quit the app, and restart the iPad. It's worth a try.
    Double tap the home button and your recent apps will appear at the bottom. Hold down on the Notes app icon until it begins to wiggle. Then tap the minus sign to quit the app. Then tap the screen. Now restart the iPad.
    Carolyn explained this above (restart) but here it is again....
    Hold down on the sleep button until the red slider appears and slide to shut off. Hold down on the sleep button until the Apple logos appears then let go of the button and the iPad will restart. See if that helps.

  • Help with html code - inserting video into Muse

    I am seeking help writing the code to insert a video into Muse. I uploaded video into my Business Catalyst hosting. I need it to autoplay, loop and not show any controls or frames.
    When I host video on Vimeo or YouTube, I see markings on the video that is why I am trying to just host in the same place that the files are stored for my website. If there is a way to host on youtube with out any markings showing up on the video I would be open to that too.
    I don't want to see any play button or time bar.
    Thanks in advance!!

    Hello,
    Just as an FYI - we also have an HTML5 video tool over at MuseThemes.com that achieves this, but works on mobile devices as well. The link above looks like it uses Flash, which isn't common anymore since the release of HTML5 based video.
    Simply drag the widget out onto your canvas, and link up your videos / set options like loop, controls visible, etc. It's quite a flexible widget, and there's a complete training video included so you don't get stuck
    Check out the widget here
    Just wanted to provide another alternative that could be helpful. Cheers!
    Steve Harris
    MuseThemes.com

  • Question about uploading videos/movies

    hi guys and gals
    i just recently bought a 30GB ipod video for my little cousin and he asked me a question that i do not have an answer to.
    he knows how to upload music from his itunes to his ipod (drag music into the ipod icon) but he can't figure out how to upload movies/videos.
    i know that the format of the video has to be quicktime or something that is compatible with mac. he uses windows and i believe his videos are AVI or some weird nonesense.
    can you please, in easy steps, tell me how to upload videos into the ipod? thanks!

    Upload videos same way you do songs-just drag them over if you haven't enabled autoupdate.
    Videos have to be in a specific format, found under iPod tech specs on apple website.
    Here:
    H.264 video: up to 768 Kbps, 320 x 240, 30 frames per sec., Baseline Profile up to Level 1.3 with AAC-LC up to 160 Kbps, 48 Khz, stereo audio in .m4v, .mp4 and .mov file formats
    MPEG-4 video: up to 2.5 mbps, 480 x 480, 30 frames per sec., Simple Profile with AAC-LC up to 160 Kbps, 48 Khz, stereo audio in .m4v, .mp4 and .mov file formats

  • My iPad is logged into my iCloud account, but my wife's iTunes. I have uploaded video footage from my iPhone to my iCloud. It appears on the iPad but is not accessible in iMovie? What's the fix?

    My iPad is logged into my iCloud account, but my wife's iTunes. I have uploaded video footage from my iPhone to my iCloud. It appears on the iPad but is not accessible in iMovie? What's the fix?

    You shouldn't have to change your iTunes account to not have to purchase it twice.  If your devices are using different iTunes IDs, just purchase it on one device, then import it to your iTunes library by connecting the device to your computer, opening iTunes and going to File>Devices>Transfer Purchases.  Once in iTunes, you should be able to sync it to your other device (assuming both devices are syncing with the same iTunes library).  (And even if they were syncing with separate libraries, you could use Home Sharing to copy the app from one library to the other.)
    Or, am I missunderstanding something?

  • How do I compress a 2 min FCP video into 100MB for web upload?

    How do I compress a 2 min FCP video into 100MB for web upload?
    I have FCP v.7 as a part of FCStudio
    OK, this may seem like a stupid question for most of you but I haven't used FCP for years.  I am trying to make and upload a 2 min video to the web and don't know how to turn it into a size of 100MB or less.
    Yes, I realize that I have Compressor but it does not work on my computer for some reason.  I think my laptop is too old for it or something.
    It needs to be in one of these formats and I would like to use the highest quality.  Suggestions needed for this also since this will be my first attempt at an uploaded video.
    .MOV, .WMV, .AVI, .MPG, .3GP, 3G2, .QTL, OR .MP4
    Any help would be wonderful!
    MacBook Pro, OS X Mountain Lion (10.8.3), 750GB HD, 2.2 GHz, 6 GB RAM

    First, let me apologize for the way we were chatting on your thread while waiting.
    Let me summerize what I think we have here:
    1. You have a 2 minute show you want to convert to some codec appropriate for high quality presentation, but under 100MB final filesize.
    2. You feel you don't want to use Compressor or a preset for YouTube.
    3. You're in a hurry.
    The fastest and highest quality method of making this conversion is using Compressor. It is designed to do precisely what you ask. The codec you want is H.264.
    The YouTube preset is being suggested not because we think you're going to upload the clip to that site, but because the YouTube preset is a remarkably easy way to get a HQ H.264 clip with acceptable filesize. I'm staring at a 3:40 clip of 1080p that would knock your socks off and it's 90MB!
    Even on a laptop the conversion is a matter of minutes.
    If you're OK with my arguement, I'll write out a step-by-step proc for you and you can be done with this in time for that primetime show you want to watch.  OK?

  • TS4162 I have been able to upload videos to vimeo from FCPX in the past. However, now FC gives me a message that my password is incorrect. This is despite the fact that my password allows me to sign into the Vimeo website. Any ideas?

    I have been able to upload videos to vimeo from FCPX in the past. However, now FC gives me a message that my password is incorrect. This is despite the fact that my password allows me to sign into the Vimeo website. I have reset my vimeo password, restarted final cut and restarted my computer. Any ideas?

    Log in to Vimeo and change your password on the Vimeo site. Then update your FCPX settings for Vimeo to reflect the new password.
    I think Vimeo required this in light of the Heartbleed hack.

  • I took video using my Iphone 4S and uploaded it into my Macbookpro iphoto.  When I open imovie it does not recognize the video when I import it manually it is distorted.

    I took video using my Iphone 4S and uploaded it into my Macbookpro iphoto.  When I open imovie it does not recognize the video when I import it manually it is distorted.

    Did you ever get an answer to this? I just experienced the distortion when I imported a video from my iPhone 4 to iPhoto.

  • When I upload/import a .AVI video into MPEG Streamclip, I lose the audio.

    Whenever I upload a .AVI video into MPEG Streamclip, I lose the audio. The video plays fine in Quicktime but when I upload into MPEG Streamclip, the audio is replaced with some "clicking" sounds. Can someone please help me resolve this and fix it so that my audio gets imported as well? By the way, this is a problem that is only with .AVI files. When I try importing MP4 videos, they work fine and the audio gets imported as well. I need to resolve this so that I can convert my videos from .AVI to DV format with the sound. Thanks!

    Basically you can only add a video file to Itunes if it is either MP4 or the other supported format h2.. <---- i forget what its called i had this problem when i first plugged my i-pod in and got extremely aggitated until i realised and sorted it
    that said i dont therefore understand the convert for i-pod button when the only video files able to be added are already in ipod compatible format? doesnt make sense to me but then maybe im missing something i mean i am a nOOb!

  • How to upload a video into Asset Library programmatically using server side code in sharepoint 2013

    How to upload a video into Asset Library programmatically using server side code in sharepoint 2013

    First you need to configure your asset library with video content type and then you can use SharePoint object model to upload the video files in it...
    check this link for setting up Asset library
    http://www.c-sharpcorner.com/UploadFile/54db21/asset-library-in-sharepoint-2010/ 
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/1d64a5f7-c7db-4ae0-8b0d-d0722cacf5f2/assets-library-video-files-and-c?forum=sharepointdevelopmentprevious
    Mark ANSWER if this reply resolves your query, If helpful then VOTE HELPFUL
    INSQLSERVER.COM
    Mohammad Nizamuddin

Maybe you are looking for