I can't stand listening to conventional radio because I can't stand listening to ads. (The same goes for TV, where commercials are 200% louder than what you are trying to watch.)

Unfortunately, my wife needs to listen to the radio while getting ready in the morning.

I was thinking, we have plugins to block ads in our web browsers, why not for the radio?

Most radio stations offer their content streaming over the web. How would you got about designing an ad-blocker? Can you foresee any gotchas?

UPDATE

A couple points that came up...

What to replace the ads with: silence would be fine.

Identifying Ads: maybe the first time an add plays it wouldn't be recognized, but you would have to signal the software that this is an ad. The ad would be recorded. Would it be possible to process it and extract some kind of unique 'signature' so that the next time it plays it is recognized and muted?

link|improve this question

56% accept rate
What kind of programming does she need to listen to? Music. News. Talk. – Les Mar 4 '09 at 19:51
I'm reminded of a cell phone service, that for a fee, allows you to call them and they will identify (artist, song, album) of the music you're playing. This was done with audio sampling of any part of the song. – Les Mar 5 '09 at 13:11
feedback

7 Answers

Given that the streaming happens live one obvious gotcha is what would you fill the time with? Theoretically you could cut out the radio altogether for 30 seconds or so, but that's not a very good solution.

Also, even assuming you can perfectly convert the radio speech to text (in real-time) - a big "if", how would you determine form a stream of text that an ad is about to start?

link|improve this answer
i don't need to fill the time with anything, silence would be fine by me. although, probably wouldn't be too hard to fill it in with other music. – carrier Mar 5 '09 at 2:45
feedback

For the simplest case, I would simply monitor a moving average of the volume of the stream as it comes in. If the moving average goes above a threshold (that would be tuned), then simply mute the volume (or cut it by 80%).

I did a quick google search, and it seems like this class would help (assuming you're doing it in .net): http://www.codeproject.com/KB/audio-video/SoundViewer.aspx

link|improve this answer
feedback

I'm not sure how you would go about doing it, but you could create some sort of audio "filter" that checks every the stream every so often (5-10 seconds).

If the filter fails, it would mean it's an advertisement, so you could turn off or mute the stream for a while.

Think of it like audio regular expressions.

Now come the problems.

As levik said, what do you fill dead time with?

How would you attach your filter to the streamer? If you hooked it up to the speaker feed directly this might work, but what do you do if you want to let audio from something else play, while muting the radio?

How computationally expensive would this be?

This sounds like an interesting project, if you make good progress on it, let us know!

link|improve this answer
feedback

LabVIEW by National Instruments has a bunch of audio (and vibration) analysis tools. One thought that comes to mind would be to compare the left and right channels. If they differ, then you probably have music. It could still be an ad though. I haven't used their audio tools, nor am I familiar with audio analysis, so you still have some homework to do.

Sometimes you need to abandon a programming approach and do it differently. I listen to music on pandora.com. The ads are visual on the monitor, but never audible. I choose the music type I want to hear and let it play.

link|improve this answer
feedback

One thing you have to beware of is that some clients are so smart that they pause the ads if you turn down the volume too much. Spotify does this.

No problem on radio or pure media streams though.

link|improve this answer
feedback

About filling the blanks and handling the processing delays

If your wife isn't too obsessed about the timing, your tool could start 30 minutes before she gets up and thus have a buffer of ad-free radio.

link|improve this answer
good suggestion... however, one of the reasons she has to listen to it is to help her "keep track of time" while she's getting ready. just quiet during the commercials would be perfectly acceptable. – carrier Mar 5 '09 at 2:44
feedback

I think you'd want to sense the volume shift and then have it programmed to mute for 60 seconds, retest the stream at that point and if at same level stay off for 30 more then sample again and if the application senses it is the lower volumed program it unmutes til any change. Some sort of ducking, timed compressor with a threshold above a preset level (set while listening to the program). An acoompanying audio analyzer window or graph that shows the levels in a graphic way would be ideal... I found this site because I am being driven mad by Heart&Bdy Extrct ads that plague Jeff Rense's nightly program and several other alt news stations. EVERY AD BREAK! If you design some software that can reliably do the job you would likely make some money, but the ad people would get pretty mad I imagine. (I am assuming you meant streaming radio) but I will get in line to buy one if you do develop... better yet, make me your first customer!! I often go missing a few minutes of some show because I forget to unmute after going about something in the room...so much to learn out there...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.