OT: Music recorders

Does any one know of software that will convert audio recordings from .mp3 or .wav into .au (audio) files? :confused:

try: http://home.att.net/~mkw/mkwact.html


.wav is the same as .au I think. you can burn .wav onto cds and they’ll play in a standard cd player anyhow.

Nope .wav is not the same as .au :slight_smile:

Winamp can convert mp3’s to wavs – you just have to select the (included) diskwriter output plugin in preferences.

I don’t see any reason why you would need to create a .au file at all (.au files are sun uLaw files – it was the sound format used on ancient sun workstations). It’s basically a legacy format – there’s no reason I can think of you’d want to make them, only deal with them when you find them.

If you don’t mind getting down ‘n’ dirty with the command line, SoX can convert between pretty much any format and any other format. Really, it should be as easy as:

sox file.wav file.au

While we’re on the subject, a more general question: I’ve been posting mp3’s on Clips&Snips. Is there a better, newer format that most people can access that gives better or equal sound at smaller file size? Or better sound at same file size? Know what I mean?
Tony

There are Ogg Vorbis files, which are allegedly better/smaller. Pretty much every software mp3 player nowadays includes support for them.

The main attraction of them is thier unencumberd nature – if you’re using mp3’s in a commercial endeavour, you owe the patent holders around $15K or so.

I really wouldn’t recommend switching over to them, though, as there is basically no support for Ogg in portable mp3 players, and I’m sure I’m not the only one around here that grabs tunes from your site and loads them onto a portable mp3 player for practice purposes :slight_smile:

Goldwave - http://www.goldwave.com/ - will make the conversion. It is a great inexpensive program.

What’s this? Royalties for using a file format? Isn’t that about like Dolby allowing noise reduction on cassette tapes unless for Professional Use then you have to pay…? I have never heard of that… How exactly is that set up? :confused:

Scott McCallister

I believe the way it goes is you have to pay them if you a) write a program that encodes files into mp3 format, or b) stream files in mp3 format from your website. I think one or both of these rules might require that you be making money from the activity.

You’re pretty much correct. The exact values have changed since I looked at them last (they’ve come down), but the gory details are all over at http://www.mp3licensing.com/ (under Royalty Rates)

I am trying to put a web-site together using, admitedly, an old programme. When I try to embedd a sound file, it produces an error saying that there is a problem converting the wav into au. My thought was if I could convert a source before importing the file into the web builder, it should work.

Or mabe I just buy a newer web editing programme!

How curious! Are you running Unix or Linux there? And which website software are you using? .au is a legacy audio format native to Unix, and both Netscape and IE recognise it.

Most legacy web-pages that have audio embedded use .wav files as the source… you can use the following html code to ‘embed’ a sound file which will play automatically when a web-page is loaded into the browser:

embed src=“winpipes.wav” height=“61” width=“151”

but you need the start and end tags at the beginning and end of the code ie < line of code > I had to delete the carets (the < and >) from the above 'cos it actually tried to embed the code in the post.

You can get rid of the height and width statements, or set them both to 0, they just show the audio player.

This is what it’d look like if I use the line of code above with the carets in place:

Clicking the play button won’t do any good though, 'cos I doubt the “winpipes.wav” file exists on this server! There’s no reason why you couldn’t use URL to link to the wav file though, like the next one:

embed src=“http://www.m-i-p.co.uk/comment.wav” height=“61” width=“151”

Which would look like this with the carets in place and should work when you click the play button:

\ \ Be advised though...embedding anything but the smallest of sounds can be a real PITA to dial-up users.

Gasp. I suspect now I have revealed the secrets, we’ll have audio-enhanced posts now… :roll:

Hope this helps,