this post was submitted on 10 Jan 2025
273 points (98.6% liked)

Technology

60393 readers
3417 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related content.
  3. Be excellent to each another!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, to ask if your bot can be added please contact us.
  9. Check for duplicates before posting, duplicates may be removed

Approved Bots


founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 4 points 1 day ago

That's actually very easy to do and you don't need any special equipment. Simply use a male-male 3.5mm cable and connect one end from the stereo output of the cassette player and the other end into the microphone jack of any computer you own. Play the cassette - you can test the audio quality by running arecord -f cd - | aplay - - you will have to tune the volume output of the cassette player and the input sensitivity of the microphone.

From there, if you're paranoid, you could use arecord to save the output to a .wav file and encode it once the recording is done, but I had no problem just using oggenc directly on the piped audio. The final command looked like this: arecord -f cd - | oggenc -q 5 -o file.ogg - (change to -q 10 if you want lossless encoding).

I'm not sure if this is the best quality per se, but I would definitely recommend it over using specialized equipment like cassette-mp3 converters. The problem with those devices is that if they use underpowered hardware, you might experience buffering issues where the encoding hardware can't keep up with the audio stream or something like that. But doing it on a computer ensures that you will have all the processing power you need to make sure that this doesn't happen.

Good luck! I found it very easy to do - it took 5-10 minutes of setup.