'Almost all of this was made by Petr from the QB64.org forum.
'Some of the displays added by SierraKen (Ken G.).
_TITLE "WAV Music Player - Space Bar Changes Display When Playing. Esc to Quit." INPUT "Type .WAV music filename here or only Enter to quit:", nm$
wav nm$ 'insert uncompressed wav audio filename here
subchunksize
AS LONG ' 4 bytes (lo / hi), $00000010 for PCM audio format
AS STRING * 2 ' 2 bytes (0001 = standard PCM, 0101 = IBM mu-law, 0102 = IBM a-law, 0103 = IBM AVC ADPCM) channels
AS INTEGER ' 2 bytes (1 = mono, 2 = stereo) rate
AS LONG ' 4 bytes (sample rate, standard is 44100) ByteRate
AS LONG ' 4 bytes (= sample rate * number of channels * (bits per channel /8)) Block
AS INTEGER ' 2 bytes (block align = number of channels * bits per sample /8) Bits
AS INTEGER ' 2 bytes (bits per sample. 8 = 8, 16 = 16) subchunk2
AS STRING * 4 ' 4 bytes ("data") contains begin audio samples
block = H.Block
RATE = H.rate
chan = H.channels
bits = H.Bits
vz = 44100 / 80
visual lefVis / vz, righVis / vz
lefVis = 0
righVis = 0
lefVis
= lefVis
+ ABS(lef
) righVis
= righVis
+ ABS(righ
)
lef = lefi / RATE
righ = righi / RATE
lef = leftMono / RATE
righ = leftMono / RATE
lef = lleft8 / 256
righ = rright8 / 256
lef = mono8 / 256
righ = lef
IF RATE
> 44100 THEN frekvence
= RATE
ELSE frekvence
= 44100 FOR plll
= 1 TO frekvence
/ RATE
SHARED x
, oldx1
, oldx2
, disp
, tt
, xxx
, yyy
, xxx2
, yyy2
, oldxxx
, oldyyy
, oldxxx2
, oldyyy2
STP = 5 ' TRY rewriting STP value to other
x1 = lef * 200
x2 = righ * 200
IF a$
= " " THEN CLS: disp
= disp
+ 1: tt
= 0
LINE (0, 0)-(800, 450), _RGBA(0, 0, 0, 30), BF
p = x1 * 5
p2 = x2 * 5
sec = (p * .6) + seconds
sec2 = (p2 * .6) + seconds2
seconds = sec
seconds2 = sec2
IF seconds
> 359 THEN seconds
= 0 seconds = seconds + 1
s = (60 - seconds) * 6 + 180
oldxxx = xxx: oldyyy = yyy
LINE (200, 200)-(xxx
, yyy
), 14
IF seconds2
> 359 THEN seconds
= 0 seconds2 = seconds2 + 1
s2 = (60 - seconds2) * 6 + 180
oldxxx2 = xxx2: oldyyy2 = yyy2
LINE (600, 200)-(xxx2
, yyy2
), 3
xx = x + 100
xx2 = x + 500
LINE (xx
, 0)-(xx
+ STP
, 400), 0, BF
CIRCLE (xx
, 300 - (x1
* 2)), sz
, 1 CIRCLE (xx
- STP
, 300 - (oldx1
* 2)), sz
, 1 CIRCLE (xx2
, 300 - (x2
* 2)), sz2
, 10 CIRCLE (xx2
- STP
, 300 - (oldx2
* 2)), sz2
, 10
LINE (x
, 0)-(x
+ STP
, 400), 0, BF
CIRCLE (x
, 300 - (x1
* 2)), sz
, 1 CIRCLE (x
- STP
, 300 - (oldx1
* 2)), sz
, 1 CIRCLE (x
, 300 - (x2
* 2)), sz2
, 10 CIRCLE (x
- STP
, 300 - (oldx2
* 2)), sz2
, 10
LINE (x
, 0)-(x
+ STP
, 400), 0, BF
LINE (x
, 300 - (x1
* 4))-(x
- STP
, 300 - (oldx1
* 4)), 15
LINE (x
, 200 - (x2
* 4))-(x
- STP
, 200 - (oldx2
* 4)), 14
tt = tt + 1
tt = 0
LINE (xx
, yy
)-((xx
+ x1
) * 2, (yy
+ x2
) * 2), _RGB32(c1
, c2
, c3
), BF
skip:
tt = tt + 1
tt = 0
skip2:
LINE (x
, 0)-(x
+ STP
, 400), 0, BF
LINE (x
, 200 - x1
)-(x
- STP
, 200 - oldx1
), 15
LINE (x
, 100 - x2
)-(x
- STP
, 100 - oldx2
), 14
oldx1 = x1
oldx2 = x2
LINE (100, 600)-(300, 400), 0, BF
LINE (100, 600)-(300, 600 - 500 * lef
), 14, BF
LINE (700, 600)-(500, 400), 0, BF
LINE (700, 600)-(500, 600 - 500 * righ
), 3, BF