HPR3507: USB Turntable fix and sound journey




Hacker Public Radio show

Summary: Partial list of albums Journey - Frontiers Journey - Evolution Journey - Greatest Hits Journey - Departure Chicago - 2 albums - unknown titles John Denver - Rocky Mountain Christmas Inside Star Trek (1976) SIDE I Inside Star Trek Star Trek Theme William Shatner Meets Captain Kirk The Origin of Spock Sarek's Son Spock The Questor Affair SIDE II The Enterprise Runs Aground McCoy's Rx for Life The Star Trek Philosophy Asimov's World of Science Fiction A Letter From a Network Censor The Star Trek Dream Ballad I/Ballad II)* Inside Star Trek album: Cover Click the thumbnail to see the full-sized image - - Inside Star Trek album: Contents Click the thumbnail to see the full-sized image - - I found a turntable at the thrift store, and the spindle ran, but the platter did not. The belt had slipped off, and here is the fix. https://www.youtube.com/watch?app=desktop&v=rXkOoaIVsvE How to remove platter Click the thumbnail to see the full-sized image - - Belt placement Click the thumbnail to see the full-sized image - - Routing Audio from a USB Turntable to HDMI using a Raspberry Pi https://www.rickmakes.com/routing-audVmmsio-from-a-usb-turntable-to-hdmi-using-a-raspberry-pi Send input to output alsaloop -t 500000 -C hw:CARD=CODEC,DEV=0 -P default:CARD=b1 alsaloop man page https://linux.die.net/man/1/alsaloop -t | --tlatency= Requested latency in usec (1/1000000sec). Parameter b1 is found by pi@retropie:~ $ aplay -l **** List of PLAYBACK Hardware Devices **** card 0: b1 [bcm2835 HDMI 1], device 0: bcm2835 HDMI 1 [bcm2835 HDMI 1] Raspberry Pi as a USB audio capture device https://scruss.com/blog/2012/11/20/raspberry-pi-as-a-usb-audio-capture-device arecord -D 'pulse' -V stereo -c 2 -f dat -d 900 out.wav arecord -D 'hw:CARD=CODEC,DEV=0' -V stereo -c 2 -f dat -d 900 out.wav Used hw:CARD=CODEC,DEV=0 derived from 'arecord -L' hw:CARD=CODEC,DEV=0 USB Audio CODEC, USB Audio Direct hardware device without any conversions arecord man page htt