Download .wav clips with images using PSE8

I've recorded messages into some of the pictures I took at the time I took them.  The camera an Olympus E-PL1 creates a wav file.  How do I get PSE8 to download these wav files into the computer folder along with the pictures pSE8 downloads?  Right now I have to go back and copy the wav files through WIndows and paste into the computer folder that PSE8 created for the image files.
Also, is there a way to "see" and play the wav files through PSE8 once they are in the computer folder?

When you import photos from Camera to your computer, select these videos as well to import through File->Get Photos and Videos->From Camera or Card Reader option. It will also download the audio file. Also, if your .wav files are copied to the computer select File->Get Photos and Videos->From Files and Folders option and browse to the .wav file. Select the file to import and it will be imported into organizer.Organizer can also play these audio files.
If you have already tried this then where exactly you are getting the error?

Similar Messages

  • Problem in creating client side PDF with image using flex and AlivePD

    I need a favor I am creating client side PDF with image using flex and AlivePDF for a web based application. Images have been generated on that pdf but it is creating problem for large size images as half of the image disappeared from that pdf.I am taking the image inside a canvas . How do i control my images so that they come fit on that pdf file for any image size that i take.
    Thanks in advance
    Atishay

    I am having a similar and more serious problem. It takes a
    long time to execute, but even attaching a small image balloons the
    pdf to 6MB plus. After a few images it gets up to 20MB. These are
    100k jpeg files being attached. The resulting PDF is too large to
    email or process effectively. Does anyone know how to reduce
    size/processing?

  • Header and Footer for PDF with images using itext.jar

    HeaderFooter class was available in itext.jar ,I tried using this class with PDFtemplate and Phrase i am trying to put the image on the header and footer ,however the image comes perfectly for the first page ,its not applicable for the second or continuous page, is it possible to have the images in header and footer?
    Regards,
    Venkateswaran

    Questions about third-party APIs should be asked in the forum/newsgroup specific to that API. These forums are for questions relating to the API as provided by Sun.
    Go find an iText forum.

  • Replace text with image using Applescript in InDesign CS5

    Hi to everyone, i'm looking for some suggestions to resolve my problem.
    I've to replace some strings with jpeg images stored on my pc
    Here is the code to replace two strings with the new ones.
    tell application "Adobe InDesign CS5"
              set myDocument to active document
              set myPage to page 1 of myDocument
              set stringsToReplace to {"111", "222"}
      repeat with iterator from 1 to (count stringsToReplace)
           set find text preferences to nothing
           set change text preferences to nothing
           set myFoundItems to nothing
           set element to item iterator of stringsToReplace
          if element is "111" then
               set find what of find text preferences to "111"
               set change to of change text preferences to "ONE"
               set myFoundItems to change text
               display dialog ("Found : " & (count myFoundItems) & " occurences of " & element)
          else if element is "222" then
               set find what of find text preferences to "222"
               set change to of change text preferences to "TWO"
               set myFoundItems to change text
               display dialog ("Found : " & (count myFoundItems) & " occurences of " & element)
          end if
              end repeat
      set find text preferences to nothing
      set change text preferences to nothing
    end tell
    Can you hel me?
    Thanks in advance.

    Hello, I have a couple of questions for you… How come you have strings in text frames… Would you not be better off using labels for this…? ( thats how I would do this ). Off the top of my head I think you will need to remove any text content from the frame to be able to change it's content type… only then will you be able to place a graphic… How are you associating your strings with the required image files… Do you have this in some extenal file Excel or FMP.

  • How do I download 'SMILEY CENTRAL ' with Firefox using a MAC with OS.X5

    I wish to download FREE 'SMILEYS' emoticons from Smiley Central .
    I use a mac computer complete with OS.x5 + Firefox and wish to use the 'smileys' in a forum I own.
    HOW do I do this PLEASE?

    Go to Tools -> Add-ons (CTRL+SHIFT+A) -> Click settings button on the top ->
    Select Install Add-on From File... option. Locate your .xpi file and Firefox will automatically install the add-on.

  • Creating PDF with IMAGE using CFDOCUMENT TAG

    Hi Guys,
    I m facing problem while creating the PDF using CFDOCUMENT
    tag.
    Actually my clients want the IMAGEs in PDF document.
    Problem is most of the images in JPG format and while I am
    going to attach images in PDF document it takes lots of time for
    creating PDF. In most of time it cause timeout.
    I have try to convert images JPG to PNG, yes I some what
    better performance than JPG format but still it is work for 20 - 25
    images. In my case I want to attach normally 50-100 images in PDF
    (sometimes it is more 200).
    PLZ, Help me.. F1...F1...F1
    thanks in advance
    Pritesh
    Coldfusion Programmer

    I am having a similar and more serious problem. It takes a
    long time to execute, but even attaching a small image balloons the
    pdf to 6MB plus. After a few images it gets up to 20MB. These are
    100k jpeg files being attached. The resulting PDF is too large to
    email or process effectively. Does anyone know how to reduce
    size/processing?

  • Send html page (with images) using sockets

    I am trying to implement http and am coding this using sockets. So it is a simple client-server set up where the browser queries my server for a webpage and it should be shown. The html itself is fine, but I can't get any of the images to show up! All of my messages give me a status "200 OK" for the images, so I cant understand what my problem is!
    Also, is the status and header lines supposed to be shown in the browser? I didnt think so but it keeps showing up when I query a webpage.
    Please help!
    import java.io.* ;
    import java.net.* ;
    import java.util.* ;
    public final class WebServer
         public static void main(String argv[]) throws Exception
              // Set the port number.
              int port = 8888;
              // Establish the listen socket.
              ServerSocket ssocket = new ServerSocket(port);
              // Establish client socket
              Socket csocket = null;
              // Process HTTP service requests in an infinite loop.
              while (true)
                   // Listen for a TCP connection request.
                   // (note: this blocks until connection is made)
                   csocket = ssocket.accept();     
                   // Construct an object to process the HTTP request message.
                   HttpRequest request = new HttpRequest(csocket);
                   // Create a new thread to process the request.
                   Thread thread = new Thread(request);
                   // Start the thread.
                   thread.start();
    final class HttpRequest implements Runnable
         final static String CRLF = "\r\n";
         Socket socket;
         // Constructor
         public HttpRequest(Socket socket) throws Exception
              this.socket = socket;
         // Implement the run() method of the Runnable interface.
         public void run()
              try
                   processRequest();
              catch (Exception e)
                   System.out.println(e);
         private static void sendBytes(FileInputStream fis, OutputStream os)
         throws Exception
            // Construct a 1K buffer to hold bytes on their way to the socket.
            byte[] buffer = new byte[1024];
            int bytes = 0;
           // Copy requested file into the socket's output stream.
           while((bytes = fis.read(buffer)) != -1 ) {
              os.write(buffer, 0, bytes);
              os.flush();
         private static String contentType(String fileName)
              fileName = fileName.toLowerCase();
              if(fileName.endsWith(".htm") || fileName.endsWith(".html")) {
                   return "text/html";
              if(fileName.endsWith(".jpg") || fileName.endsWith(".jpeg") ) {
                   return "image/jpeg";
              if(fileName.endsWith(".gif")) {
                   return "image/gif";
              return "application/octet-stream";
         private void processRequest() throws Exception
              // Get a reference to the socket's input and output streams.
              InputStream is = socket.getInputStream();
              DataOutputStream os = new DataOutputStream(socket.getOutputStream());
              // Set up input stream filters.
              InputStreamReader ir = new InputStreamReader(is);
              BufferedReader br = new BufferedReader(ir);
              // Get the request line of the HTTP request message.
              String requestLine = br.readLine();
              // Display the request line.
              System.out.println();
              System.out.println(requestLine);
              // Get and display the header lines.
              String headerLine = null;
              while ((headerLine = br.readLine()).length() != 0)
                   System.out.println(headerLine);
              // Extract the filename from the request line.
              StringTokenizer tokens = new StringTokenizer(requestLine);
              tokens.nextToken();  // skip over the method, which should be "GET"
              String fileName = tokens.nextToken();
              // Prepend a "." so that file request is within the current directory.
              fileName = "C:\\CSM\\Networking\\Project1" + fileName;
              // Open the requested file.
              FileInputStream fis = null;
              boolean fileExists = true;
              try {
                   fis = new FileInputStream(fileName);
              } catch (FileNotFoundException e) {
              fileExists = false;
              // Construct the response message.
              String statusLine = null;
              String contentTypeLine = null;
              String entityBody = null;
              if (fileExists) {
              statusLine = "200 OK" + CRLF;
              contentTypeLine = "Content-type: " +
                   contentType( fileName ) + CRLF
                   + "Content-length: " + fis.available() + CRLF;
              else {
              statusLine = "404 Not Found" + CRLF;
              contentTypeLine = "Content-type: text/html" + CRLF;
              entityBody = "<HTML>" +
                   "<HEAD><TITLE>Not Found</TITLE></HEAD>" +
                   "<BODY>Not Found</BODY></HTML>";
              // Send the status line.
              os.writeBytes(statusLine);
              System.out.println(statusLine);
              // Send the content type line.
              os.writeBytes(contentTypeLine);
              System.out.println(contentTypeLine);
              // Send a blank line to indicate the end of the header lines.
              os.writeBytes(CRLF);
              // Send the entity body.
              if (fileExists)     
                   sendBytes(fis, os);
                   fis.close();
              // file does not exist
                     else
                   os.writeBytes(entityBody);
              // Close streams and socket.
              os.flush();
              os.close();
              br.close();
              socket.close();
    }

    ok. i figured it out. STUPID mistake. i forgot to include "HTTP/1.1" in my status line!!!

  • Download to Excel with Images

    Hello
    The download to excel and PDF documents now includes images.  I have inlcuded images in my web templates to execute commands eg: Download to Excel, Bookmake etc.
    See below:
    img onclick="executeJS_EXPORT_XSLT120();" alt="Download to Excel" src="bwmimerep:///sap/bw/Mime/BEx/Icons/S_X_XLS.gif" border="0"
    These images are simply for command execution and look out of place and serve no purpose in the excel or PDF files.
    My Question:
    Is it possible to exclude these images in the docnload to excel and PDF?
    Thanks in advance.
    Ian
    Message was edited by:
            Ian Carbonel

    Thanks For your reply Prakash.
    This works well after some preliminary testing.
    Thanks
    Ian

  • How do I share video clips with others using the Starter Edition?

    I have many videos on my Photoshop Album Starter Edition account.  Is there a way to share videos using the Starter Edition program?

    I wonder the same thing. The icloud.com web page is pretty rediculous as of now.  What's the point of the page? Ive got an iphone that has my email, calendar, photos, etc.. what does the icloud page do? I think it's a work in progress cause I dont see a need to log onto it since my devices have all the info on it already? Yes, Id like to be able to log onto the icloud from work and see the pictures in my cloud.

  • Problems with dating downloaded images using Image Browser

    When I download a day's pictures with Image Browser to my Mac, and some images were taken before 5 p.m. and some after 5 p.m., any of them taken after 5 p.m.  are kicked into the next day's folder on my computer.
    My camera and computer dates are correct. Time zone (Pacific) is correct. Even my tech savvy son can't figure this one out. Can anyone help me? Thanks!

    Hey RJ, I was able to create it no problem using either Rectangle Tool with 10px roundness (left), or the the Rounded Rectangle Tool (right).
    See live example here with drop shadow.
    Download original sample file here.
    Couple of tips to remember.
    - Use .jpg (100 quality) or png for each of the slices for them to show 'smoothly'. (I notice your screen example uses .gif, and it's not recommended when drop shadows are used)
    - For the top/bottom make sure the slice extends just a tab bit beyond where the 'corner' on the shape occurs. Thats why your seeing a little 'extra' graphic on your edges.
    hope this helps
    h

  • Downloading images used to go automatically to the last folder used to save images, even when reopening Firefox. In just the past few days, possibly coinciding wih the most recent updates, the folder defaults to the 'Downloads' folder. This is most annoyi

    Downloading images used to go automatically to the last folder used to save images, even when reopening Firefox. In just the past few days, possibly coinciding wih the most recent updates, the folder defaults to the 'Downloads' folder. This is most annoying. What happened? Internet Explorer 8.0 did the same thing. This was one of the reasons why I started using Firefox to download all images. I went into Tools>Options and it only lets me set another folder. I dont want to set a specific folder I want it to always go to the last folder used. So what gives?
    == This happened ==
    Every time Firefox opened
    == possibly when the most recent updates were installed, a few days ago

    Thanks jscher 2000. I guess I didn't make it clear. "It restarts with all the addons activated, and resumes with the tabs that were open before closing it." IE, it's running fine now with all the extensions activated. Everything is OK now.
    So something in the Firefox code was causing the bad behavior. It's not essential that I find out what the problem was - I'm just curious. And if anybody else has this same problem, it might be nice to have it corrected at the source.

  • Problem with Image Capture Download Folders

    Hi there - I was wondering if anyone might be able to help with a problem I'm having with Image Capture (version 3.0.3 (333))?
    I use image capture to download photos from my digital camera and normally have no problems.
    When I tried to do some downloads this morning, my normal list of folders in the "Download to" drop-down box is completely blank. It didn't even have the "Other" option to chose a folder. The Automatic Task drop down was also blank, I could not open preferences and in the "options" box, the ColourSync profile would not load anything.
    I could not download the photos to anywhere - when I tried to "download some" it gave me an error message saying that I need to choose a download folder, but of course I am unable to do this.
    This morning I tried repairing permissions in disk utilities, and removing the com.apple.imagecaptureapplist file and rebooting as suggested here:
    http://discussions.apple.com/thread.jspa?messageID=10368631&#10368631
    but that hasn't worked completely. I can now download the photos but they just automatically go to the "Pictures". At least I can download them now, but if I can get the two drop down boxes working again, and the other things working (preferences etc), that would be great.
    One other thing, about a month ago I foolishly tried to rename my Home Folder without doing it the proper way. I had thought I had gotten everything back to normal with my library etc, but maybe there are a few unknown implications still out there, and this is one of them as I don't think I have tried to download any photos since then.
    Your help is greatly appreciated!
    Thanks,
    Antony

    Hi and thanks again
    OK:
    1. I found the photo and have put it back as the login page icon as close as I could to what it used to look like..
    2. I trashed the user's .com.apple.systempreference file but it didn't work.
    3. I then copied my .com.apple.systempreference file to their library>preferences folder but no luck.
    4. Finally, I noticed the other user account had no system preferences file in their "Applications" folder. So I copied the system preferences file from my application folder across and used that to open system preferences, and that has seemed to fix it, ie. system preferences now opens directly from the apple menu.
    So I am noticing a few things now:
    5. The other user's "Applications" folder doesn't have many applications in it. It only has:
    - Utilities
    - Adobe Version Cue CS2
    - Real Player
    - iTunes (which was only downloaded there recently - post Home Folder name change I think)
    - Imagecapture which I copied there yesterday
    - and now System preferences
    6. This is compared to my user account applications folder which has loads of other files in it, eg. Preview, Stuffit Expander, iDVD, iChat, Calculator, Chess, Skype, etc etc etc. I just can't remember if this was the case before the Home Folder rename.
    7. Now, my user account used to be the only admin account, so it makes sense that my "Applications Folder" has more in it because programs could only have been downloaded there for a long time. The other person's user account has only been an admin account much more recently - say in the last year and very few applications (if any) would have been downloaded there.
    8. Interestingly, while the other user account doesn't have the Skype or Preview file in their "Applications" folder, it does appear in their bar along the bottom of the screen that has the dashboard and finder icons (is this called the dock?).
    9. Anyway, if you are in the other user's account and you click on Skype, iCal, Word or Preview in their Dock for example, those programs open no problem so the dock icons must somehow have survived the Home Folder renaming and stayed linked to the corresponding files in my "Applications" folder? But some other programs, eg. system preferences, image capture etc didn't survive it and became "delinked".
    10. I also notice internetconnect still works in the other user account, even though there is no internetconnect file in that user's "Applications" folder.
    11. So it seems that some links between the other user and my account have been severed, and some have survived.
    Some other information:
    12. Everything that was on the other user's desktop appears to have been recovered since the Home Folder debacle (I think getting the Library back helped this?), and I managed to redo the desktop picture/wallpaper.
    13. I'm not sure if it is relevant, but in my account, Finder has a side bar on the left that is divided into an upper section and a lower section. The lower section has my home folder, a documents folder, a desktop folder, a pictures folder etc. On the upper section it has the macintosh disk icon, and also a Network Icon (that contains a library file and another file which I can't remember just now but can let you know if that helps). The other user account does not have the Network icon however. Do you think this might make a difference?
    14. In addition to the other user account there is also a guest account on this computer which has suffered the same problems, eg. not being able to open imagecapture or systempreferences. However, when I fixed the problems in the other user account by copying over the imagecapture and system preferences files from my account to the other user account, the problems in the guest account were automatically fixed!
    15. So it seems the guest login is somehow linked to the fixes in the other user account, but the other user account and the guest account are suffering some problems with links to my user account. Perhaps the latter was badly broken with the Home Folder rename incident?
    16. Finally, if you go into Finder while in the other user's account, you can navigate to the applications folder in my account and access all the applications there, ie. Macintosh HD>Users>MyHomeFolderName>Applications. My applications folder is not blocked like some of the other ones, eg. Library, Desktop, Pictures etc.
    17. Is there someway to re-establish the link between the other user account and my application's folder? I don't want to copy all the applications across even if I can do that, because it just takes up more space on the HD, but if that is all that can be done, then I will consider doing it...
    Thanks again BDAqua!
    Antony

  • Need to make a 20 second HD clip with a moving image background and text thats flies in...

    Hi all im quite new to after effects and need to make a 20 second HD clip with a moving image background and text thats flies in. I also need to create a basic cross image. If anyone could suggest the best way to go about doing this it would be greatly appreciated. Thank you in advance

    Thank you for both of your reponses and I will try and be clearer:
    what I want to acheive is a HD motion graphic of text which will almost spin onto the screen letter my letter and then a become static word. Behind this I would like to place a moving image clip.
    By 'basic cross image' what im looking to do is use a cruifix shape instead of a 't' on the text.
    I hope this makes sense and thanks again!

  • I have just changed over from a computer that was 11 years old, running Windows 98, to a new computer running Windows XP. With my old computer I could easily download video clips, they would open and play as soon as the download had ended. Now I have to c

    I have just changed over from a computer that was 11 years old, running Windows 98, to a new computer running Windows XP. With my old computer I could easily download video clips, they would open and play as soon as the download had ended. Now I have to click on the download box and click on "Play". Also, when I wanted to keep a clip, I just right clicked and a menu appeared and I would then click on "Save as" or similar. Now there doesn't appear to be any way to save the clips. Apart from a faster and more powerful computer I feel I've gone backwards. Can anyone help?

    Use the trackpad to scroll, thats what it was designed for. The scroll bars automatically disappear when not being used and will appear if you scroll up or down using the trackpad.
    This is a user-to-user forum and most people will post on here if they have problems. You very rarely get people posting to say there update went smooth. The fact is the vast majority of Mountain Lion users will not be experiencing any major problems with the OS, or maybe with apps which are not compatible, but thats hardly Apple's fault if developers don't update their apps.

  • I want to make a slideshow to view on my television with image's duration ranging from seconds to an hour or more and I want to use my iPhone or iPad mini to control the television through my Apple tv.  I've been unable to locate an app that will do this.

    I want to make a slideshow to view on my television with image's duration ranging from seconds to an hour or more and I want to use my iPhone or iPad mini to control the television through my Apple tv.
    I've been unable to locate an app that will do this.  The Photos app that comes with the phone or iPad has extremely limited duration controls.  PhotoStream seems to load everything from my phone or iPad not allowing me to just load up a set group of images.
    iPhoto for iPad is getting some terrible recent reviews.  I tried a couple other free apps but they don't use Airplay.
    I can do something like this with iPhoto and my MB Air, but it's kind of ugly to have the computer open in order to connect by Airplay to my Apple TV.  I've thought the iPad or iPhone would be a lower profile controller.
    Am I out of luck?

    Thanks for your help.  Since I'm uninterested in loading all my photos (the only option) into photostream, I won't be able to use the settings in ATV.  I guess I'm just stuck with using iPhoto on my MB Air.  Thanks again.
    paul

Maybe you are looking for

  • How to use a particular GWIA on a per user basis

    Have recently had to enable the /flatforward and /realmailfrom switches on our primary GWIA, with interoperability with another in-house mail system. This has caused some "reply looping" issues from our groupwise users when then enable a "Out of offi

  • MacBook Pro unable to boot up [Stop Sign], after rEFIt Installation

    I was trying to install Windows on my MacBook Pro, Intel Based. Followed this tutorial, http://riactant.wordpress.com/2009/02/25/install-windows-on-boot-camp-using-exte rnal-usb-optical-drive/ Downloaded and installed rEFIt and rebooted my MacBook Tw

  • Posterization in Lightroom 4.4 and Photoshop CS6

    I'm struggling with posterization in Lightroom 4.4 and Photoshop CS6.  I'm shooting RAW on a Nikon D800.  Unedited bright sunset photos show nasty posterization.  Screenshot is included, unedited.  Any suggestions on what to do about this?

  • Depreciation in Cost Center

    Dear All I have a query regarding Depreciation in Cost Center. While creating Asset Master Record, We assign a Cost Center. When I run Depreciation run and post the depreciation, the Cost Center does not get booked with the depreciation amount. Pleas

  • Old problem - need a reminder

    I have an old dw site with lots of font tags with size="2" newer versions of DW 8, (with css option on) shows all this text is micro smudges on the screen. is there an easy way to override size property with css, or safely use find and replace to adj