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: 1568
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: 1568
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: 639
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: 675
#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
Rebok/BOOM!/Tropyx
The Human Co../Maste..
Sokrates
Courage
doctorfargo/Binary L..
Visage/Lethargy
w4rp8
Guests online: 114
Top Demos
1 Next Level  (9.8)
2 Mojo  (9.7)
3 Coma Light 13  (9.7)
4 Edge of Disgrace  (9.6)
5 Comaland 100%  (9.6)
6 No Bounds  (9.6)
7 Uncensored  (9.6)
8 Wonderland XIV  (9.6)
9 Memento Mori  (9.6)
10 Bromance  (9.5)
Top onefile Demos
1 It's More Fun to Com..  (9.7)
2 Party Elk 2  (9.7)
3 Cubic Dream  (9.6)
4 Copper Booze  (9.5)
5 TRSAC, Gabber & Pebe..  (9.5)
6 Rainbow Connection  (9.5)
7 Dawnfall V1.1  (9.5)
8 Quadrants  (9.5)
9 Daah, Those Acid Pil..  (9.5)
10 Birth of a Flower  (9.5)
Top Groups
1 Nostalgia  (9.3)
2 Oxyron  (9.3)
3 Booze Design  (9.3)
4 Censor Design  (9.3)
5 Crest  (9.3)
Top Webmasters
1 Slaygon  (9.7)
2 Perff  (9.6)
3 Morpheus  (9.5)
4 Sabbi  (9.5)
5 CreaMD  (9.1)

Home - Disclaimer
Copyright © No Name 2001-2024
Page generated in: 0.04 sec.