Podcasts

Never miss another episode of Spark by subscribing to any of our totally free podcasts. All you need to listen is a computer with an internet connection. You can use your favourite podcatcher, or download individual episodes. More information and full instructions on CBC Radio podcasts at cbc.ca/podcasting

There are three different feeds you can subscribe to:

1. Regular Podcast (one episode weekly)

This feed includes weekly episodes of Spark, as heard on the radio. Subscribe directly using iTunes, or copy and paste this URL into a podcasting tool:

Find a full list of past episodes available for download on the Spark blog.

2. Spark Plus (weekly episodes + blog audio)

This feed includes weekly episodes of Spark, and all additional audio (like full interviews) found on the Spark blog.

Click here to subscribe directly using iTunes, or copy and paste this URL into a podcasting tool:

You can find many full interviews in the Interviews category of this blog.

3. Spark Lite (low-bandwidth edition)

This feed includes low-bitrate MP3 versions of Spark, perfect for the bandwidth-conscious. Copy and paste this URL into a podcasting tool:

This website uses IntenseDebate comments, but they are not currently loaded because either your browser doesn't support JavaScript, or they didn't load fast enough.

14 Responses to “Podcasts”

  1. kellymac Says:

    where's the free eco font download???

  2. Dan Misener Says:

    You can download the Ecofont here: http://www.ecofont.eu/ecofont_en.html

    This was linked from the show notes for today's episode: http://www.cbc.ca/spark/2009/02/episode-65-februa...

  3. Dan Misener Says:

    You can download the Ecofont here: http://www.ecofont.eu/ecofont_en.html

    This was linked from the show notes for today's episode: http://www.cbc.ca/spark/2009/02/episode-65-februa...

  4. Clint Lalonde Says:

    Not sure if it is new or not, but I really like the 3 different podcasts, esp the extended SparkPlus. Thanks!

  5. CBC Spark – Cyrus reports on twittering taco trucks | cyrusfarivar.com Says:

    [...] Regardless of where you are, you can listen to the show — right now! — here, or via podcast. [...]

  6. California Taco Trucks » Blog Archive » CBC Spark – Cyrus reports on twittering taco trucks Says:

    [...] Regardless of where you are, you can listen to the show — right now! — here, or via podcast. [...]

  7. tOM Trottier Says:

    Shouldn’t the pic for spark+ be in colour, while the sparkLite should be a 5k jpg?

    tOM

  8. tOM Trottier Says:

    SparkLite is still pretty hefty. Why not use Lame like this:

    lame.exe –priority 0 –verbose -V 9 -q 2 -m m –resample 8000 –highpass .15 –add-id3v2 –pad-id3v2-size 254 –tg Podcast “%Source%” “%NewFileName%”

    ::——- copy over metadata from original file to new one ————
    “C:\Program Files\id3cp.exe” -2 “%Source%” “%NewFileName%”

    (Do this on your original file, not the Lite)

    This reduces the kpbs to about 20kpbs. Then a lot can fit on a small cheap MP3 player, as well as downloading quickly.

    This would reduce Lite from 12.5MB to a nice sounding 8MB for an hour show. Compare how it sounds!

    I actually do this for all my podcasts. Juice can run a program on each download. I run this batch file:

    prompt $t $p$g
    @echo on
    @cls
    @echo %0 – used to reduce size of speech MP3s and add date to filename – can be used for podcasts or audiobooks
    @ECHO .
    @echo eg %0 “C:\Documents and Settings\Tom\My Documents\Podcasts\ITM.TN-MichaelCrichton-2008.11.27.mp3″ “In the middle – Tech Nation”
    @echo becomes 2009.01.07-13.52-Inthemiddle-TechNation-ITM.TN-MichaelCrichton-2008.11.27.mp3
    @ECHO .
    @echo Using parms podcast file:1:%1 podcast name:%2
    @echo a.Uses LAME to reduce size of podcast by reducing bitrate and frequency range and VBR, setting Genre tag to Speech, year to download year
    @echo lame params: hi-compression VBR hi-quality mono
    @echo b. Renames to include file date/time stamp at front (for display by dumb mp3 players) – also copied to Comment tag
    @echo c. Sets id3 v1 tag defaults by filename, podcast name, puts file date in comments tag, sets genre to speech
    @echo d. Use id3cp to copy over original tags
    @echo e. Puts copy in \data\podcasts directory
    @echo f. if no errors, erases original
    @echo –assume param 1 includes ” ” around it; params 2+ do not
    @echo ————————————————
    @echo using %0 %1 %2
    @if exist %1 goto DoIt

    :help
    @echo check errors!
    @echo Param 1 – a file path/name or specification, eg, “c:\podcasts\abc.mp3″ You entered %1
    @echo Param 2 – any words to include in the metadata eg, podcast name, place, in quotes, eg “science podcast”. You entered %2
    dir %1
    @echo err(s) 1-%ERRLame%-%ERRTagCopy%-%ERRFile%
    pause
    exit /B 1%ERRLame%%ERRTagCopy%%ERRFile%
    :=============================================
    :doIt
    @setlocal
    set DestDir=”E:\My Documents\Podcasts”
    e:
    @md %DestDir%
    cd %DestDir%

    :::—– assumes date in form yyyy-mm-yy hh:mm————
    FOR %%V IN (%1) DO set InFileName=%%~nV
    set ErrFile=%ERRORLEVEL%

    @echo file date format in windoze is yyyy/mm/dd HH:MM
    @echo params 2-8 used in name; params 2-infinity used for default album tag
    :: %%J – year
    :: %%K – month
    :: %%L – day
    :: %%M – hour
    :: %%N – minute
    :: %%~tV – complete datetime stamp
    :: %%~nV – filename, w/o path
    :: %%V – filename.ext
    FOR %%V IN (%1) DO FOR /F “tokens=1-5 delims=/:.- ” %%J IN (”%%~tV”) DO set Year=%%J
    FOR %%V IN (%1) DO FOR /F “tokens=1-5 delims=/:.- ” %%J IN (”%%~tV”) DO set FileDate=%%J.%%K.%%L-%%M.%%N

    if %2.==. set %2=”%0″

    Set NewFileName=%InFileName%-%FileDate%.mp3
    @”C:\Program Files\id3info.exe” -n -w %1
    :::::::::::::
    “C:\Program Files\lame.exe” –priority 0 –verbose -V 9 -q 2 -m m –resample 8000 –highpass .15 –add-id3v2 –scale 2 –pad-id3v2-size 254 –tg Speech %1 “%NewFileName%”
    set ERRLame=%ERRORLEVEL%

    ::——- copy over metadata from original file to new one ————
    “C:\Program Files\id3cp.exe” -2 %1 “%NewFileName%”
    set ERRTagCopy=%ERRORLEVEL%

    ::——- show metadata ————
    “C:\Program Files\id3info.exe” %1
    “C:\Program Files\id3info.exe” “%NewFileName%”

    @dir %1 | find “.mp3″
    @dir “%NewFileName%” | find “.mp3″

    IF %ERRFile% GTR 1 goto help
    IF %ERRLame% GTR 0 goto help
    IF %ERRTagCopy% GTR 0 goto help
    endlocal
    sleep 3m
    erase %1
    exit 00

    tOM

  9. Dan Misener Says:

    Will check into it Tom. Thanks for your suggested settings.

  10. Chris Says:

    Looking for episode that had the story about 2 girls traveling and blogging across Canada as compared to Queensland Australia campaign?
    Thanks
    -cd

  11. Nora Says:

    Hi Chris,

    I think I remember hearing part of that story, but it wasn't on Spark. As It Happens, maybe??

  12. My Thoughts Enclosed: Wikis at CBC Radio (CBC Spark) « My Thoughts Enclosed… Says:

    [...] Spark airs on CBC Radio One on Sundays at 13:00.  The show is also available via their Blog and Podcasts.  Nora and her team can also be followed via Twitter [...]

  13. Spark 85 – September 20 & 22, 2009 | Spark | CBC Radio Says:

    [...] Nora: Hi Chris, I think I remember hearing part of that story, but it wasn't on Spark. As It Happens, maybe?? [...]

  14. uberVU - social comments Says:

    Social comments and analytics for this post…

    This post was mentioned on Twitter by clintlalonde: @SparkCBC really like SparkPlus – extended podcast w/ full interviews. http://www.cbc.ca/spark/podcasts/…

Leave a Reply

Powered by WordPress. Using a modified Pride WordPress Theme by Wpdesigner.