You can generate pink noise files using the older 12.17.9 version of
sox.

Here's a script I used to create pink and white noise CDs for my better
half.   It generates 7 10m tracks that fade in and out.


Code:
--------------------
    
  #!/bin/bash
  
  i=1
  while true; do
  if [ $i -ge 8 ]; then
  break
  fi
  
  i=`echo ${i} | awk '{printf "%02d", $0}'`
  
  sox -t sl -r 44100 -c 2 /dev/zero -r 44100 -c 2 -w ${i}-pinknoise.wav synth 
10:00 pinknoise vol 0.6 fade q 10 10:00 10
  
  
  i=`expr ${i} + 1`
  done
  
--------------------


For white noise, change pinknoise to whitenoise.

You can create flac files, tag and add to lms as an album.



Ralphy

*1*-Touch, *5*-Classics, *3*-Booms, *1*-UE Radio
'Squeezebox client builds'
(https://sourceforge.net/projects/lmsclients/files/) 'donations'
(https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=LL5P6365KQEXN&lc=CA&item_name=Squeezebox%20client%20builds&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donate_SM%2egif%3aNonHosted)
always appreciated.
------------------------------------------------------------------------
ralphy's Profile: http://forums.slimdevices.com/member.php?userid=3484
View this thread: http://forums.slimdevices.com/showthread.php?t=107360

_______________________________________________
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss

Reply via email to