Results 1 to 2 of 2

Thread: sound format converter

  1. #1

    sound format converter

    running SuSE 10.1
    could anyone recommend a sound format converter - i want to convert mp3 to wav to burn CD's

  2. #2
    Moderator
    Advisor
    redhead's Avatar
    Join Date
    Jun 2001
    Location
    Copenhagen, Denmark
    Posts
    811
    In xmms select output module to be "lib_disk_writer" and configure it to where you want the Wav files placed.
    Or with the pressence of mpg321/mpg123 use a simple script like this
    Code:
    #!/bin/sh
    files=`ls *.mp3`
    for f in $files ; do
      w=`echo $f | sed 's/.mp3/.wav/g'`
      mpg321 -w $w $f
    done
    Don't worry Ma'am. We're university students, - We know what We're doing.
    'Ruiat coelum, fiat voluntas tua.'
    Datalogi - en livsstil; Intet liv, ingen stil.

Similar Threads

  1. Exporting Visio Diagrams in Other File Formats
    By The Donald in forum Windows - General Topics
    Replies: 1
    Last Post: 07-08-2005, 12:55 PM
  2. Excel 2k files with Earlier Versions of Excel
    By regix in forum Windows - General Topics
    Replies: 0
    Last Post: 01-01-2005, 02:23 AM
  3. No Sound in Slackware 9.1
    By trickster in forum Linux - General Topics
    Replies: 18
    Last Post: 10-08-2003, 07:24 PM
  4. sound problems
    By klrmar in forum Linux - General Topics
    Replies: 7
    Last Post: 04-14-2002, 03:32 AM
  5. No sound in Half-Life/CS
    By cheeky_zombie in forum Linux - Software, Applications & Programming
    Replies: 2
    Last Post: 02-25-2002, 08:38 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •