How to Produce a Podcast

if (typeof BingeIframeRan === “undefined”) {
window.addEventListener(“message”, receiveMessage, false);
function receiveMessage(event) {
try {
var parsed = JSON.parse(event.data)
if (parsed.context === “iframe.resize”) {
var iframes = document.getElementsByClassName(“binge-iframe”);
for (let i = 0; i < iframes.length; ++i) {
if (iframes[i].src == parsed.src || iframes[i].contentWindow === event.source) {
iframes[i].height = parsed.height; }
iframes[i].style.opacity = 1;
}
}
} catch (error) {
}
}
var BingeIframeRan = true;
}

I have recorded nearly 1,000 podcast episodes. My team has created and produced more than a dozen separate shows for corporate clients and ourselves.

Here’s what I say whenever someone asks me if they should start a podcast:

Yes, if you think small enough.

Habitual and heavy podcast listeners regularly tune in to about 5 different shows per week. And while it’s… Read More