How can I embed a video with absolute path into a PDF

I'm having some difficulties in embedding a video into a pdf; I followed the instructions to embed it properly, but the path points to my personal computer , so that the video will be available only on the computer I used to embed the document.
Any suggestion? Can I modify the path directly? The PDF is supposed to be linked to another interactive PDF and to work both online and offline.
Thanks!

Thanks for the reply. I tested the file on other computers, though, and it doesn't open the video on any computer but mine (mine: the one I used to embed the video).
Am I doing something wrong? I'm using Acrobat X and the procedure I'm following is: Multimedia/Add Video/Choose file
I searched for manuals online and I saw that some of them were checking the box "embed file", but I don't have that choice..
Maybe I'm supposed to use another version of acrobat?

Similar Messages

  • How can I export a video with audio from premiere cs 5.5 to a DVD

    how can I export a video with audio from premiere cs 5.5 to a DVD

    You don't... at least not directly... you export MPEG2-DVD and then use the TWO files (audio and video) in Encore
    CS5-thru-CC PPro/Encore tutorial list http://forums.adobe.com/thread/1448923 may help

  • How can I create a video with effects using my ipad?

    How can I create a video with effects (sepia, B&W, Negative, oval or any other shape borders) using my ipad?  I would Like to keep a higher res and also be able to shrink it down to email or send in a MMS. Or should I just upload it to my PC and mess with it there? Some of the apps I have are very easy to use compared to the learning curve needed for video editing software.
    Thanks

    Thats the Problem . . . how many apps do I have to try until I find the one I want? I noticed a few will render the video thus losing its original size. When I went to edit it more in iMovie the video was smaller--not good. And what software do you suggest, Templeton, for the PC? I love the apps because they are easy. I dont have hours to mess around on a software to figure out if its something I want. Im looking for simplicity. Maybe Ill get more into it later. I just want to record simple video of my playing the guitar for self analysis and create a short video for family and friends.
    Apps:
    iMovie
    CinemaFXV
    VideoFix
    Cartoonatic
    Video illusion
    VidEditor
    Software:
    Windows Movie maker (wont accept .mov files)
    After Effects (Too little time, so much to learn)
    Wondershare (Very easy but little choices)
    VideoPad (Again. Few choices)

  • How can I record a video with LAbview?

    Hi,
    I have a question: How can I record a video with labview?
    I have a camera (AXIS 221) connected via rj45 on PC. I see the video of the camera in a browser.
    And I would to acquire the video in labview.
    Could someone help me?
    Thanks
    Raf

    Unfortunately I haven't any experience with this camera. Iguess, you should install API, then crete new VI, place ActiveX container (palette Container->ActiveX) on the Front Panel, then right mouse click, then choose Insert ActiveX object..., then found you camera object and select it and press OK. Then you probably can see image from the on the front panel. Also probably you will be able to get image data in array (how easy is it - depends from the camera API).
    If you able to see image from camera in the Internet Explorer, then another method - you can put Microsoft Web Browser as ActiveX object, then you should also see the image. Disadvantage of this method - you will be not able to get image data.
    Andrey.

  • How can I view a video with the extension .wlmp?

    How can I view a video with the extension .wlmp?

    Nevermind. Found wlmp reference elsewhere in these discussions.

  • How can I protect a video with a password?

    how can I protect a video with a password?
    Thanks
    Message was edited by: Host <to clarify Subject>

    By default, Disk Utility has the "Add to Keychain" setting checked on.
    You have to make a new image and turn this funtion off if you want to make sure the video stays private on your computer.
    If you send the video to another computer, the user will have to enter the password.

  • How can I email a video clip I downloaded into my iPhoto library to my friends? I tried creating an email and attaching the clip but there is no sound and no picture when the 5 minute attachment "plays." How can I file= export it to them from iPhoto?

    How can I email a video clip I downloaded into my iPhoto library to my friends? I tried creating an email and attaching the clip but there is no sound and no picture when the 5 minute attachment "plays." How can I file=>export it to them from iPhoto?

    Have them install Quicktime on their PC's from Apple's website, that's the easiest fix.

  • How can I create a video with a transparent backgound?

    I rendered out an image sequence out of 3DS Max as png files with alpha channels. It is of the earth rotating. I want to export it  so when it is brought into power point, all the space around the globe is transparent.  How can I do this?
    Thanks,
    Dean

    Sorry--overlooked that since it wasn't capitalized.
    Anyway, you'll have to see what formats PowerPoint accepts that can include alpha (if that's even possible). For sure, On2 VP6 won't work, and QuickTime probably will not; the only likelihood is the uncompressed AVI option, and even then, that's a long shot.
    The following suggests alpha channels are accepted in PowerPoint (including PNGs), but only with images, and not videos: PowerPoint and Alpha Channels - indezine.com - Graphics Presentations

  • How can I play different videos with only one MediaPlayer?

    I want to play two videos with only one MediaPlayer:
    private static MediaPlayerBuilder mpB;
    private static Media mLogo;
    private static Media mSaludo;
    private static MediaPlayer mpLogo;
    private static MediaView mvLogo;
    private static Group gLogo;
    public void start(final Stage stage) {
    mLogo = MediaBuilder.create().source(myGetResource(VIDEOLOGO_PATH)).build();
    mSaludo = MediaBuilder.create().source(myGetResource(VIDEOSALUDO_PATH)).build();
    mpB = MediaPlayerBuilder.create();
    mpLogo = mpB.media(mLogo).build();
    mvLogo = MediaViewBuilder.create().mediaPlayer(mpLogo).build();
    gLogo.getChildren().add(mvLogo);
    sActual = new Scene(gPozos, WIDTH, HEIGHT, Color.BLACK);
    stage.setScene(sActual);
    stage.show();When I want to play mLogo:
    sActual.setRoot(gLogo);
    mpLogo.play();Then, when I want to play mSaludo I do this:
    mpLogo = mpB.media(mSaludo).build();
    sActual.setRoot(gLogo);
    mpLogo.play();or this:
    mpB.media(mSaludo).applyTo(mpLogo);
    sActual.setRoot(gLogo);
    mpLogo.play();or this:
    mpB.media(mSaludo);
    sActual.setRoot(gLogo);
    mpLogo.play();But is impossible to change the Media. It doesn't work. Sometimes I play mLogo video and sometimes (depends on the code) the video mLogo doesn't start and I see an image of the first keyframe and nothing else. I have no exceptions, no errors, nothing.
    I want to play mLogo and then mSaludo. How can I do this?
    Thanks
    Noelia

    Ok, I understand, if I have 100 videos I have to build 100 MediaPlayers but only one MediaView.
    Here I post my code with only two videos, I included all the asynchronous errors.
    package pruebafx;
    import java.util.logging.FileHandler;
    import java.util.logging.Level;
    import java.util.logging.Logger;
    import javafx.application.Application;
    import javafx.event.EventHandler;
    import javafx.scene.Group;
    import javafx.scene.Scene;
    import javafx.scene.media.Media;
    import javafx.scene.media.MediaErrorEvent;
    import javafx.scene.media.MediaPlayer;
    import javafx.scene.media.MediaView;
    import javafx.stage.Stage;
    * @author Solange
    public class PruebaFX extends Application {
        private static final Logger logger = Logger.getLogger("pruebafx.pruebafx");
        private static final String MEDIA_PATH = "/images/";
        private static final String VIDEOLOGO_PATH = MEDIA_PATH + "logo.flv";
        private static final String VIDEOSALUDO_PATH = MEDIA_PATH + "saludo.flv";
        private static Group root;
        private static Scene scene;
        private static MediaPlayer mpLogo;
        private static MediaPlayer mpSaludo;
        private static Media mLogo;
        private static Media mSaludo;
        private static MediaView mediaView;
         * @param args the command line arguments
        public static void main(String[] args) {
            Application.launch(args);
        @Override
        public void start(Stage primaryStage) {
            try {
                FileHandler fh = new FileHandler("DisplayManagerlog-%u-%g.txt", 100000, 100, true);
                // Send logger output to our FileHandler.
                logger.addHandler(fh);
                // Request that every detail gets logged.
                logger.setLevel(Level.ALL);
                // Log a simple INFO message.
                logger.info("Starting PruebaFX");
            } catch (Exception e) {
                System.out.println(e.getMessage());
            primaryStage.setTitle("Change Videos");
            root = new Group();
            mLogo = new Media(myGetResource(VIDEOLOGO_PATH));
            mSaludo = new Media(myGetResource(VIDEOSALUDO_PATH));
            mpLogo = new MediaPlayer(mLogo);
            mpSaludo = new MediaPlayer(mSaludo);
            mediaView = new MediaView(mpLogo);
            mpLogo.setOnEndOfMedia(new Runnable() {
                public void run() {
                    mpLogo.stop();
                    mediaView.setMediaPlayer(mpSaludo);
                    mpSaludo.play();
            mpSaludo.setOnEndOfMedia(new Runnable() {
                public void run() {
                    mpSaludo.stop();
                    mediaView.setMediaPlayer(mpLogo);
                    mpLogo.play();
            mLogo.setOnError(new Runnable() {
                public void run() {
                    logger.severe("Error en Media mLogo");
            mSaludo.setOnError(new Runnable() {
                public void run() {
                    logger.severe("Error en Media mSaludo");
            mpLogo.setOnError(new Runnable() {
                public void run() {
                    logger.severe("Error en MediaPlayer mpLogo");
            mpSaludo.setOnError(new Runnable() {
                public void run() {
                    logger.severe("Error en MediaPlayer mpSaludo");
            mediaView.setOnError(new EventHandler<MediaErrorEvent>() {
                public void handle(MediaErrorEvent t) {
                    logger.severe("Error en MediaView mediaView");
                    logger.severe(t.getMediaError().getMessage());
            root.getChildren().addAll(mediaView);
            scene = new Scene(root, 300, 250);
            primaryStage.setScene(scene);
            primaryStage.show();
            mpLogo.play();
        public String myGetResource(String path) {
            return (this.getClass().getResource(path).toString());
    }My video saludo.flv hangs up.
    Here is the content of the log file:
    <?xml version="1.0" encoding="windows-1252" standalone="no"?>
    <!DOCTYPE log SYSTEM "logger.dtd">
    <log>
    <record>
    <date>2011-12-12T12:03:53</date>
    <millis>1323702233578</millis>
    <sequence>0</sequence>
    <logger>pruebafx.pruebafx</logger>
    <level>INFO</level>
    <class>pruebafx.PruebaFX</class>
    <method>start</method>
    <thread>12</thread>
    *<message>Starting PruebaFX</message>*
    </record>
    <record>
    <date>2011-12-12T12:04:06</date>
    <millis>1323702246109</millis>
    <sequence>1</sequence>
    <logger>pruebafx.pruebafx</logger>
    <level>SEVERE</level>
    <class>pruebafx.PruebaFX$6</class>
    <method>run</method>
    <thread>12</thread>
    *<message>Error en MediaPlayer mpSaludo</message>*
    </record>
    <record>
    <date>2011-12-12T12:04:06</date>
    <millis>1323702246109</millis>
    <sequence>2</sequence>
    <logger>pruebafx.pruebafx</logger>
    <level>SEVERE</level>
    <class>pruebafx.PruebaFX$4</class>
    <method>run</method>
    <thread>12</thread>
    *<message>Error en Media mSaludo</message>*
    </record>
    </log>
    Do you know when will be available the 2.0.2 version???
    I have to finish my application!!!
    Thanks.
    Noelia

  • HOW CAN YOU WATCH YOUTUBE VIDEOS WITH CC ON? THIS FRUSTRATES ME A LOT. THANKS.

    So, I am kinda confused. I searched around the net and all that, and I found out that there's this thing in setting where you turn on the "closed-captioning". So I turned it on and tried watching videos in YouTube but IT didn't work. Also, I remember one time that I can use CCin YouTube. it's weird.
    I remember that they said if the Cc were encoded in quicktimes you can see the CC but if it's flash you can't. So I figured it's impossible to watch YouTube videos with CC. However, if anyone knows another way to watch with CC on YouTube, tell me please. Thanks.

    Sorry, but I don't know if there is a way.
    Also, just to be picky....would you be kind enough to avoid using all caps in your title?

  • HT6074 How can I watch flash Videos with the ipad with safari?

    I Have an iPad an I'll watch flash Videos with this. But there is no Flashplayer. Is there any Plugin?

    There is no Flashplayer for any iOS device and there never will be. Flash is replaced on iOS devices by HTML5 which is a superior technology endorsed by both Apple and Microsoft as well as almost everyone else in the industry except Adobe.

  • How can I download a video clip from YouTube into iMovie 9

    I found one thread dating suggesting that I download some free software MPEG Streamclip from http://www.squared5.com/svideo/mpeg-streamclip-mac.html.  I did that and selected the (beta) version that is necessary for downloading from YouTube.  I installed the software including an add-on that I had to purchase from Apple, Quicktime MPEG2.dmg.  When I try to run the software I get the following error message: File open error: can't open the file.
    Help!
    RGLaut

    Well on a Mac you can install
    Flash
    Silverlight
    Perian
    VLC
    Flip4Mac
    DivX
    and many other codecs/tools to watch anything.
    Guess the iOS isn't really all that it's cracked up to be, ignoring the wider world out there.
    Your only choice to complain to Apple about closed devices they make, but of course they know this already and using the iPad as a cheap "netbook" halo effect device so you get to upgrade to a Mac, just like they do with iPhones and iPods.
    In the meanwhile they are slowly closing the door on OS X, a little at a time so it's not noticeable.
    Pretty soon the excuse will be "sorry I can't play your video you sent me mom, I've got a Mac"
    https://www.apple.com/feedback/macosx.html

  • How can you place a video with no controls? HTML5 CSS3

    I would like to just place my video (MP4) and have it come into the page actual size with no controls, set to autoplay and loop. Can anyone tell me how to write the code to accomplish this??  Thanks in advance!!

    it's really a banner type image that I created in Flash... it's not a "real video" I converted it to video so it would play on OS devices.
    I take it you might not have an iOS device.  Even if you hide controls, the OS has it's own controls for videos that will show up for users.  Seeing as how Adobe just gave Flex to Apache this morning ( http://www.macworld.com/article/163699/2011/11/adobe_donates_flex_to_apache.html ), you might want to try Google's tool for exporting Flash as HTML5 for your banner if it's an animation you want to play.  If it's a rotating banner, I'd recommend a JQuery option.
    http://blogs.adobe.com/jnack/2011/11/google-flash-developers-export-to-html5-with-new-swif fy-extension.html
    It should work with CS4 and above.

  • How can i see flash videos with my iPad 2

    Hi , i need to know if apple fixed the problem with the flash videos

    Apple hasn't and won't, but some third-party applications in the App Store, such as Skyfire, can be used.
    (63718)

  • How can i play a video with dv4 format?

    i need to view a cctv video because my imac got stolen and it was caught on camera. I retrieved the file from the cctv but unable to play the video on my macbook pro as the format is in dv4. what application can i download to help me view it? pleaase help. Thanks

    The last post in this thread might help.
    https://discussions.apple.com/thread/3782011

Maybe you are looking for

  • Help needed on startup. My computer will not boot from the CD drive!!!

    Problem with iMac G3 333, the Message on the screen states: "The System Software on the starup disk only functions on the media, not if copied to another drive." Like a fool, I copied the system folder from the original system software 9.2.2 on to th

  • Pictures greyed out

    When i try to upload pictures to facebook or pictures sharing sites, i can't select my photos - they're greyed out. I read here that usually greyed out means that it's the wrong filetype, but it's rediculos cuase it's jpeg. I tryed to copy the pictur

  • Very critical issue with skype username

    Hello I need to recover my skype account but i cant contact support... its extremely confusing and keeps going in a loop... I need to recover my account, I have: Forgotton my password My account email was a private domain name which has been expired

  • Vandor crdit memo, subsequent debit memo and subsequent crdit memo

    Hi,   what is the difference between subsequent debit, credit and credit memo in MIRO transaction.    In case of vendor had given us credit note with relevant to particular for which we had already completed the invoice verification and payment also

  • My iMac won't boot up past the white screen with a grey apple and spinning icon

    My iMac won't boot up past the white screen with a grey apple and spinning icon...please help!