I need to know save media file to my device

Dear sir, I need to know and how to save media file(songs and video from website) to my device. Thanks. Janambist

Sorry, but I do not understand your question. Would you please explain in more detail? If you're not comfortable in English, try posting in your native language.
Regards.

Similar Messages

  • Couldnt Save Media File

    Hi.
    This is what happens when i drap an mp3 onto a page in iweb. I know everyone else gets this error and im wondering what to do about it. It says:
    The following errors occured while trying to save this document:
    Type: | Description:
    Couldn't save media file | Filename.mov
    Anyone who can help........ please do as im so frustrated!!!!
    Thanks, Ben

    Usually what I'd do at this point is to work back to a point where it does work and see if that helps you determine if there's a problem file. For example, delete all the mp3's then save. Quit, reopen iWeb, add one, then save. If that works, add another then save. If it fails on the first one, then it's more of a general problem that may be easier to resolve. If it fails on a specific one, then you can attempt to convert that file to see if that helps.

  • Need to know the jar file...?

    Hi,Iam writing an java program which is going to send messages to the remote websphereMQ server,program compiled successfully while in execution it throws error.The prgram is
    com/ibm/jvm/ExtendedSystem/*
    Use source code downloads, example commands,
    and any other techniques at your own risk.
    No warranty is provided.
    import java.util.Properties;
    import javax.jms.JMSException;
    import javax.jms.TextMessage;
    import javax.jms.Queue;
    import javax.jms.QueueConnection;
    import javax.jms.QueueConnectionFactory;
    import javax.jms.QueueSender;
    import javax.jms.QueueSession;
    import javax.naming.Context;
    import javax.naming.InitialContext;
    import javax.naming.NamingException;
    import java.util.Hashtable;
    public class Sender {
         String url_;
         String name_;
         QueueConnection conn = null;
         QueueSession session = null;
         Queue queue = null;
         public Sender(String url, String name) throws JMSException, NamingException {
              url_ = url;
              name_ = name;
             this.initializeSender();
         private void initializeSender() throws JMSException, NamingException {
         /*      Properties props = new Properties();
              props.setProperty("java.naming.factory.initial","org.jnp.interfaces.NamingContextFactory");
              props.setProperty("java.naming.factory.url.pkgs", "org.jboss.naming");
              props.setProperty("java.naming.provider.url", url_); */
              String icf = "com.ibm.websphere.naming.WsnInitialContextFactory";
              //String url="iiop://192.168.2.45:1421";
              // Initialise JNDI properties
              Hashtable env = new Hashtable();
              env.put("java.naming.factory.initial",icf);
              env.put("java.naming.factory.url.pkgs","com.ibm.ws.naming");
              env.put("org.omg.CORBA.ORBClass","com.ibm.rmi.iiop.ORB");
              env.put("org.omg.CORBA.ORBSingletonClass","com.ibm.rmi.corba.ORBSingleton");
              env.put("javax.rmi.CORBA.UtilClass","com.ibm.rmi.javax.rmi.CORBA.Util");
              env.put("javax.rmi.CORBA.StubClass","com.ibm.rmi.javax.rmi.CORBA.StubDelegateImpl");
              env.put("javax.rmi.CORBA.PortableRemoteObjectClass","com.ibm.rmi.javax.rmi.PortableRemoteObject");
              env.put("java.naming.provider.url",url_);
              InitialContext context = new InitialContext(env);
              QueueConnectionFactory qcf = (QueueConnectionFactory) context.lookup("QCF");
              conn = qcf.createQueueConnection();
              queue=(Queue)context.lookup(name_);
              session = conn.createQueueSession(false,QueueSession.AUTO_ACKNOWLEDGE);
              conn.start();
          public void send(String text) throws JMSException, NamingException {
              QueueSender send = session.createSender(queue);
              TextMessage tm = session.createTextMessage(text);
              send.send(tm);
              send.close();
         public void disconnect() throws JMSException {
              if(conn != null) {
                   conn.stop();
              if(session != null) {
                   session.close();
              if(conn != null) {
                   conn.close();
         public String getTopicName() {
              return name_;
         public String getTopicURL() {
              return url_;
         public static void main(String args[]) throws Exception {
              System.out.println("Starting JMS Example Sender");
                Sender sender = new Sender("iiop://192.168.2.45:1421", "ASMQUEUE");
                 System.out.println("Sending list of data");
                 sender.send("Krishna Moorthy");
                 sender.disconnect();
                      System.out.println("JMS Example Sender Complete - list sent");
    }During Execution followng error occurs,
    D:\jboss-4.0.5.GA\WebSphere_JMS>java Listener
    Starting JMS Example Listener
    performing lookup...
    Error creating listener: javax.naming.NamingException: Failed to initialize the
    ORB [Root exception is org.omg.CORBA.INITIALIZE: can't instantiate default ORB i
    mplementation com.ibm.CORBA.iiop.ORB  vmcid: 0x0  minor code: 0  completed: No]
    javax.naming.NamingException: Failed to initialize the ORB [Root exception is or
    g.omg.CORBA.INITIALIZE: can't instantiate default ORB implementation com.ibm.COR
    BA.iiop.ORB  vmcid: 0x0  minor code: 0  completed: No]
    at com.ibm.ws.naming.util.Helpers.getOrb(Helpers.java:293)
    at com.ibm.ws.naming.util.WsnInitCtxFactory.getInitialContextInternal(Ws
    nInitCtxFactory.java:365)
    at com.ibm.ws.naming.util.WsnInitCtx.getContext(WsnInitCtx.java:102)
    at com.ibm.ws.naming.util.WsnInitCtx.getContextIfNull(WsnInitCtx.java:40
    8)
    at com.ibm.ws.naming.util.WsnInitCtx.lookup(WsnInitCtx.java:131)
    at javax.naming.InitialContext.lookup(InitialContext.java:351)
    at Listener.initializeListener(Listener.java:78)
    at Listener.<init>(Listener.java:31)
    at Listener.main(Listener.java:112)
    Caused by: org.omg.CORBA.INITIALIZE: can't instantiate default ORB implementatio
    n com.ibm.CORBA.iiop.ORB vmcid: 0x0 minor code: 0 completed: No
    at org.omg.CORBA.ORB.create_impl(ORB.java:297)
    at org.omg.CORBA.ORB.init(ORB.java:336)
    at com.ibm.ws.orb.GlobalORBFactory.init(GlobalORBFactory.java:77)
    at com.ibm.ejs.oa.EJSORBImpl.initializeORB(EJSORBImpl.java:174)
    at com.ibm.ejs.oa.EJSClientORBImpl.<init>(EJSClientORBImpl.java:98)
    at com.ibm.ejs.oa.EJSClientORBImpl.<init>(EJSClientORBImpl.java:74)
    at com.ibm.ejs.oa.EJSORB.init(EJSORB.java:386)
    at com.ibm.ws.naming.util.Helpers.getOrb(Helpers.java:284)
    ... 8 more
    Caused by: java.lang.NoClassDefFoundError: com/ibm/jvm/ExtendedSystem
    at com.ibm.rmi.util.JDKBridge.setCodebaseProperties(JDKBridge.java:226)
    at com.ibm.rmi.util.JDKBridge.<clinit>(JDKBridge.java:205)
    at com.ibm.rmi.util.RepositoryId.<clinit>(RepositoryId.java:122)
    at com.ibm.rmi.iiop.CDROutputStream.<clinit>(CDROutputStream.java:1077)
    at com.ibm.rmi.corba.ORB.<init>(ORB.java:250)
    at com.ibm.rmi.iiop.ORB.<init>(ORB.java:166)
    at com.ibm.CORBA.iiop.ORB.<init>(ORB.java:521)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstruct
    orAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingC
    onstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
    at java.lang.Class.newInstance0(Class.java:350)
    at java.lang.Class.newInstance(Class.java:303)
    at org.omg.CORBA.ORB.create_impl(ORB.java:295)
    ... 15 more
    Done listening
    In my application classpath following jars are used : jms.jar,naming.jar,namingClient.jar,ibmorb.api,ibmorbapi.jar,jndi.jar
    I need to know the jar file name for this class : com/ibm/jvm/ExtendedSystem.And also tell me the solution to solve the above error.Anyone know the solution please reply as early as possible..Thanks in advance

    Have you checked if any of the jar files in your class path contains the missing class ?

  • "couldn't save media file" error when saving

    I'm using Keynote 2.0.2 and for some reason, it won't let me save my presentation when it includes a 3.3Gb quicktime .mov file.
    The presentation runs perfectly on my laptop, but when I save, the spinning ball appears and then I get this:
    "The following errors occurred while trying to save this document:
    Couldn't save media file - week3edit.mov"
    This is driving me nuts, especially as I can insert exactly the same .mov file into a PowerPoint presentation and have it save no problem!
    What could be causing this? Thanks in advance for any suggestions!
    Barry

    Use only numbers or letters in the file name. I've
    seen failures in files that use even simple
    punctuation. Cynthia's sound.mov should be
    cynthias_sound.mov.
    The other issue could be "protected" files. You can't
    share iTunes Music Store files. If the file extension
    is .m4p the file is protected.
    These are .mp4 files that I converted. No copyright issues. And there is a space in the file name, but there are in all the other file names as well.
    Weird, huh?

  • How to save media files (mp3) on ipad?

    I have seen that iPad only plays songs/videos directly if we try to download them even from download link? Can anyone help me how to save those songs/videos instead of playing them without using third party application? or if third part then which one apps should i have to use?

    First thing, media files are like usual files (binary files to be specific). So, all the methods which are applicable to binary files can be used for media files as well.
    1. upload media files into local drive (ex...from c:\tmp1\movie.mpg to d:\tmp2\movie.mpg)This is very simple file copying, see: [http://java.sun.com/docs/books/tutorial/essential/io/bytestreams.html] .
    I have used data sink. but i am stuck.. it is not storing..Why you tried data sink? Do you have a processor to transcode the media file into another format ? Is it transcoding that you want to achieve?
    2. for transferring files over n/w, I know how to zip and unzip other files and process those at client side..but i want to know, Is there any special method available for 'media files'?.No (atleast I don't know....)
    @captfoss: I agree with you.
    Thanks!

  • HELP! Need CS2 to save InDesign file as .inx so I can open it in CS

    I have CS3 and I need to save an InDesign file created in CS3 as an .inx file that can be opened in CS. I found out the only way to do this is to open it in CS2 and export it as an .inx file, but I don't have CS2.
    Will someone out there with CS2 save the file as an .inx file for me please if I e-mail it to you?
    Thanks!

    There are four ways that I know of:
    1) Play the DVD and have the player's analog outputs connected to your DV VCR or camcorder, which then acts as a convertor to bring it into FCP
    2) MPEG StreamClip - FREE, rips the video and audio from the VIDEO_TS folder
    3) DVDxDV - $20 or so, does the same thing as MPEG-Streamclip only a little easier, IMO
    4) Cinematize - $70, same thing, more options

  • How to save media files

    hello all,
    I am creating an application where there is a provision of uploading media files from any location of local drive into user specified path...and also i want to transmit those files as a zip file over network..if it is possible, then how i can i process those files(from zip file)in the client machine......please help me doing this.
    thanks in advance..

    First thing, media files are like usual files (binary files to be specific). So, all the methods which are applicable to binary files can be used for media files as well.
    1. upload media files into local drive (ex...from c:\tmp1\movie.mpg to d:\tmp2\movie.mpg)This is very simple file copying, see: [http://java.sun.com/docs/books/tutorial/essential/io/bytestreams.html] .
    I have used data sink. but i am stuck.. it is not storing..Why you tried data sink? Do you have a processor to transcode the media file into another format ? Is it transcoding that you want to achieve?
    2. for transferring files over n/w, I know how to zip and unzip other files and process those at client side..but i want to know, Is there any special method available for 'media files'?.No (atleast I don't know....)
    @captfoss: I agree with you.
    Thanks!

  • I need help.  Lost media files.

    Ok, here goes. I am an idiot. There, I admit it. Now, onto my problem.
    I have a imovie6 project file I wanted to back up to an external hard drive. The problem is that I did not realise it was already formatted FAT32 instead of MAC OS Extended. So, rather than reformat (I still run some of the Evil Empire software) I decided to split the project file with Split Concat 2.5
    The problem is, I had no idea what I was doing. Nothing appeared to happen when I split the file even though it said all was completed. I tried to Concat the same file and it could not find the files. The size of the file appears to be similar (huge at 34.66 GB). When I tried to open the file, it could not find any clips.
    I admittedly corrupted the thing somehow. I realize that. I opened the contents package of the project file and found the tilde file. After I moved the non-tilde file in the trash, I renamed the tilde file to match the non-tilde project name and had the same results when opening that file, ZERO clips, media etc... available.
    Then I opened the media contents imovie folder for the project and see it is empty. I am not sure if this is normal, but the project file still says its a whopping 34.66 gb. Is anyone up to trying to help me with this?
    OK I FORGOT ONE THING:
    I made a copy of the DV files BEFORE I STARTED EDITING AND ASSEMBLING THIS THING. The media files are on my external drive. I can place those in the media contents package folder in the editing file, I guess. BUT, why would the editing project still show over 34 GB in size if it is emptied of media? If, as a last resort, I replace the media files with the originals, will my editing still be saved and recorded (titles, songs, narration, etc..) or will it be like starting over? Where is the record of what was edited and titled in an IMOVIE project file?
    It's my brother's wedding video. This qualifies as dumbest disaster yet.....
    Thanks for any advice,
    James
    imac 24" 2.16   Mac OS X (10.4.8)  

    Hi lovinmymac - welcome to this forum and the Mac world in general!
    Yep, you sure have tinkered with your brother's precious wedding record!!
    I have no idea what the 'splitting' of the project file was all about, nor what caused the project to be placed in hidden folders.
    From here on it would be pure guess-work and trial and error:
    1. Try playing the Timeline movie - if that plays, it can be imported into a new iMovie project (should all else fail). This will create a large single clip - you will not be able to re-work titles etc but at least it will allow some editing.
    2. You could try dragging the contents of each folder into the Media folder of the original project - but they may have been corrupted by the rather extraordinary process that they have been subjected to (I have no idea for example what .wvf and .snp files are - Windows extensions??). Then open the project and see if anything functions.
    Important:
    You must not place imovie projects in a Windows-formatted external drive.
    You must not in future tinker with the contents of the iMovie project package, or re-name parts.
    Hopefully others will join in to help with suggestions.

  • I need to know where are files stored when you save an image from an email

    I downloaded print central and can print from it, but how do I get an attachment to save inside to print central?

    there should be classes for newbie and advanced (not in age) and I would think they would if there are enough, have classes aimed at elderly as well - many need to and love to keep in touch with far-flung family and friends through Skype, video, IM and other new social formats.
    I know my father went to classes for awhile when he got a laptop and the classes was one of the reasons he choose the store he did, and had it custom configured for him (the computer, not the adult class).
    For many, just getting someone to understand what RAM and storage and what virtual memory vs real is a stretch of imagination. And we see that here with some questions.
    Try explaining 3D to someone that lives on a mobius strip in a flat world.
    One idea:
    I would think there are YouTube courses to follow at home on your own and that can output from computer to a TV or view on a tablet (and iPod and tablets output to TVs just fine too).

  • Save media file captured from client to server

    Hi all,
    I need to capture webcam at client side and save it to the server.
    I am thinking of two solution:
    1) save file to client computer then upload to server.
    2) streaming to server simultaneously while capturing.
    If I choose the second method, I should you the RTP feature right (I don't have exp with it)? Or the first method is better?
    Thanks you all
    Regards
    K.

    If your usage scenerio doesn't involve the word "live" then you want to avoid anything that involves the term "real-time" as any actual real-time system intentionally drops data anytime the processing gets behind.
    Option 1 is going to be easier to implement, but option 2 will save the user some time. Option 1 is going to be less hardware intensive, so it really depends on whether or not you want to (1) invest more work upfront to make your program terminate faster (2) care whether or not your users have to wait there while the file uploads after the recording ends (3) want to give your users the ability to review the video before they upload it (which I would recommend for most applications).
    I'd definately just do option 1 unless you have a good reason to need option 2.

  • HELP - I need to know how to file a complaint with Verizon Management​!

    On Thursday, May 30th, I returned to Verizon Fios after being with Comcast for less than 30 days. The technician was not able to properly install my telephone service. It has been 5 days and I still do not have a home phone. I finally located a repair ticket online, and it said the problem would be fixed June 2nd 9pm, will that time has passed. My kids are going back to school today, and I will have no way of knowing if they made it home or not because I can not call them. Verizon begged me to come back and this whole thing has been a nightmare. When I look online I don't even recognize the bundle info on the screen, it doesn't match my order emails at all, and it shows that I don't have telephone service on my acct, though I have a triple play bundle, that doesn't make any sense. I think I have been more than patient, five days is a very long time. I can't even give my kids my cell, because it is a cell provided by my job. Who do I complain to!

    Please go to your profile page for the forum by clicking on your name, and look at the top of the middle column where you will find an area titled "My Support Cases".
    There you will find a link to the private board where you and the agent may exchange information. This should be checked on a frequent basis as the agent may be waiting for information from you before they can proceed with any actions. Please keep all correspondence regarding your issue in the private support portal.
    If a forum member gives an answer you like, give them the Kudos they deserve. If a member gives you the answer to your question, mark the answer that solved your issue as the accepted solution.

  • I need to know how to file a complaint against Addmired, Inc

    I have been playing the games offered by Addmirred Inc (iMob, Global War, Original Gangstaz) as do my kids.  I am being harassed continually by several other players in these games, and repeated attempts to contact Addmirred do no good at all.  I have tried to contact the developers of the game using their posted twitter feed, through Facebook, even sending emails reporting the harassment and threats using the "Contact" form on their company website.  I have received no response.
    I am unable to even play the games because of the level of harassment and attacks..  and while this is a small detail my 12 year old son also plays their games and I don't want HIM to find himself being targeted by people the way I have been.  The games are rife with hackers, players who have no weapons, no 'gang', and yet can destroy a legitimate player with only a few hits. 
    I have paid money into these games for extra points to help in building my game strength, and have also paid money for my children to do so as well.
    In a multi-player game like this, there should be some way to report such blatant harassment and yet there is not.  You can click a 'report' button but it does nothing.  I have been sending reports and trying to reach someone at this company for some time, and at this point am going to make my kids remove their games from their ipods / iphones as well as remove their products from my iphone as well.   A game should be a bit of fun, not a place to be subjected to profanity, threats, and constant harassment from a few people who have jailbroken phones or ipods and are able to cheat by hacking the game.
    There has to be a way to complain to Apple about the level of harassment taking place in these games...
    Anyone know how?

    Please post this question in the database forum for an appropriate response: General Database Discussions
    Regards,
    OTN

  • Media cache files do I check the save media box

    I am trying to optimize my system and under the preferences under media it is set to the default on the C: drive.  Here is my setup I have a 1TB C:\ for OS and programs and four 1TB drives setup Raid 5 which is my D:\ drive and 24GB of Ram.  If I understand correctly I should set my Media cache files and Media cache Database to the D:\ drive?  If I check Save media files next to originals dose this do the same thing?  Also with 24GB of ram what and where should I set my pagefile to?

    Your raid is nearly three times faster than your boot disk, so I would put the media cache files next to your projects on the raid. With 24 GB memory, the location of the pagefile is not really important, since it will hardly be used, due to the good memory management of PR. If you use on-board IHCR, you may put the pagefile on C because the IHCR is pretty slow in comparison to a dedicated controller.

  • Why does Apple not want me to know where my files are?

    There is one aspect that I find absolutely ridiculous and frustrating on Mac-OS. When I'm in Apple applications, it is impossible to find out where the file I'm working on is. For example, I have multiple files in my system, in different directories, lets say direcotories AA and BB and the file is called FooBar.txt. I open one of them in TextEdit. Great. Now I want to know which file I'm editing, AA/FooBar.txt or BB/FooBar.txt.
    Traditionally, I would go to File and do a "Save As" and devine where the file is by where TextEdit thinks I need to save a new version of the file. Unfortunately, this is no longer available in Lion.
    Okay, I understand that Mac is now doing verisions and the "Save As" was a user hack ... but it worked. I have tried to go to the Files->Properties, no luck this is just metadata about the contents of the file entered by the user, not system metadata about where the file is located, its size, owner, etc. I do not want to have to make a Dupicate of the file just to find out where when I do the save its going to put the file. I don't want a duplicate, all I want to know is where is the file I'm currently looking at.
    I know this is all part of the mis-guided Apple idea that I shouldn't care about where my files are stored ala iPad and Apple iCloud and that I can find my files using Finder, but the reality of the situation is ... I do care where my files are stored. The files afterall belong to me not to Apple and Apple does allow me to have a directory tree structure which I choose to use to organize myself.
    Yes, I know that Finder is wonderful and to unsophisticated users, this is all they need. But for those of us who are more sophisticated, we want-to and need-to know where our files are. And, yes, we will have many files with duplicate names.
    As for Finder, I would like to be able to have a column dispolayed that lets me see where the files it found actual are. Then I want to sort on this. As far as I know, the only way to do this is to go to finder, type in the name of the file, then choose the Show all in Finder and then click on each file which then shows me a directory breadcrumbs on the botom of the screen. Again, this might be acceptable to the unsophisticated user, this is very awkward to the sophisticated user. Example, I find a file called xml.config. Great. I now want to not only edit the file but to open up a Terminal in the directoy where I found the file xml.config. Again, I know that a Terminal is not a thing an unsophisticated user wants-to or needs-to do. However, this is a feater of Mac-OS and I want to use it. yes, I can co through the Unix CD command and ultimately get there, but what a pain!!
    So, hopefully, all you very sophisticated users will just point me to the right settings, swtiches and commands to make my life easier or that your designers will try to look at the sophisticated use cases and provide us with new tools, commands and options to make our lives easier. At the present, these frustrations remind me of the Microsoft ... we know beter .. attitude. So please, proove me wrong ;-)

    While most likely not of interest to you, Spotlight can also tell you where the files it finds are located
    Hover the mouse pointer over the name, and press Command-Option and the path to the file will be displayed.
    As for opening a terminal session in the directory where a file is located, there is Applescripts that do just that as well as specific features in Lion/Mountain Lion terminal:
    <http://stackoverflow.com/questions/420456/open-terminal-here-in-mac-os-finder>
    <http://hints.macworld.com/article.php?story=20110729034827358>
    <http://www.macworld.com/article/1047793/folderinterm.html>
    <http://www.macworld.com/article/1161876/open_finder_folder_in_terminal.html>
    <http://www.macobserver.com/tmo/article/os_x_lion_open_a_folders_location_in_term inal>

  • Crossgrade Upgrade Not working with previous LiveType Media files

    I have recently received the crossgrade discs and was able to successfully upgrade FCP, Motion, DVDSP...however, when it came to LiveType...and requested the previous LiveType Media discs, the installer didn't seem to recognize the first disc, and spit it out, thus stalling the rest of the install...anyone else experienced this issue, or have any suggestions?

    None of what I posted you should need the device for. Now if you did not delete any folders then it should snap back to where the file was stored in the first place. If you still have issues it is possible for you to search for the files though windows. This maybe a little work around that you may need.
    If Garmin did not change any of the files types then this maybe the trick. Using the search function look for .dat or .bak you may find some under the palm/[Hotsync Username].
    Next thing would be to see if Garmin could help you. From what it sounds you just need to know where the file location is and an old forum board or KB just might help you.
    Post relates to: Treo 800w (Sprint)

Maybe you are looking for

  • Compare two dates in a report

    Hi, I would like to compare two dates on a report. I would like to compare the opportunity created date and the opportunity modified date. I can't use this formula CASE WHEN Opportunity."Last Modified" = Opportunity."Created Date" then 1 else 0 I thi

  • Dynamic graph in Smart Forms

    Hi I have searched the forums and noticed this question has been put forward many times but without a complete solution. I have so far managed to use the IGS to create a .JPG/PNG file for me. I seem to have an error while trying to create a BMP file,

  • Burn DVD from HF100 camcorder on Mac OS?

    I can edit using Imovie, but I can't burn a DVD,

  • Configure for Report writer

    Hi I have a ZZZZ transparent table with data, that is not a pool or cluster table, and would want to be able to use Report Writer to search from this table and create RW reports. 1. Is this possible? 2. What are the set up tables needed to configure

  • Update former versions of data

    Hi, is it possible to update the former versions of data without creating workspaces. Thank you in advance.