How to save streams with amarok?

Hi!
When listening to internet radio I can rightlick on the stream then Manage files and then "Copy track to location..." but it doesnt work it says "The following file [filename] could not be organized."
Is there any other way to do it?

Are you talking about saving the audio content or the stream location?
You can use VLC and Amarok to record the audio content of a stream.
1.  Right click on the stream in Amarok and click Copy Tags to Clipboard.
2.  Paste this somewhere and extract the URL from it.  For example http://12.345.67.89:12/stream/1111
3.  Open up VLC and go to File --> Open Network Stream
4.  Paste the stream in the HTTP/HTTPS/FTP/MMS URL textbox.
5.  In the Advanced Options section below, check Stream/Save and click Settings
6.  In the Outputs section, check File and enter a filename for the recorded stream
7.  Check Dump raw input because the stream is already in an mp3 format.
8.  Now you can open up the file you saved in Amarok
If you were referring to saving the stream location, it is the URL extracted in Step 2.
This works with Amarok 1.4.5 and VLC 0.8.6b.

Similar Messages

  • How to save file with the "/" symbol in the name?

    Hi,
    I have Adobe Professional 8.  I need to save files with names that include the symbol /, but Adobe interprets, for example, A/88/6, as file name 6, in a folder named 88, in a folder named A, and sets up new folders to accommodate that.  I cannot substitute another symbol as I already have thousands of pdf files in a database using the / symbol, and I need them in the same folders.
    I would very greatly appreciate any advice,
    thanks,
    Mo.

    Thanks.
    As I said, I'm pretty ignorant about these things.  I wouldn't know how to begin using a "hack".  All I know is that I was able, for over a year, to save .pdf files directly from my browser on several computers, and use the forbidden "/" symbol in every file name.  After saving the files, Adobe will happily open them, and allow me to edit and re-save them, although I now see that it will not allow me to "save as" them under a different name without removing that symbol.
    I may not be tech-savvy, but I can state that everything I have said here and above is entirely accurate.  I would be happy to open a dropbox account to show you countless .pdfs with the symbol "/" in the name.
    This is honestly not that big a deal.  I greatly appreciate this discussion, and you have inspired me to become slightly less computer-ignorant.
    Hope you all had a great New Year.  I am still recovering.
    Cheers,
    Mo.

  • How to save layers with cropping?

    I want to export layers to files (basically what "Export Layers To Files.jsx" does) but with cropping each layer (to different sizes). I know how to crop a document from script, but that also crops all other layers (erases their content outside of the cropping area). So my question is - how do I keep/retrieve the cropped out content of the document (layers)? Or maybe there's a better approach altogether?

    Seems to me that you only need to keep the cropped pixels because of way you want to do this.
    However if you want to do it this way you could create a history snapshot, crop and save the first layer. Then restore the document using the snapshot and crop and save the second.
    Or you may be able to just store the current history state in a variable then restore the document using that history state if you are only using a few history states to crop and save.
    With a snapshot you don't have to worry about the number of history states but it needs action manager. Storing the current history state can be done using the DOM.

  • How to save layout with ALV Pivot format

    Hi
    In ALV report I have  25 fields but I want to use 10 fields out of 25 fields in Pivot Table. My problem is how to save this layout with Pivot format for on going use. At every time execution of report I need not required to set  Pivot Table.
    Please help me.
    -Sanjay

    Hi,
    Are you using FM REUSE_ALV_GRID_DISPLAY? If yes, then pass 'X' to the parameter I_SAVE while calling the fm.
    if you are using Object Oriented ALV, then call the below method before calling the method for display
    DATA : gr_layout TYPE REF TO cl_salv_layout,
           gr_layout_key TYPE salv_s_layout_key.
    CALL METHOD gr_functions->set_all
      EXPORTING
        value  = IF_SALV_C_BOOL_SAP=>TRUE.
      MOVE sy-repid TO gr_layout_key-report.
      CALL METHOD gr_table->get_layout
        RECEIVING
          value = gr_layout.
      CALL METHOD gr_layout->set_key
        EXPORTING
          value = gr_layout_key.
      CALL METHOD gr_layout->set_save_restriction
        EXPORTING
          value = if_salv_c_layout=>restrict_none.
      CALL METHOD gr_layout->set_default
        EXPORTING
          value = if_salv_c_bool_sap=>true.
    Regards
    Vinod
    Edited by: Vinod Kumar on Jul 2, 2010 3:40 PM
    Edited by: Vinod Kumar on Jul 2, 2010 4:43 PM

  • How to save Solo with the Song?

    Hi,
    When I activate solo on some tracks, save the song and open it again, solo is not active anymore, so that it blows off my speakers when I start playing and forget to activate solo again.
    How to save solo activation?
    Thanks for any help.

    Werner Zervas wrote:
    Hi,
    When I activate solo on some tracks, save the song and open it again, solo is not active anymore, so that it blows off my speakers when I start playing and forget to activate solo again.
    How to save solo activation?
    Thanks for any help.
    Solo is a momentary button.
    And, do you have ANYTHING between your speakers and the computer's audio otuput?
    You should have some sort of mixer / monitoring thing that has a volume knob, so you don't kill your ears.

  • How to republish stream with lower quality

    Hey guys, I was wondering is there a way that I can receive stream on my broadcast server and then republish that stream with lower quality on the same broadcast server. I was reading server side API reference but I couldnt find anything like that.
    Only thing I found is to use %i in FMLE Stream field and then broadcast same stream with different bitrates, but can I take live stream that is being broadcasted and republish it with lower quality/bitrate on the server side somehow?
    Or there is another way to achieve this?
    I am running FMS 4.5 and I am using FMLE to broadcast video to the server.
    Thank you for your answers.

    FMS can't transcode streams. What you could do is use FFMPEG to pull the stream from FMS and publish a transcoded stream back into FMS.
    Alternately, you could use Wowza Media Server and their transcoder plugin (fairly easy), or Wowza and Xuggler (requires a fair amount of programming)

  • How to save .jpg with jdk1.1.4?(help..)

    HI...
    i know i can use following code to save .jpg with jdk1.4 by using following code:
    BufferedImage img; // your working image
    ImageIO.write(img, "jpg", new File("save.jpg"));
    or
    BufferedImage bimg = null;
    int w = img.getWidth(null);
    int h = img.getHeight(null);
    int [] pixels = new int[w * h];
    PixelGrabber pg = new PixelGrabber(img,0,0,w,h,pixels,0,w);
    try {
    pg.grabPixels();
    catch(InterruptedException ie) {
    ie.printStackTrace();
    bimg = new BufferedImage(w,h,BufferedImage.TYPE_INT_RGB);
    bimg.setRGB(0,0,w,h,pixels,0,w);
    // Encode as a JPEG
    FileOutputStream fos = new FileOutputStream("out.jpg");
    JPEGImageEncoder jpeg = JPEGCodec.createJPEGEncoder(fos);
    jpeg.encode(bimg);
    fos.close();
    But when i want to recompile with jdk1.1 , what can i do now ?
    Do you have any exapmles?
    thank you so much...

    Sorry I was not in Station!!!!!and hence the delay in replying
    Check this example for more details
    public WriteImageIW( String filename, String type ) {
    try {
    int width = 200, height = 200;
    int x0 = 20, y0 = 20, x1 = width-20, y1 = width-20;
    BufferedImage bi = new BufferedImage( width, height,
    BufferedImage.TYPE_INT_ARGB );
    Graphics2D ig2 = bi.createGraphics();
    GradientPaint paint =
    new GradientPaint( x0, y0, Color.white, x1, y1, Color.black );
    ig2.setPaint( paint );
    ig2.fillRect( 0, 0, width-1, height-1 );
    BasicStroke stroke = new BasicStroke( 10, BasicStroke.CAP_ROUND,
    BasicStroke.JOIN_ROUND );
    ig2.setPaint( Color.lightGray );
    ig2.setStroke( stroke );
    ig2.draw( new Ellipse2D.Double( x0, y0, x1-x0, y1-y0 ) );
    Font font = new Font( "TimesRoman", Font.BOLD, 20 );
    ig2.setFont( font );
    String message = "Java2D!";
    FontMetrics fontMetrics = ig2.getFontMetrics();
    int stringWidth = fontMetrics.stringWidth( message );
    int stringHeight = fontMetrics.getAscent();
    ig2.setPaint( Color.black );
    ig2.drawString( message, (width-stringWidth)/2,
    height/2+stringHeight/4 );
    Iterator imageWriters =
    ImageIO.getImageWritersByFormatName( type );
    ImageWriter imageWriter = (ImageWriter)imageWriters.next();
    File file = new File( filename );
    ImageOutputStream ios =
    ImageIO.createImageOutputStream( file );
    imageWriter.setOutput( ios );
    imageWriter.write( bi );
    } catch( IOException ie ) {
    ie.printStackTrace();
    the file is being created, the type of the file must be specified on the command line.

  • How to save Jobs with different priority level in a Queue?

    Hi, Friends,
    I have a set of Job (see below) objects.
    I would make a queue: if they have the save priority level, first in and first out. this is easy to do by ArrayList. however, If they have different priority level, I would like make the Jobs with the highest level first out.
    How can I implemented this idea in Java?
    Regards,
    Youbin
    public class Job {
    private short _priorityLevel = 0;
    public void setPriorityLevel(short priorityLevel) {
    this._priorityLevel = priorityLevel;
    public short getPriorityLevel() {
    return _priorityLevel;

    Hi,
    Here is my test code, it works:
    public class Job implements Comparable{
    private int _priorityLevel=0;
    private String _jobDescription=null;
    public Job() {
    public void setPriorityLevel(int priorityLevel) {
    this._priorityLevel=priorityLevel;
    public int getPriorityLevel() {
    return this._priorityLevel;
    public void setJobDescription(String jobDescription) {
    this._jobDescription=jobDescription;
    public String getJobDescription() {
    return this._jobDescription;
    public int compareTo(Object obj) {
    return (this._priorityLevel-((Job)obj)._priorityLevel);
    import java.util.LinkedList;
    import java.util.Iterator;
    import java.util.Collections;
    import java.util.Collection;
    public class test {
    public test() {
    public static void main(String[] args) {
    Job job1 = new Job();
    job1.setJobDescription("Job1");
    job1.setPriorityLevel(2);
    Job job2 = new Job();
    job2.setJobDescription("Job2");
    job2.setPriorityLevel(2);
    Job job3 = new Job();
    job3.setJobDescription("Job3");
    job3.setPriorityLevel(2);
    Job job4 = new Job();
    job4.setJobDescription("Job4");
    job4.setPriorityLevel(1);
    Job job5 = new Job();
    job5.setJobDescription("Job5");
    job5.setPriorityLevel(1);
    Job job6 = new Job();
    job6.setJobDescription("Job6");
    job6.setPriorityLevel(1);
    LinkedList linkedList = new LinkedList();
    linkedList.addLast(job1);
    linkedList.addLast(job2);
    linkedList.addLast(job4);
    Iterator ite=linkedList.iterator();
    while (ite.hasNext()) {
    System.out.println(((Job)ite.next()).getJobDescription());
    System.out.println("---------");
    Collections.sort(linkedList);
    ite=linkedList.iterator();
    while (ite.hasNext()) {
    System.out.println(((Job)ite.next()).getJobDescription());
    System.out.println("---------");
    linkedList.addLast(job3);
    ite=linkedList.iterator();
    while (ite.hasNext()) {
    System.out.println(((Job)ite.next()).getJobDescription());
    System.out.println("---------");
    Collections.sort(linkedList);
    ite=linkedList.iterator();
    while (ite.hasNext()) {
    System.out.println(((Job)ite.next()).getJobDescription());
    System.out.println("---------");
    linkedList.addLast(job5);
    linkedList.addLast(job6);
    ite=linkedList.iterator();
    while (ite.hasNext()) {
    System.out.println(((Job)ite.next()).getJobDescription());
    System.out.println("---------");
    Collections.sort(linkedList);
    ite=linkedList.iterator();
    while (ite.hasNext()) {
    System.out.println(((Job)ite.next()).getJobDescription());
    }

  • How to save PDF with fields so someone can fill out form and send it to printer

    Using Adobe Acrobat X for Mac, I built a pdf template with fields for
    sending an assortment of Business Card files to the printer to print.
    How do I save the file so my brother/client can start typing in different
    names, job titles, and contact info and send them to a printer.
    Thanks,
    jsorlean

    Create your form.
    go to advanced menu
    choose the item about Reader Rights
    when open set what you want Reader to be allowed to do.
    Once set and saved the can fillout, save, email but they can not change the actual form itself just the contents they added.
    Not there is a cap of 500 hundred instances per different PDF.
    (Please note information is given by an Experienced User of Acrobat. I am not an employee of Adobe.)

  • How to save document with pixel aspect correction?

    I have a document which has has a non-square pixel ratio thus requires pixel aspect ratio correction to be turned on to view the image correctly.
    I want to save it as a JPEG for use online however I cant find an option anywhere to make the saved file have the corrected aspect ratio.
    Essentially when I save the file as a jpeg (or any end format) the image is squished. How can I save the file not squished? (ie. burn in the ratio correction)

    As I still work with a lot of Images, being used in SD Video, where non-square pixels are the rule.
    I Save_As PSD, and Import those adjusted PAR (Pixel Aspect Ratio) Images. However, that does not work in your case. I have never used JPEG, but wonder if that format is fully supportive of non-square pixels - never needed JPEG, so have never investigated.
    As Web display is on a computer, with square pixels, why the use of non-square pixels for the Web? [Just curious]
    Good luck, and wish that I had more to offer, perhaps PNG?
    Hunt

  • How to save draft with new name

    How do I save a draft with a new name? I want multiple
    versions of the same page.

    1. start Contribute, connect to your site, browse to the page
    you want to duplicate
    2. in the main menu go to >File>New
    3. choose the opstion 'Copy of current page' and enter a
    title for the page
    4. edit amnd publish the page, enter a new filename if you
    want

  • How to save pictures with the config file "Write Key.vi"

    hi all,
    On my front panel I've few controls pictures containing photos (JPG type) . The user can select the photo he wants using the classic file dialog box.
    Usally I use the config files VI's to save the control values from one run to another one. In the config files VIs, I use the polymorphic "write Key.vi" wich accept only booean, I32, U32, path, and string dada type, but no picture !
    I've tried the "flatten to string" fonction (picture --> flatten to string --> writekey.vi) , no broken wire but the conversion is very very too long and to heavy (20Mo a key!).
    another way, would be to write in a xml file, I've also tried but I've always get the 1104 error: No end tag was found for an XML start/end tag pair.
    can someone help me.
    what is the best way for  retrieving controls pictures with photos

    Hi GerdW
    Many thanks for your quick answer. Always happy to get advises from fellow programmers.
    You suggest to use the "path" input of the "write key.vi" (configuration file utilities) to retrieve photos that a user would have selected in a previous run. Could be a good solution in a number of applications but what I would like to do is like in a excel or word file. Once a photo has been embeded in one xls file for ex., I find it back each time i open this xls file, even if the original photo's file has been deleted or if my application runs on another computer.
    xml file looks interesting for that purpose (i mean used as config file). I can easily store in a xml file a labview picture (like a colored rectangle e.g.) but when i try with a photo (wich is a also a picture) labview returns always the error 1104.
    How to fixe this error, or maybe  there is another way to store photos in a config file without passing through xml,
    kind regards.

  • How to save attachment with 'Automatic Save' set to False

    Hi,
    Can someone please clarify for me how I should code for making sure that the attachment is saved (when 'Automatic Save' set to False) . The Developer's guide states that
    "...in the processformRequest method of the controller object, you need to capture the event of this submit button and call commit() explicitly."
    I assume that by "this submit button" the button located on the product page is meant (the page from which attachments page is invoked). In this case my question is - which event to I need to capture for this button? If I am already commiting changes when the user clicks the Apply button on the product page (not on the attachments page) then I thought no additional commit is required anywhere? Is this correct? My problem is that with 'Automatic Save' set to False the attachment is not being saved.
    Thank you.
    Anatoliy

    Rumkumar,
    Thank you for the clarification. Let me ask you please - by calling commit you mean issuing 'transaction().commit()"? The thing is that I AM doing that - I issue commit once I click submitButton on the product page, all changes are saved except the attachements - but the attachment is not saved. Do you have an idea what the problem might be? Of course if I set 'Automatic Save' property on the Attachment item to 'True' then I am fine. I appreciate your feedback.
    Thanks,
    Anatoliy

  • [Solved] How to save changes with PDF files

    Hello
    I have pdf files which contain forms. The only issue is that I cannot save the changes I do with evince. Anyone has a solution ? Thanks in advance
    Last edited by tamikana (2010-04-23 17:42:52)

    this thread has some tips:
    http://bbs.archlinux.org/viewtopic.php?id=52084
    not sure if they mention it, but xournal may also kind of work (annotates pdfs by turning them into an image, basically)

  • How to save JPEGs with a clean matte?

    From a cut-out image on a transparent background, I use Save for web specifying a black matte to create a JPEG. The resulting image has compression artefacts within the black matte around the image just the same as if the original image had a black background. I can then apply a mask channel copied from the orignal file to the JPEG and fill the matte with black. Delete the mask and Save and I have a JPEG with a matte free of artefacts.
    Is there a simple way to achieve the same thing and what's the point of the matte option?

    I am currently using .png files with transparent backgrounds and dropshadows. These are significantly larger (2x or 3x) than the equivalent .jpg files so the site loading time is also much longer but, of course, .jpgs don't allow transparency. My sites are in Flash which, via ActionScript, allows me to apply drop shadows at runtime to transparent images. It also allows me to create a transparent bitmap image from a .jpg by setting to transparent all pixels that have the matte colour. Unfortunately, as I described above, not all the pixels in the matte area will retain the matte colour because of the way the JPEG compression is done. As a result, the cut out image created by ActionScript will not have clean edges. I can fix this by the second operation on the .jpg I've described but this process is not easily automated in an Action and one site in particular involves a lot of images!

Maybe you are looking for

  • Oracle 10g RAC

    Hi All, I am a research student currently struggling to install Oracle 10g RAC on Windows OS.What i understand about a Oracle RAC database system is that it involves a configuration of multiple hosts or servers joined together with a clustering softw

  • How do I format my new SSD and get my computer to read it?

    I installed a new Samsung SSD with SATA III PCIe connector in my 2006 Mac Pro 1,1 2.66Ghz today. It's showing up in Disk Utility as being there, but it says it's unformatted, and I can't access it from the desktop. How to I get the computer to regist

  • Down payment for Serivice Call!

    Hi all! I have a problem a bout services call. This is senarior of my customer. Before create Service Call, they have Down payment for service (not for Item) and then they create Service Call in next step. When they delivery some item( For Item) for

  • RE: Announcement: iTunes 7.4.2 is now available?

    Hi! After a terrible blunder this morning, and not being able to remove ones remarks; one can only offer a 'Mea maxima culpa' and hope it is accepted. Nevertheless, I wanted to understand why I ought to download this update. I’ve spent a small fortun

  • What is a classpath and where can  i find it

    hi all... i am desperately loooking for the claspath as i have to include some directories in order for my program to run..plus i don't know the commands..thanks alot