[EMAIL PROTECTED] wrote:
>
> HI, Can anyone tell me why
> my file ends up 7 times larger
> than it should. It should be
> 1/2 the size? :P thanks.. timmy
>
> Rebol [
> ]
>
> audio: read/binary %/j/audio/first.au
>
> forskip audio 2 [
> write/append %/j/audio/firstdone.au enbase/base to-string first audio 2
> ]
Your converting a single byte into a string containing the binary
representation, ie. going from #"R" to "01010010". Remove the enbase
call, and it should work correctly (I think you can remove the to-string
too).
Julian Kinraid