search for: performancetoday

Displaying 1 result from an estimated 1 matches for "performancetoday".

2001 May 15
2
Realtime resampling/encoding with oggenc
...ggenc features for resampling, lowpass/highpass filters etc, but I wrote a little script that uses sox to do all the stuff I need to real-time encode oggenc from the radio, or any input device. #!/bin/bash DATE=`date '+%m-%d-%Y-(%H.%M)'` DESTIN=/video/music/perftoday export DATE=$DATE'-PerformanceToday.ogg' sox -V -r 44100 -c 2 -t ossdsp -w -s /dev/dsp -t wav - filter \ 0-16000 2>/dev/null | oggenc - -o $DESTIN/$DATE -b 128& sleep 7200 kill -9 $! What you see here on the first two lines should be only one. Note the "\". As you can guess, I use this to record my favorite...