Log inRegister an accountBrowse CSDbHelp & documentationFacts & StatisticsThe forumsAvailable RSS-feeds on CSDbSupport CSDb Commodore 64 Scene Database
You are not logged in - nap
CSDb User Forums


Forums > C64 Composing > *.wav to 4-bit-digi converter?
2005-08-20 17:17
Bamu®
Account closed

Registered: May 2005
Posts: 1332
*.wav to 4-bit-digi converter?

I'm looking for a Sample-Converter which works under Win2000
 
... 4 posts hidden. Click here to view all posts....
 
2005-08-23 12:34
scout

Registered: Dec 2002
Posts: 1578
Quote: Bah, my samples (drum-loops etc.) are really noisy ?!? What's wrong?
Is there a trick to eleminate this?
I testet it with filters etc., but there isn't much improvement


You have to use unsigned samples.
Every selfrespecting waveeditor (wavelab, soundforge...) on PC/Mac could be used for that.

R.
---
-= Silicon Ltd. =-
http://forum.siliconlimited.com
2005-08-23 12:36
Bamu®
Account closed

Registered: May 2005
Posts: 1332
Quote: You have to use unsigned samples.
Every selfrespecting waveeditor (wavelab, soundforge...) on PC/Mac could be used for that.

R.
---
-= Silicon Ltd. =-
http://forum.siliconlimited.com


Hmm, I used Ner Wave Editor.
2005-08-23 12:55
scout

Registered: Dec 2002
Posts: 1578
Quote: Hmm, I used Ner Wave Editor.

Nero Wave Editor is for editing wav's meant for burning as audiotracks on cd's.
These wav's are always signed.

I don't know any free waveeditors or converters to download but maybe the others can help you with that.

R.
---
-= Silicon Ltd. =-
http://forum.siliconlimited.com
2005-08-23 13:38
Linus

Registered: Jun 2004
Posts: 640
lo,

you gotta look for any editor that is able to save .raw files. the editor should ask you to specify a format; select "unsigned 8bit". the result can be transfered to a .d64 image and then be read by pollytracker.

i usually do like this: resample the .wav to 8khz with an anti-alias filter, convert it to 8bit and then save as raw unsigned 8bit. (i prefer using soundforge but there should be free editors that can do the trick too)

greetz,
linus
2005-08-23 16:29
Raf

Registered: Nov 2003
Posts: 343
I prepare samples to convert with CoolEdit pro v2.x,
it allows to lower aplitude ,make signed or unsigned files , also you can resample samples with many interpolation options. BTW yesterday I found my [unfinished] improvement of reiter's converter so I can send you it if you wish, it allows to convert both signed and unsigned 8bit pcm wav samples to 4bit raw format suitable for c64.
2005-08-24 16:48
Bamu®
Account closed

Registered: May 2005
Posts: 1332
Quote: I prepare samples to convert with CoolEdit pro v2.x,
it allows to lower aplitude ,make signed or unsigned files , also you can resample samples with many interpolation options. BTW yesterday I found my [unfinished] improvement of reiter's converter so I can send you it if you wish, it allows to convert both signed and unsigned 8bit pcm wav samples to 4bit raw format suitable for c64.


Yep, I whish! ;-O

Thank you Raf!
2005-08-25 13:30
Raf

Registered: Nov 2003
Posts: 343
@Nata: did you receive the file?
2005-08-25 13:40
Bamu®
Account closed

Registered: May 2005
Posts: 1332
Quote: @Nata: did you receive the file?

I send you a mail some minutes ago... :)
2010-02-04 10:22
enthusi

Registered: May 2004
Posts: 679
#ifndef NIBBLES
for (i=0;i<stream;i++)
	{
	v1=fgetc(wav_file);
	v2=v1/16;
	fputc(v2,sample_file);
	}
#endif
#ifdef NIBBLES
for (i=0;i<stream;i+=2)
	{
	v1=fgetc(wav_file);
	v2=v1/16;
	v1=fgetc(wav_file);
	v3=v1/16;
	v4=v3+v2*16;
	fputc(v4,sample_file);
	}
printf("using nibbles\n");
#endif	
2010-02-04 10:38
SIDWAVE
Account closed

Registered: Apr 2002
Posts: 2238
command line exe plz :D
Previous - 1 | 2 - Next
RefreshSubscribe to this thread:

You need to be logged in to post in the forum.

Search the forum:
Search   for   in  
All times are CET.
Search CSDb
Advanced
Users Online
iAN CooG/HVSC
aNdy/AL/Cosine
Fungus/Nostalgia
Mason/Unicess
Elder0010/G★P
Murphy/Exceed
Guests online: 229
Top Demos
1 Next Level  (9.7)
2 13:37  (9.7)
3 Codeboys & Endians  (9.7)
4 Mojo  (9.6)
5 Coma Light 13  (9.6)
6 Edge of Disgrace  (9.6)
7 Signal Carnival  (9.6)
8 Wonderland XIV  (9.5)
9 Uncensored  (9.5)
10 Comaland 100%  (9.5)
Top onefile Demos
1 Nine  (9.7)
2 Layers  (9.6)
3 Cubic Dream  (9.6)
4 Party Elk 2  (9.6)
5 Copper Booze  (9.5)
6 Scan and Spin  (9.5)
7 Onscreen 5k  (9.5)
8 Grey  (9.5)
9 Dawnfall V1.1  (9.5)
10 Rainbow Connection  (9.5)
Top Groups
1 Artline Designs  (9.3)
2 Booze Design  (9.3)
3 Oxyron  (9.3)
4 Performers  (9.3)
5 Censor Design  (9.3)
Top Swappers
1 Derbyshire Ram  (10)
2 Jerry  (9.8)
3 Acidchild  (9.7)
4 Cash  (9.6)
5 Violator  (9.6)

Home - Disclaimer
Copyright © No Name 2001-2025
Page generated in: 0.124 sec.