Tag Archives: audio

Captioning (Subtitles) and Transcription On The Cheap

Dictate

One idea that has been bouncing about my head, but I have yet to fully investigate, is creating captions/subtitles on the cheap. Paying a third party to provide this  transcription service can get expensive – you can expect to pay $1 a minute, although there are places where you can go for a cheaper  deal.

However, there are automated services like Siri, OS X Dictation, or Dragon Dictate. YouTube will automatically create a transcript when you upload a video (although the accuracy might not be there), and this text file can be downloaded and edited.

My thoughts are to take a regular video recording, and then parse it into one of these services. I just have not got round to this yet, but may give it a go soon.

Dragon Dictate looks like it has part of this capability, but costs about $200 and works with one voice only (no good for interviews).

The two approaches that look like they will work best for me (for free) are:

  1. Uploading an audio or video file to YouTube, and then editing the transcribed text file.
  2. Using Soundflower to send an audio file into the OS X Dictation service. This post from Level Up Lunch describes the process.

Option 1 is the way to go with video. The process here is going to synch the transcription with the video. Option 2 will be realtime, but could be useful for situations where I do not have Internet connectivity, or just want a text file.

Resuscitating (and repurposing) the old Nokia N900

Nokia N900

Nokia N900

I migrated to an Apple iPhone 5 a while back. Even though the ‘phone is lacking a keyboard (which my old Nokia N900 had) I am fairly happy with the device. However,  I sort of need for a portable speaker, and rather than buy a Jawbone JAMBOX (or equivalent) I think I can repurpose the N900.

Over on Maemo.org Sabrog has a useful piece of script for activating the earphone socket as a line-in:

Speaker ON

#!/bin/sh
amixer -c0 set PCM 100%
amixer -c0 set 'Right PGA Bypass Mixer HP Switc' on
amixer -c0 set 'Left PGA Bypass Mixer HP' on
amixer -c0 set 'Left PGA Mixer Line1L' on
amixer -c0 set 'Left PGA Mixer Line2L' on
amixer -c0 set 'HP PGA Bypass' 100%
amixer -c0 set 'Speaker Function' On
echo "Speaker is ON"

Speaker OFF

#!/bin/sh
amixer -c0 set PCM 100%
amixer -c0 set 'Right PGA Bypass Mixer HP Switc' off
amixer -c0 set 'Left PGA Bypass Mixer HP' off
amixer -c0 set 'Left PGA Mixer Line1L' off
amixer -c0 set 'Left PGA Mixer Line2L' off
amixer -c0 set 'HP PGA Bypass' 0%
echo "Speaker is OFF"

Thanks Sabrog!