How to save mp3 audio file from website?

Is it possible to save an mp3 audio file found on a webpage -- http://..... .mp3 -- to my computer?  It's the typical scenario of a black page with just a playback bar, plus a 'go back 30 seconds' button, pause/play button, time counter and volume button.  Is it possible for this described situation?
I believe I've also seen pages with similar playback back but also has a dropdown arrow on the right, but I don't remember what was in it.
Thanks!

No, not from AL11.
Execute a function module in SE37
From client(work station or desktop) to Application server execute this function module:
ARCHIVFILE_CLIENT_TO_SERVER
provide source file path (ie client workstation or desktop file path)
provide target file path (in application server)
Hope it helps.
Regards

Similar Messages

  • HT1473 how do i save an audio file from a webpage to iTunes?

    how do i save an audio file from a webpage to iTunes?

    If the web page is designed to let you save files it will often have a download link, or if it is a link to the file directly you can try to right click on the file.  If it isn't set up that way then they probably don't intend for the file to be downloaded.

  • How do I transfer audio files from my laptop to my iPod classic

    How do I transfer audio files from my laptop to my iPod

    Thank you for using the Apple Support Communities
    You can synchronize audio files from iTunes to your iPod.
    https://www.apple.com/support/ipodclassic/how-to/
    -Zeph

  • Upload mp3 audio files from imac onto my facebook page?

    This is more of a facebook related query, but can I upload audio files from my imac onto facebook. I only see see options to load photo and video files. Also how does one delete unwanted photos that others have posted on my facebook page?

    Not when that is the answer and poster do not bother to read it
    You DO NOT have an iPhoto issue - you have a third party software issue - and the answer is to contact the software provider - Not really a difficult concept for most people - contact the author for help with their product
    LN

  • How to read an audio file from the disk and play it?

    Do you know who to read an audio file from the hard disk and play it. It's for an application and not an applet. I tried with the Applet.newAudioClip(URL url) thing, but I keep getting a MalformedURLException.
    And is there a way to get the path of the file you are using? Currently I'm doing this:
    File file = new file("randomname");
    string = file.getAbsolutePath();
    file.delete();
    I'm sure there's a better way. And this is not for an applet, just a normal app.

    Below is a class that should be of use to you.
    package com.sound;
    import java.io.File;
    import javax.sound.sampled.AudioFormat;
    import javax.sound.sampled.AudioInputStream;
    import javax.sound.sampled.AudioSystem;
    import javax.sound.sampled.Clip;
    import javax.sound.sampled.DataLine;
    public class SoundPlayer implements Runnable {
         String filename;
         public SoundPlayer(String filename){
              this.filename = filename;
              Thread t = new Thread(this);
              t.start();
         }//SoundPlayer constructor
         public void run(){
              playSound();
         }//run method
         public boolean playSound(){
              try {
                   File file = new File(filename);
                   AudioInputStream stream = AudioSystem.getAudioInputStream(file);
                   AudioFormat     format = stream.getFormat();
                   DataLine.Info info = new DataLine.Info(Clip.class, format);
                   Clip clip = (Clip)AudioSystem.getLine(info);
                   clip.open(stream);
                   clip.start();
                   while (clip.isRunning()) {
                       Thread.sleep(100);
                   clip.close();
              catch (Exception e) {
                  System.err.println("Error in run in SoundPlayer");
                   return false;
              return true;
         }//playSound() method
    }//Class SoundPlayer

  • Downloading audio file from website

    I'm trying to download an audio file (mp-3) from a website to save it and possibly burn it to CD, but I'm not having any luck. There is no download link or anything that comes up. Is it possible it cannot be downloaded? How do I tell if it is blocked somehow?

    hi,
    >>>>I search forum and one solution is to create a BPM started by batch job with dummy message which will pick up file from the website by java proxy. I would like to avoid BPM and dummy message from SAP system.
    you can also do it like this:
    start a BPM with a dummy message - this BPM will only start an
    async java proxy that will fetch the file and post it to XI (with no BPM - just to
    a java proxy server)
    this way you will only use a BPM to call fetching the file
    but it will not process it anymore
    what you need to consider it the use of application acknowledgments
    (so you will know that the proxy worked)
    also the configuration for the proxy call (http dest etc)
    will have to be stored somewhere (web interface to configure)
    Regards,
    michal
    <a href="/people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions"><b>XI / PI FAQ - Frequently Asked Questions</b></a>

  • How To save a music file from an email

    PLEASE HELP ME I CANT FIGURE OUT HOW TO SAVE SONG FROM MY ITUNES LIBRARY THAT U SENT TO MY EMAIL
    Post relates to: Pixi Plus p8wu0 (AT&T)

    Open email attachments
    You can receive any kind of file sent to you in email, but you can open an
    attachment only if your phone has an application that can open the file type.
    To open a single attachment: Tap the attachment name to download the
    attachment. If the attachment is a supported file type (MP3, PDF, DOC,
    XLS, PPT, GIF, or JPG), it opens automatically.
    To open multiple attachments: Tap the list of attachment names to view
    the attachments, and tap an attachment name to open the file.
    Save attachments;
    When you open attachments of certain file types, you can save them to your
    phone so you can view them later in one of your phone’s applications.
    1. Open the attachment (see Open email attachments).
    2. Do one of the following:
    • For pictures in JPG, GIF, BMP or PNG format, tap Copy To Photos.
    • For other file types, open the application menu and tap Save As. If
    the Save As menu item is not available, you cannot save the
    attachment.
    To open a saved attachment on your phone, open the application that can
    display the attachment. The attachment appears in the list of available files.
    Tap the file to open it.
    You can find this info. on page 74 of the user guide.
    For reference purposes, click on the following link for the support page for your device on the kb.palm.com webpage.
    http://kb.palm.com/wps/portal/kb/na/pixi/pixi/att/home/page_en.html
    There are links on the page to the user guide, troubleshooting, how to's, downloads, etc.

  • How to play an audio file from the begin.........

    Hello to everybody,
    I am working on a application that is supposed to manage audio file. At the moment I 'm using the SourceDataLine instead of the Clip. But I've got a problem. When the user pushes the Stop button I want that if he pushes Play again the track starts from the begin. I've used the drain() and flush() method but it doesn't work because the track resumes from the point when has been interrupted. Here part of the code:
    @Override
    public void run()
    try
    if(dataline!=null)
    dataline.open(audio_format);
    dataline.start();
    int i=0;
    while((i=audio_input_stream.read(buffer, 0, buffer.length))!=-1 && flag==false)
    if(i>0)
    dataline.write(buffer, 0, i);
    dataline.drain();
    dataline.stop();
    dataline.flush();
    dataline=null;
    dataline.close();
    And also I'd like to know how to navigate through the audio file by a slider or something like that, so how much time is passed.
    Thank you in advance.
    Maurizio Di Vitto

    mauriziodvt wrote:
    I've tried to use it but I found out that if I use quite large wav files an exception is thrown, Aha! I expected as much. That is why I developed BigClip.
    ..so I thought to change to SourceDataLine even if Clip has the right stuff to manage my audio files. So what do you suggest? Is there a way to avoid such problem? I mean, how can I be sure that I'm able to use every wav files? Not every WAV file can be opened using SourceDataLine, but if SDL can open it, so can BigClip.

  • How can I tranfer audio files from my iPhone 5 to my laptop?

    Is there a way to transfer audio files (not music but an audio recording) from my iPhone 5 to my laptop?

    Yes, you will need to connect the phone to the computer and iTunes, and check sync voice memos on the Music tab.
    See page 106 of the User Guide http://manuals.info.apple.com/en_US/iphone_user_guide.pdf

  • How do I import audio files from itunes to my project?

    I know this could be very easy, I've imported music files from disc to projects before, but they keep going off line. So I want to find out an easier/better process to import music files from itunes into my FCP projects.
    G5: 1G,   Mac OS X (10.4)  

    #5 Imported music from CD or iTunes
    Shane's Stock Answer #5:
    To get music into FCP, it needs to be an AIFF file at 48khz, 16 bit stereo. So if you want a song from a CD, you go into the iTunes Preferences and set this up under the IMPORTING tab:
    File > preferences > importing > import using - AIFF encoder > Setting - Custom
    Sample Rate - 48.000 kHz
    Sample size - 16 bit
    Channels - Stereo
    If you have an mp3 that you want to use, then you can convert it thru iTunes as well.
    If the piece of music you want to use is something you purchased thru iTunes, I'm afraid I can't help you there. There are copywrite issues that prevent files from being converted into the format that FCP can recognize.
    Shane

  • How to save my PDF file from Acrobat to my document in my Adobe Reader in my iPad ???

    I can't save my file from the Acrobat to my iPad Adobe Reader ....... This make me difficult to save things in my iPad ..... I really need someone help !!!!

    You can move any pdf file from your computer to your Reader iOS app with the iTunes application using its sync capability. You can also place the pdf on the web and use Safari or email it to yourself (and use Mail) to get the pdf into Reader for iOS. When you get a link to a pdf you can tap the link to view the pdf file file. When viewing the pdf file you can tap the pdf file again and you will be given a choice of applications you can use to opening the pdf file in the app will transfer the pdf to the application's sandbox.

  • How to transfer an audio file from my laptop to my ipod?

    I need to tranfer an audio file to my i pod. How could I do that?

     
    Syncing Music to iPod 

  • HELP! How to save resultset (NOT file) from server databse on local machine

    Our JSP web system allows our clients to be able to search data from the server-side database and then after get the resultset, they also should be able to save these data as a text file on their local machine by just a click. Of course, before they click the OK button, they should navigate the files system on their local machines and choose under which directory they want to put the file, and then provide a file name. I could NOT find a way to be able to navigate the local machine's drives.
    I know there is a standard Save As dialogue automatically launched by the browser. But my problem is: I don't need such a pumped-up Save As... dialogue which most brower will provide, because our system will have an interface which will provide the same function as the Save As guy. And this is the part that I am currently working on. Our interface will permit the client to browse their file system and then provide a filename, and then click OK to save the file. PLEASE, anybody who can help me. I know there are guys there have answers for my questions:
    1. In my JSP program, I save the resultset I get from the database as a string, and then this string should be sent through inputstream and outputstream and be saved as a text file onto the client's local machine. I know there's a lot file download topics but I am dealing with a string instead of a file, is there an inputstream accepting a string(which contains dataresultset) and output it to a file?
    2. As I already said, how to make my own Save As... dialogue?
    I really need help! I have been bothered by them for a long time. Thanks in advance!

    Well, it's hard to interpret exactly what you want to do but I'll take a stab.
    I would put the data into comma separated value (CSV) format and then stream it back to the browser using the "application/csv" content format.
    By doing this, they can either save it to their hard drive into the directory of their choice, or open it using whatever mapping they have for the CSV mime type. For most Windows machines, this is Excel (if it's loaded).

  • How do I move audio files from song list?

    I have some audio MP3 files in iTunes, but they show up under the Songs List. Can I move them so they don't show up in the Music songs list, e.g. move them to podcasts?

    No. In order to show up under Podcasts, they need to be dopwnloaded via an RSS feed which tells iTunes it is apodcast.

  • How to save/download pdf files from safari?

    I have some PDF files that I need to download from the internet/Safari. How do I do that? There is a button that I can click on my PC using Firefox but I can't find anything in Safari of my iMac. I would appreciate very much if someone can help me. Thanks.

    Thank you, Niel. Do I move the cursor outside the window or still within the window? I tried many times and couldn't find the right spot.
    Barry, you are right. I was going to do that but I want to learn how to use it with Safari.

Maybe you are looking for

  • Accessing DefaultValues for parameters with dynamic values

    We have a custom user interface we place in front of all Crystal Reports (to maintain look&feel) that reads the parameters from the report and dynamically generates controls for user input.  The only time this doesn't work is for parameters that have

  • How to upgrade jdk in standalone forms and reports 10.1.2

    hi all i have forms and reports services standalone 10.1.2.0 can any one help me how to upgrade default jdk to jdk 6 thx very much

  • Do I need to uninstall CS3 before reinstalling it?

    Resetting the preferences stopped Photoshop from crashing, but now I need the flash plugin. Can I get that w/o reinstalling CS3? If not, do I have to uninstall the whole suite before reinstallation?

  • Is ColdFusion 8 compatible with Windows 7 64-bit?

    I saw in the Systems support matrix that ColdFusion 8 is compatible with Windows Vista 64 bit, however I want to install it on Windows 7 64-bit Enterprise Service Pack 1.  Is ColdFusion 8 compatible with Windows 7?  Thanks in advance.

  • Camera stopped focusing -- help?

    I've had my Droid Charge for a little over a year.  A little while (~6 weeks?), the camera stopped focusing.  It is locked in closest possible focus.  My guess would be it's locked in macro mode, switching between macro, and face-focus, and autofocus