Subject: Re: reading binary data stops unexpectedly
From: Marcin Mielyski <lopexx autograf.pl>
Date: Sun, 5 Mar 2006 23:33:39 +0900
References: 182630
In-reply-to: 182630
Gonzalo Rubio wrote:
> in a nutshell, my code goes like this:
> File.open('sound.dat', 'r').each_byte do |byte|
> #...stuff to process the data...
> end
open('sound.dat', 'rb')
lopex