{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js", "ssg:https://framerusercontent.com/modules/LiGT2XNq3G8j2qxm4Ecw/FQJfmeOPE7Go7U6550Nv/dMa7nnuWw-13.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */ export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==PlayOptions.Normal;const showThumbnail=onCanvas||thumbnail!==ThumbnailOptions.Off&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/ _jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/ _jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://stackoverflow.com/questions/2068344/how-do-i-get-a-youtube-video-thumbnail-from-the-youtube-api\nconst thumbnailURL=getThumbnailURL(videoId,thumbnail,getWebPSupported()?ThumbnailFormat.WebP:ThumbnailFormat.JPG);// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(isAutoplay||showThumbnail){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===PlayOptions.Loop){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}return /*#__PURE__*/ _jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:hasBorderRadius&&showVideo?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},children:[isPreloading&&/*#__PURE__*/ _jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/ _jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/ _jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${thumbnailURL}) no-repeat`:undefined}}),showVideo?/*#__PURE__*/ _jsx(\"iframe\",{style:videoStyle,src:embedURL.href,frameBorder:\"0\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",onClick:onClick,onMouseEnter:onMouseEnter,onMouseLeave:onMouseLeave,onMouseDown:onMouseDown,onMouseUp:onMouseUp}):/*#__PURE__*/ _jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===PlayOptions.Normal;}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==PlayOptions.Normal;}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:PlayOptions.Normal,shouldMute:true,thumbnail:ThumbnailOptions.Medium,isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL1=getEmbedURL(videoId);return[videoId,embedURL1];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId1=pathSegments[1];return[videoId1,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId2=url.pathname.slice(1);const embedURL2=getEmbedURL(videoId2);return[videoId2,embedURL2];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=ThumbnailFormat.JPG){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=ThumbnailFormat.WebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=ThumbnailFormat.WebP?\"webp\":\"jpg\";switch(res){case ThumbnailOptions.Low:return`${pre}${videoId}/hqdefault.${ext}`;case ThumbnailOptions.Medium:return`${pre}${videoId}/sddefault.${ext}`;case ThumbnailOptions.High:return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(!!(element.getContext&&element.getContext(\"2d\"))){// was able or not to get WebP representation\nreturn element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")==0;}else{// very old browser like IE 8, canvas not supported\nreturn false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/ _jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/ _jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/ _jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/ _jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/ _jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"315\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerIntrinsicWidth\":\"560\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "import{jsx as e,jsxs as t}from\"react/jsx-runtime\";import{ComponentPresetsConsumer as o,Link as n}from\"framer\";import{motion as a}from\"framer-motion\";import*as i from\"react\";import{Youtube as r}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js\";export const richText=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"Defining Your Brand's Voice and Tone\"}),/*#__PURE__*/e(\"p\",{children:\"A well-defined brand voice and tone sets the stage for consistent and engaging content. Consider the personality you want your brand to embody and the emotions you want to evoke in your audience. Are you aiming for a friendly and approachable vibe, or a more authoritative and professional tone? Keep your target audience in mind as you define your brand's voice and tone.\"}),/*#__PURE__*/e(\"h2\",{children:\"Choosing Your Brand's Color Palette\"}),/*#__PURE__*/t(\"p\",{children:[\"Colors play a significant role in shaping your brand's visual identity. Select a primary color and a few complementary colors to create a harmonious palette that represents your brand's personality. Be mindful of color psychology\u2014different colors evoke different emotions and associations depending on the cultural context. For instance, blue is often associated with trust and stability, while red can signify passion, energy, and power. But red can \",/*#__PURE__*/e(\"strong\",{children:\"also\"}),\" represent warmth and coziness, depending on the shade of red and who is consuming your content (and ultimately, what that content is about).\"]}),/*#__PURE__*/e(\"h2\",{children:\"Selecting Fonts and Typography\"}),/*#__PURE__*/e(\"p\",{children:\"Typography is another essential aspect of your brand's visual identity. Choose fonts that align with your brand's personality and are easy to read. You'll typically need a header font for titles, a body font for paragraphs, and possibly accent font for quotes or special text (although this largely optional). Ensure that your chosen fonts are versatile and work well across different platforms and devices.\"}),/*#__PURE__*/e(\"p\",{children:\"Keep in mind that the only thing you can control on the platforms your listeners actually use to consume your content is the text copy (show notes, etc.) and your show\u2019s images and episode thumbnails. These are where displaying your chosen typography is important\u2014only on your website will you be able to customize everything top to bottom.\"}),/*#__PURE__*/e(\"h2\",{children:\"Developing Your Brand's Imagery\"}),/*#__PURE__*/e(\"p\",{children:\"Your brand's imagery style includes the photos, illustrations, and graphics you use in your content. Establish guidelines for the types of images you'll use, as well as any filters or editing techniques that should be applied consistently. Consider whether you want your imagery to be minimalistic, vibrant, or something in between.\"}),/*#__PURE__*/t(\"p\",{children:[\"If you\u2019re a solo creator, consider collaborating with other specialized creators (photographers, illustrators, etc.) to help contribute to your visual identity, or if you\u2019re really strapped budget-wise or network-wise, image generation AI tools like \",/*#__PURE__*/e(n,{href:\"https://labs.openai.com/\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"DALL\u2022E\"})}),\" and \",/*#__PURE__*/e(n,{href:\"https://midjourney.com/\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Midjourney\"})}),\" can be a great way to get your show off the ground.\"]}),/*#__PURE__*/e(\"h2\",{children:\"Creating a Logo and Iconography\"}),/*#__PURE__*/e(\"p\",{children:\"A memorable logo and set of icons can help solidify your brand's identity. Design a logo that represents your brand's essence and is easily recognizable. Create a set of icons for use across your content, ensuring that they align with your overall aesthetic and color palette.\"}),/*#__PURE__*/e(\"p\",{children:\"A good heuristic for developing a good logo is making sure it would appear clearly on different media formats, such as print, small screens, big screens, business cards, etc. It might not necessarily appear in all these places, but generally, if you anticipate your logo being very recognizable and legible in these places, you\u2019ll find a good logo often falls into place. This means that you\u2019ll want black and white versions of your logo, color versions of your logo (in various colorways), and potentially a logo with any text (although you could design a logo which always requires text too\u2014it can go both ways).\"}),/*#__PURE__*/e(\"h2\",{children:\"Consistency in Your Podcast Content\"}),/*#__PURE__*/e(\"p\",{children:\"Apply your brand style guide to all aspects of your podcast, from the cover art and promotional materials to the show notes and transcripts. Use your established voice and tone throughout your podcast episodes, and ensure that any visuals, such as episode thumbnails, align with your brand's aesthetic.\"}),/*#__PURE__*/e(\"p\",{children:\"Don\u2019t forget the music too! Even if you don\u2019t use the same music for every podcast (although having a solid hook is a good idea), you\u2019ll likely want to stick to the same texture or aesthetic. Having a chosen style or even producer that you go to can aid in this.\"}),/*#__PURE__*/e(\"h2\",{children:\"Adhering to Your Style Guide in Written Content\"}),/*#__PURE__*/e(\"p\",{children:\"When creating written content, such as blog posts or social media captions, adhere to your brand's voice, tone, and typography guidelines. Consistently use your chosen fonts and colors, and incorporate your brand's imagery style in any accompanying visuals.\"}),/*#__PURE__*/t(\"p\",{children:[\"Remember, tools like PodiumGPT can help you write content that will \",/*#__PURE__*/e(\"em\",{children:/*#__PURE__*/e(\"strong\",{children:\"automatically\"})}),\" stick to your style, since it\u2019s lifting it directly from the audio you upload to the platform.\"]}),/*#__PURE__*/e(\"h2\",{children:\"Applying Your Brand Style to Video Content\"}),/*#__PURE__*/e(\"p\",{children:\"For video content, maintain consistency by using your brand's color palette, fonts, and imagery style in your video thumbnails, graphics, and animations. Ensure that your on-screen presence aligns with your brand's voice and tone, and incorporate your logo and iconography where appropriate.\"}),/*#__PURE__*/e(\"h2\",{children:\"Utilizing AI Tools for Content Creation\"}),/*#__PURE__*/e(\"p\",{children:\"Take advantage of AI tools like Podium to streamline your content creation process. These tools can generate show notes, summaries, transcripts, and more, all while adhering to your brand style guide.\"}),/*#__PURE__*/e(\"h2\",{children:\"Creating Templates for Different Content Types\"}),/*#__PURE__*/e(\"p\",{children:\"Develop templates for various content types, such as blog posts, social media posts, video thumbnails, and podcast episode art, that adhere to your brand style guide. These templates will save time and ensure consistency across all of your content.\"}),/*#__PURE__*/e(\"p\",{children:\"Some tools that create clips of your content might allow you to customize your templates or brand choices, so that spinning up new templates will automatically be \u201Con-brand\u201D.\"}),/*#__PURE__*/e(\"h2\",{children:\"Assembling a Content Creation Team\"}),/*#__PURE__*/e(\"p\",{children:\"If your content output is extensive, consider assembling a content creation team to help you maintain consistency and quality. Ensure that every team member is familiar with your brand style guide and can apply it to their work. This is obviously only a choice for podcasters and creators who have the budget\u2014which is why using AI tools can be a great fill-in.\"}),/*#__PURE__*/e(\"h1\",{children:\"Conclusion: The Power of a Strong Brand Style Guide\"}),/*#__PURE__*/e(\"p\",{children:\"A well-crafted brand style guide is essential for maintaining consistency and establishing a strong brand identity across all of your content. By defining your brand's core elements, crafting a consistent visual aesthetic, implementing your style guide across different content types, and streamlining your content creation workflow, you'll create a cohesive and recognizable brand that resonates with your audience. Remember to review and update your style guide regularly to ensure it continues to represent your brand accurately as it grows and evolves.\"})]});export const richText1=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"AI and Podcast Production\"}),/*#__PURE__*/e(\"h3\",{children:\"Podcast Show Notes: The SEO Powerhouse\"}),/*#__PURE__*/e(\"p\",{children:\"Podcast show notes are an essential component of any successful podcast marketing strategy. By generating keyword-rich, engaging show notes with AI copywriting software like Podium (which is tailored for audio content), you can boost your podcast's search engine visibility and drive organic traffic to your episodes. AI-generated show notes are a time-saving and cost-effective solution that can help you maintain consistency across your content, reinforce your brand's identity, and provide a one-stop-shop for links, places, and people that your audience can reference before and after the show.\"}),/*#__PURE__*/t(\"p\",{children:[\"We\u2019ve written about the importance of show notes \",/*#__PURE__*/e(n,{href:\"https://hello.podium.page/blog/writing-great-show-notes\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"here\"})}),\".\"]}),/*#__PURE__*/e(\"h3\",{children:\"AI-Generated Podcast Summaries: Hook Your Audience in Seconds\"}),/*#__PURE__*/e(\"p\",{children:\"Captivating your audience's attention is the key to successful podcast marketing. With AI-generated podcast summaries, you can create enticing episode teasers in text form that pique your listeners' curiosity and encourage them to click \\\"play.\\\" These can appear in the show notes, in social media posts, and anywhere you can post about your show. Plus, these AI-written summaries provide a consistent format and structure, making it easy for your audience to navigate and digest your content.\"}),/*#__PURE__*/e(\"h3\",{children:\"Turn Podcast into Video, Turn Video into Podcast: Multi-Platform Mastery\"}),/*#__PURE__*/e(\"p\",{children:\"Diversifying your content is crucial for reaching a wider audience and maximizing your marketing impact. By leveraging AI tools that turn podcasts into videos and vice versa, you can repurpose your content for various platforms, extending your brand's reach and strengthening your online presence.\"}),/*#__PURE__*/e(\"p\",{children:\"Podium is actively developing the ability for you to generate audiograms for your podcast\u2019s best moments, so even if you\u2019re not in the business of producing video content, we\u2019ll help you promote it using video.\"}),/*#__PURE__*/e(\"h2\",{children:\"AI and Audience Engagement: Winning the Podcast Marketing Game\"}),/*#__PURE__*/e(\"h3\",{children:\"AI Writer for Personalized Marketing: Making Connections That Matter\"}),/*#__PURE__*/e(\"p\",{children:\"Building genuine connections with your audience is the foundation of successful podcast marketing. AI writers can help you craft personalized, engaging messages for your email campaigns, social media posts, and other promotional materials. By tailoring your content to your audience's preferences and interests, you can foster loyalty and drive engagement with your podcast.\"}),/*#__PURE__*/t(\"p\",{children:[\"Right now, Podium already generates high-quality content based on the episode you\u2019ve uploaded; soon though, we\u2019ll make sure that any content you generate is actually based on the entire \",/*#__PURE__*/e(\"strong\",{children:\"show\"}),\" you\u2019ve already published, whether or not you used Podium to process past episodes. This means that Podium, including our powerful tool PodiumGPT, will have a far deeper and nuanced understanding of your unique voice, granting it the ability to write in a personalized way that goes far beyond just the episode you happen to be working with.\"]}),/*#__PURE__*/e(\"h3\",{children:\"AI-Driven Analytics: The Key to Data-Driven Marketing Success\"}),/*#__PURE__*/e(\"p\",{children:\"Harnessing the power of AI-driven analytics can supercharge your podcast marketing efforts. With advanced data analysis, you can identify trends, track listener behavior, and gain a deeper understanding of your audience. These insights will inform your marketing strategy, enabling you to optimize your content, target the right audience segments, and maximize your return on investment.\"}),/*#__PURE__*/e(\"p\",{children:\"When shopping around for podcast hosts, make sure to look in their \u201Canalytics\u201D feature sections to understand what they offer in the ways of audience understandings so you can market yourself accordingly and adapt to your listener\u2019s behavior.\"}),/*#__PURE__*/e(\"h2\",{children:\"How to Implement AI in Your Podcast Marketing Strategy\"}),/*#__PURE__*/e(\"h3\",{children:\"Step 1: Research the Best AI Copywriting Software and Tools\"}),/*#__PURE__*/e(\"p\",{children:\"To get started with AI-driven podcast marketing, you'll first need to research the best AI copywriting software and tools available. Look for solutions that cater to podcasters, offer a range of features, and have a strong track record of success.\"}),/*#__PURE__*/e(\"h3\",{children:\"Step 2: Experiment and Iterate to Find the Perfect Balance\"}),/*#__PURE__*/e(\"p\",{children:\"Implementing AI in your podcast marketing strategy may require some trial and error. Be prepared to experiment with different tools, techniques, and approaches to find the perfect balance between automation and human touch. This process will help you fine-tune your strategy for maximum impact.\"}),/*#__PURE__*/e(\"h3\",{children:\"Step 3: Keep Up with AI Innovations and Trends\"}),/*#__PURE__*/e(\"p\",{children:\"The world of AI is constantly evolving, and staying abreast of the latest innovations and trends is crucial for maintaining a competitive edge. Regularly update your knowledge about emerging AI tools and technologies, and consider how they can be integrated into your podcast marketing strategy to drive even greater results.\"}),/*#__PURE__*/e(\"h3\",{children:\"Step 4: Embrace a Hybrid Approach\"}),/*#__PURE__*/e(\"p\",{children:\"While AI offers incredible benefits for podcast marketing, it's essential not to lose the human touch that makes your brand unique. Embrace a hybrid approach that combines AI automation with human creativity, ensuring your content remains engaging, authentic, and true to your brand's voice.\"}),/*#__PURE__*/e(\"h3\",{children:\"Step 5: Monitor and Measure Your Success\"}),/*#__PURE__*/e(\"p\",{children:\"To gauge the effectiveness of your AI-driven podcast marketing strategy, monitor and measure your success using key performance indicators (KPIs) such as listener growth, engagement rates, and conversion metrics. Regularly analyze this data to identify areas for improvement, and adjust your strategy accordingly to maximize your marketing ROI.\"}),/*#__PURE__*/e(\"h2\",{children:\"AI and Podcast Marketing: The Future is Here\"}),/*#__PURE__*/e(\"p\",{children:\"With advanced AI tools like Podium, copywriting software, and AI-driven analytics at your disposal, the future of podcast marketing is bright and full of potential. By embracing these technologies and harnessing their power, you can take your podcast marketing strategy to new heights, driving increased engagement and growth for your brand.\"}),/*#__PURE__*/e(\"p\",{children:\"As AI continues to evolve and develop, it's crucial for marketers to stay ahead of the curve and capitalize on the opportunities these cutting-edge tools offer. By implementing AI in your podcast marketing efforts and embracing a data-driven, hybrid approach, you can stay ahead of the competition and build a lasting connection with your audience.\"}),/*#__PURE__*/e(\"p\",{children:\"So, get ready to embark on an exciting journey into the world of AI-powered podcast marketing, and watch your brand flourish in this rapidly changing landscape. The future of marketing is here, and it's time to seize the opportunity and make your podcast stand out from the crowd.\"})]});export const richText2=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"Top Social Media Management Tools\"}),/*#__PURE__*/e(\"h3\",{children:\"Buffer\"}),/*#__PURE__*/e(\"p\",{children:\"Buffer is a popular social media management tool that allows you to schedule and publish content across multiple platforms, including Facebook, Twitter, LinkedIn, and Instagram. With its intuitive interface and built-in analytics, you can track the performance of your content and optimize your posting strategy. As a podcaster, you can use Buffer to share your latest episodes, podcast show notes, and AI-generated podcast summaries, ensuring your content reaches your audience at the right time.\"}),/*#__PURE__*/e(\"h3\",{children:\"Hootsuite\"}),/*#__PURE__*/e(\"p\",{children:\"Hootsuite is another powerful tool for managing social media accounts. It supports over 35 popular platforms, enabling you to monitor and engage with your audience, schedule content, and access comprehensive analytics. Hootsuite also offers a range of integrations, such as podcast to video converters, making it easier to repurpose your content and maximize your reach.\"}),/*#__PURE__*/e(\"h3\",{children:\"Later\"}),/*#__PURE__*/e(\"p\",{children:\"Later is a social media management tool specifically designed for Instagram, Facebook, Twitter, and Pinterest. It offers a visual content calendar, allowing you to plan, schedule, and analyze your content with ease. As a creator, you can utilize Later's features to share your podcast episodes, show notes, and even turn podcast into video content to engage your audience across platforms.\"}),/*#__PURE__*/e(\"h3\",{children:\"SocialBee\"}),/*#__PURE__*/e(\"p\",{children:\"SocialBee is a comprehensive social media management tool that supports content scheduling, audience engagement, and analytics across various platforms. With its customizable categories and evergreen content recycling features, you can efficiently manage and repurpose your content, such as podcast show notes and AI-generated summaries. SocialBee also integrates with numerous third-party tools, allowing you to further streamline your content creation and promotion efforts.\"}),/*#__PURE__*/e(\"h3\",{children:\"Agorapulse\"}),/*#__PURE__*/e(\"p\",{children:\"Agorapulse is a feature-rich social media management tool that enables you to publish content, engage with your audience, and monitor your online presence across various platforms. Its in-depth analytics and reporting capabilities allow you to make data-driven decisions and refine your social media strategy. Agorapulse also offers a range of integrations, including video to summary converters and podcast to video converters, allowing you to repurpose your content for maximum impact.\"}),/*#__PURE__*/e(\"h3\",{children:\"Loomly\"}),/*#__PURE__*/e(\"p\",{children:\"Loomly is an excellent social media management tool for podcasters and creators, designed to simplify content planning, scheduling, and publishing across multiple platforms, including Facebook, Twitter, Instagram, LinkedIn, and Pinterest. With its user-friendly interface and collaborative features, Loomly allows you to work with your team to create, review, and approve content before it goes live.\"}),/*#__PURE__*/e(\"p\",{children:\"Loomly also provides valuable insights and analytics, helping you to understand your audience's preferences and tailor your content strategy accordingly. By incorporating podcast show notes, AI-generated podcast summaries, and podcast to video converter tools, you can create engaging and diverse content that appeals to your audience.\"}),/*#__PURE__*/e(\"h2\",{children:\"Choosing the Right Social Media Management Tool\"}),/*#__PURE__*/e(\"p\",{children:\"With so many social media management tools available, selecting the right one for your podcast or content creation needs can be challenging. Here are a few factors to consider when making your decision:\"}),/*#__PURE__*/t(\"ol\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Supported Platforms: Ensure that the tool supports the social media platforms you want to target. Some tools focus on specific platforms, while others offer broader support across various channels.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Features and Functionality: Assess the features offered by each tool and determine which ones align with your needs. For instance, if you want to repurpose podcast content, look for integrations with podcast to video converters or video to summary converters.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Ease of Use: Consider the tool's user interface and overall ease of use. A tool with an intuitive design can save you time and help you stay organized, allowing you to focus on creating quality content. This will of course take some time to suss out, as it\u2019s hard to take other people\u2019s word for it\u2014you\u2019ll likely want to give the platform a good trial.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Collaboration: If you work with a team or require input from others, choose a tool with collaboration features, such as content approval workflows and team communication options. At the very least you want to know how many other team members you can invite before incurring a charge or plan upgrade.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Analytics and Reporting: Evaluate the analytics capabilities of each tool, as they can provide valuable insights into your content's performance and help you make data-driven decisions for future content strategies. This also saves a bunch of time going back and forth between your social platforms and the tool itself.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Budget: Compare pricing plans and features to find a tool that fits within your budget without compromising on essential features.\"})})]}),/*#__PURE__*/e(\"p\",{children:\"By carefully considering these factors, you can choose a social media management tool that best aligns with your specific needs and goals, ensuring a seamless content promotion experience and helping you grow your audience effectively.\"}),/*#__PURE__*/e(\"h2\",{children:\"Conclusion\"}),/*#__PURE__*/e(\"p\",{children:\"Social media management tools offer businesses and brands a powerful solution to the challenges of managing social media. By automating tasks and offering valuable insights into audience behavior and preferences, these tools can help businesses stay ahead of the curve and improve their social media performance. When choosing a social media management tool, be sure to consider your specific needs and goals, and evaluate each one not based entirely off other people\u2019s reviews (although helpful), but also after a good personal trial period.\"})]});export const richText3=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"The Importance of Hosting in Podcasting\"}),/*#__PURE__*/e(\"p\",{children:\"The host is the face and voice of a podcast, and their role as a host goes far beyond simply introducing the show. A good host sets the tone for the podcast, guides the conversation, and keeps the audience engaged throughout the episode. They also play a crucial role in building a relationship with their listeners, establishing trust and credibility over time.\"}),/*#__PURE__*/e(\"p\",{children:\"Hosts have to strike that perfect balance between allowing enough \u201Cbreathing room\u201D in the conversation to let their guests display their unique voice and perspective, and making sure the conversation progresses at an appropriate pace when the guest finishes a point or has trouble figuring out what to say next (because there\u2019s definitely an art in being a guest, too\u2014but it\u2019s the host\u2019s job to make sure the show keeps moving forward).\"}),/*#__PURE__*/e(\"h2\",{children:\"Tips and Techniques for Hosting a Successful Podcast\"}),/*#__PURE__*/e(\"h3\",{children:\"Be Prepared\"}),/*#__PURE__*/e(\"p\",{children:\"Preparation is key to hosting a successful podcast. This includes researching your topic, preparing questions and talking points, and practicing your delivery. The more prepared you are, the more confident and engaging you will be.\"}),/*#__PURE__*/e(\"p\",{children:\"Of course, you want to be natural, be organic\u2014don\u2019t follow a script. A loose list of bulleted points is probably best for most hosts (unless your show has a particular theatrical rehearsed quality for it\u2014but you\u2019re the best judge of your own needs). That way, you can stay on track but let the medium (podcasting) do what it does best\u2014allow an open space for authentic, natural conversation.\"}),/*#__PURE__*/e(\"h3\",{children:\"Be Authentic\"}),/*#__PURE__*/e(\"p\",{children:\"Your audience can tell when you're not being authentic, so it's important to be true to yourself and your personality. Don't try to be someone you're not, and avoid using scripted or rehearsed responses. Be natural and spontaneous, and let your personality shine through.\"}),/*#__PURE__*/t(\"p\",{children:[\"You\u2019ll also want to make sure you\u2019re pursuing episode topics that are actually interesting to you. You\u2019ll rarely want to feel \u201Cobligated\u201D to chase a specific topic, unless for example it\u2019s a current event or news cycle item that your show probably \",/*#__PURE__*/e(\"em\",{children:/*#__PURE__*/e(\"strong\",{children:\"needs\"})}),\" to be\"]}),/*#__PURE__*/e(\"h3\",{children:\"Keep the Conversation Flowing\"}),/*#__PURE__*/e(\"p\",{children:\"A good host keeps the conversation flowing smoothly, moving seamlessly from one topic to the next. Listen actively to your guests and respond thoughtfully to their comments. Avoid interrupting or talking over them, and encourage them to elaborate on their ideas.\"}),/*#__PURE__*/e(\"h3\",{children:\"Use Storytelling Techniques\"}),/*#__PURE__*/e(\"p\",{children:\"Storytelling is a powerful tool for engaging your audience and conveying your message. Use storytelling techniques, such as anecdotes and examples, to illustrate your points and bring your ideas to life.\"}),/*#__PURE__*/e(\"h3\",{children:\"Be Mindful of Your Audience\"}),/*#__PURE__*/e(\"p\",{children:\"Always keep your audience in mind when hosting your podcast. Consider their interests and needs, and tailor your content to their preferences. Use language and examples that are accessible and relatable, and avoid jargon or technical terms that may be confusing.\"}),/*#__PURE__*/e(\"h3\",{children:\"Encourage Interaction\"}),/*#__PURE__*/e(\"p\",{children:\"Engage with your audience by encouraging them to participate in the conversation. Ask for their feedback and opinions, and incorporate their comments and questions into the episode. This can help build a sense of community and loyalty among your listeners.\"}),/*#__PURE__*/e(\"h3\",{children:\"Use AI-Powered Tools\"}),/*#__PURE__*/e(\"p\",{children:\"AI-powered tools, such as Podium's AI writer and podcast show notes generator, can help you save time and streamline your workflow as a host. These tools can generate keyword-rich show notes and summaries, as well as provide suggestions for improving your content and delivery.\"}),/*#__PURE__*/e(\"h2\",{children:\"Conclusion\"}),/*#__PURE__*/e(\"p\",{children:\"As a podcast host, you play a crucial role in the success of your show. By being prepared, authentic, and mindful of your audience, you can create engaging and impactful content that resonates with your listeners. Incorporating storytelling techniques, encouraging interaction, and using AI-powered tools can also help you enhance your hosting skills and create a standout podcast.\"})]});export const richText4=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"The Value of Community Building in Podcasting\"}),/*#__PURE__*/t(\"p\",{children:[\"Building a community around your content, while not necessarily mandatory, can be a huge boon for the long-term success of your podcast. These supporters not only help spread the word about your podcast but can also provide valuable feedback, ideas, and support. In a way, they become \",/*#__PURE__*/e(\"em\",{children:\"collaborators\"}),\" in the creative process, functioning as an attuned sounding board for potential ideas around future content or digging deeper on past content. Contemporary examples include hosting a Patreon, subreddit, or \",/*#__PURE__*/e(n,{href:\"https://www.mightynetworks.com/\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Mighty Network\"})}),\" around your particular show\u2014or letting the community do it for you.\"]}),/*#__PURE__*/e(\"p\",{children:\"Having a dedicated community of supporters can also help you monetize your podcast through sponsorships, merchandise sales, donations, and other revenue streams. By building a strong community, you can turn your podcast from a hobby into a sustainable business which can even begin employing other professionals (like animators, producers, and editors) to turn a solo project into a team venture.\"}),/*#__PURE__*/e(\"h2\",{children:\"Cultivating a Loyal Community of Supporters for Your Podcast\"}),/*#__PURE__*/e(\"h3\",{children:\"Define your target audience\"}),/*#__PURE__*/e(\"p\",{children:\"When embarking on the journey of creating a podcast or show, one of the most important aspects is nurturing a supportive and engaged community around your content. In order to achieve this, it is crucial to first understand and define the target audience for your podcast. By knowing who you are creating content for, their interests, and the challenges they face, you will be better equipped to produce content that resonates with them and fosters a community of like-minded supporters.\"}),/*#__PURE__*/e(\"h3\",{children:\"Engage with your listeners\"}),/*#__PURE__*/e(\"p\",{children:\"Podcasting provides a unique and personal medium to connect with listeners. Embracing this connection can strengthen your community by actively engaging with listeners on social media, responding to their comments and questions, and inviting their feedback and ideas. This open communication encourages listeners to feel heard and valued, fostering a deeper bond between you and your audience.\"}),/*#__PURE__*/e(\"h3\",{children:\"Create exclusive content for your supporters\"}),/*#__PURE__*/e(\"p\",{children:\"To further solidify this bond, consider offering exclusive content available only to your supporters. This could take the form of bonus episodes, behind-the-scenes content, or even exclusive merchandise. By providing additional value, you can cultivate loyalty and enhance engagement among your community.\"}),/*#__PURE__*/e(\"h3\",{children:\"Collaborate with other creators\"}),/*#__PURE__*/e(\"p\",{children:\"Another effective way to expand your reach and grow your community is through collaboration with other creators. By seeking opportunities to guest on other podcasts, working together on content, or cross-promoting each other's work, you can introduce your podcast to new audiences and establish valuable connections within the creator community.\"}),/*#__PURE__*/e(\"h3\",{children:\"Offer ways for supporters to get involved\"}),/*#__PURE__*/e(\"p\",{children:\"In addition to consuming your content, it's important to give your supporters opportunities to actively participate in your podcast's community. Creating a private Facebook group, organizing events or meetups, or inviting listener questions and feedback for future episodes are just a few ways to involve your supporters and encourage their ongoing engagement.\"}),/*#__PURE__*/e(\"h3\",{children:\"Be authentic and transparent\"}),/*#__PURE__*/t(\"p\",{children:[\"Lastly, \",/*#__PURE__*/e(n,{href:\"https://hello.podium.page/blog/the-power-of-authenticity-in-content-creation-why-you-should-show-your-true-self\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"authenticity and transparency\"})}),\" are key in building a thriving community of supporters. By being open about your intentions, goals, and even your setbacks, you create a sense of trust that is essential for fostering a dedicated and engaged community. By following these principles and nurturing connections with your listeners, you can create a strong foundation for a successful and supportive podcast community.\"]}),/*#__PURE__*/e(\"h2\",{children:\"Using AI to Build a Community of Supporters\"}),/*#__PURE__*/e(\"p\",{children:\"AI-powered tools, such as Podium's podcast transcription service, can help you build a stronger community by providing a more accessible listening experience. By offering full transcripts of your episodes, you can make your content more accessible to listeners with hearing impairments or those who prefer to read rather than listen.\"}),/*#__PURE__*/e(\"p\",{children:\"If you\u2019re managing a dedicated community on Discord, Patreon, Reddit, Mighty Networks, or somewhere else\u2014features like Podium\u2019s clip generation can help you get your audience excited about the next episode.\"}),/*#__PURE__*/e(\"p\",{children:\"Even cooler, custom chatbots like PodiumGPT, if used correctly, can help you generate language that\u2019s specific to your community. For example, you can copy and paste actual things your supporters say in your online community into PodiumGPT, and then ask PodiumGPT with creating promotional content about your latest episode that sounds like what you pasted in.\"}),/*#__PURE__*/e(\"p\",{children:\"Moreover, AI-powered tools build into hosting platforms can help you analyze your listener data to identify patterns and trends. This can help you understand your audience better and create content that resonates with them. By using AI to gain insights into your audience, you can build a stronger community of supporters around your podcast.\"}),/*#__PURE__*/e(\"h2\",{children:\"Conclusion\"}),/*#__PURE__*/e(\"p\",{children:\"Building a community of supporters is essential for the long-term success of your podcast. By engaging with your listeners, offering exclusive content, collaborating with other creators, and being authentic and transparent, you can build a loyal and engaged community around your podcast. And with the help of AI-powered tools, you can take your community building efforts to the next level, offering a more accessible listening experience and gaining insights into your audience to create even better content.\"})]});export const richText5=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"The Importance of SEO for Podcasts\"}),/*#__PURE__*/t(\"p\",{children:[\"Search engine optimization (SEO) is the process of optimizing your online content to increase visibility and rankings in search engine results pages (SERPs). For podcasts, SEO is essential to ensure your content is discoverable by potential listeners. Optimizing your podcast\u2019s \",/*#__PURE__*/e(n,{href:\"https://hello.podium.page/blog/writing-great-show-notes\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"show notes\"})}),\" can also help your listeners discover your podcast on whatever player they\u2019re using, assuming their platform doesn\u2019t perform powerful AI recommendations on the podcast audio itself (like \",/*#__PURE__*/e(n,{href:\"https://hello.fathom.fm/\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Fathom\"})}),\").\"]}),/*#__PURE__*/e(\"p\",{children:\"When you optimize your podcast's SEO, you increase the likelihood of appearing at the top of search results when people search for relevant keywords or phrases. This can lead to increased traffic to your podcast and help you reach a wider audience\u2014and if you\u2019re producing truly useful content\u2014it\u2019s a wider audience that\u2019s well-deserved!\"}),/*#__PURE__*/e(\"h2\",{children:\"How AI Can Help Optimize Your Podcast's SEO\"}),/*#__PURE__*/e(\"p\",{children:\"AI-powered tools, such as Podium, can help you optimize your podcast or show\u2019s SEO in several ways. These tools can analyze your actual podcast audio content to identify areas for improvement, generate keyword-rich show notes and summaries, and even suggest changes to your podcast's title and description to improve searchability.\"}),/*#__PURE__*/e(\"p\",{children:\"AI can help you identify relevant keywords and phrases to target in your podcast's content, metadata, and show notes. By targeting these keywords, you can improve your podcast's chances of appearing at the top of search results for relevant queries.\"}),/*#__PURE__*/e(\"p\",{children:\"Some of our clever customers have even shared a useful tactic: researching a handful of targeted SEO keywords and phrases in advance of a particular episode or series, and making sure these are \u201Cmentioned\u201D in the podcast or livestream itself, such that they\u2019ll automatically appear in the transcript. They\u2019re playing the long-game\u2014not a bad move at all.\"}),/*#__PURE__*/e(\"h2\",{children:\"Best Practices for Using AI to Optimize Your Podcast's SEO\"}),/*#__PURE__*/t(\"ol\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Focus on quality content first.\"}),\" While AI-powered tools can help you optimize your podcast's SEO, it's important to remember that quality content is the foundation of a successful podcast. Focus on creating engaging and informative content first and foremost, and use AI to enhance your content and improve searchability. Your audience comes to you for \",/*#__PURE__*/e(\"em\",{children:/*#__PURE__*/e(\"strong\",{children:\"you\"})}),\"\u2014the rest is just support.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Use relevant keywords in your metadata and show notes.\"}),\" AI can help you identify relevant keywords and phrases to target in your metadata and show notes. Use these keywords strategically to improve your podcast's search engine rankings.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Optimize your title and description.\"}),\" Your podcast's title and description are key components of its SEO. Use AI to analyze your title and description and suggest changes to improve searchability.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Regularly update your show notes and metadata.\"}),\" Keep your podcast's metadata and show notes up-to-date with relevant keywords and information. This can help improve your search engine rankings over time.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Utilize AI-generated show notes and summaries.\"}),\" AI-powered tools can generate keyword-rich show notes and summaries to improve your podcast's SEO. Use these summaries as a starting point, then customize them to reflect your unique voice and style.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Utilize transcription services.\"}),\" Transcribing your podcast episodes can help improve your SEO by providing text-based content for search engines to index. AI-powered transcription services, such as Podium's podcast transcription, can accurately transcribe your episodes, saving you a ton of time and effort.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Utilize social media to promote your podcast.\"}),\" While social media doesn't directly impact your podcast's SEO, it can help drive traffic to your podcast and increase its visibility. Use social media management tools such as \",/*#__PURE__*/e(n,{href:\"https://www.loomly.com/\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Loomly\"})}),\" or \",/*#__PURE__*/e(n,{href:\"https://buffer.com/\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Buffer\"})}),\" to schedule and automate your social media posts, ensuring that your content reaches a wider audience without having to sit on Instagram all day.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Track your analytics.\"}),\" Use analytics tools to track your podcast's performance and identify areas for improvement. AI-powered analytics tools can provide valuable insights into your audience demographics, engagement rates, and more, helping you make data-driven decisions to optimize your podcast's SEO. More podcast hosts are folding this advancing technology into their analytics tools, which means a deeper understanding on your part of your true audience.\"]})}),/*#__PURE__*/t(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"All-around, use the right tools.\"}),\" AI tools are \",/*#__PURE__*/e(\"em\",{children:/*#__PURE__*/e(\"strong\",{children:\"not\"})}),\" created equal\u2014there is a reason that AI experts use the term \u201Cprompt engineering\u201D to describe the somewhat arcane methodology around how to properly extract high-quality responses from advanced neural networks. Though most of the AI tools out there build on similar foundations, how exactly they implement these technologies can vary wildly. Test as many tools as you can (use those free trials) and keep a critical eye on the output of these tools. You\u2019ll find that certain tools will generate text content better than others, or find better clips than others.\"]}),/*#__PURE__*/e(\"ol\",{children:/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"For example, a Podium customer has tried several AI tools which claim to accomplish similar tasks\u2014transcription, generating marketing copy, etc. She reached out to us to let us know that our output was \u201Csignificantly better\u201D than the others, and didn\u2019t really know why.\"})})})]})]}),/*#__PURE__*/e(\"h2\",{children:\"Conclusion\"}),/*#__PURE__*/e(\"p\",{children:\"In today's digital age, optimizing your podcast's SEO is crucial to ensure that your content reaches a wider audience and attracts more listeners. By utilizing AI-powered tools to analyze your content, identify relevant keywords, and generate keyword-rich show notes and summaries, you can improve your podcast's search engine rankings and increase its discoverability.\"}),/*#__PURE__*/e(\"p\",{children:\"However, it's important to remember that quality content is still the most important factor in building a successful podcast. While AI can help enhance your content and improve searchability, it's up to you to create engaging and informative content that resonates with your audience.\"}),/*#__PURE__*/e(\"p\",{children:\"By following these best practices for using AI to optimize your podcast's SEO, you can increase your podcast's visibility, attract more listeners, and ultimately build a loyal and engaged audience.\"})]});export const richText6=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"The Importance of Authenticity in Content Creation\"}),/*#__PURE__*/e(\"p\",{children:\"Be yourself! In a world now quickly being saturated with AI-generated-this, AI-generated-that, people want more and more to feel like they are connecting with a real person, not a manufactured persona. Being authentic allows you to build trust with your audience and create a deeper connection with them.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/t(\"em\",{children:[\"You should be in the business of creating content not because you want the glory or prestige of being one, but rather because you actually enjoy the \",/*#__PURE__*/e(\"strong\",{children:\"process\"}),\" of expressing your unique message and voice.\"]})}),/*#__PURE__*/t(\"p\",{children:[\"For a primer on \u201Chow to do what you love\u201D, see this seminal essay by Paul Graham: \",/*#__PURE__*/e(n,{href:\"http://www.paulgraham.com/love.html\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"http://www.paulgraham.com/love.html\"})})]}),/*#__PURE__*/t(\"p\",{children:[\"Authenticity is the ultimate differentiator between you and other creators. It\u2019s not necessarily a competition, but you \",/*#__PURE__*/e(\"strong\",{children:\"do\"}),\" want to stand out. In a world where everyone is trying to present the perfect image, being yourself can be a breath of fresh air and help you stand out from the crowd.\"]}),/*#__PURE__*/e(\"h2\",{children:\"How to Share Your True Self with Your Audience\"}),/*#__PURE__*/t(\"ol\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Share personal stories and experiences.\"}),\" Personal stories are a powerful way to connect with your audience and show them your true self. Share your experiences and struggles, and don't be afraid to be vulnerable. This can help your audience relate to you and see you as a real person.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Be honest and transparent.\"}),\" Don't be afraid to share your opinions and thoughts, even if they are unpopular. Your audience will appreciate your honesty and transparency, and it can help build trust. I mean\u2014look at Joe Rogan! He\u2019s surely not always right, but he has a better track record for apologizing for factual errors than any mainstream media outlet in the 21st century. Being a content creator means being vulnerable at times\u2014but remember, this is why you\u2019re in this business.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Embrace your quirks and unique traits.\"}),\" We all have little (or large) idiosyncrasies that make us who we are. Embrace these aspects of yourself and showcase them in your content. This can help you stand out and create a more memorable and authentic brand.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Don't be afraid to make mistakes.\"}),\" Nobody is perfect, and your audience doesn't expect you to be. Don't be afraid to make mistakes or show your imperfections. This can actually make you more relatable and endearing to your audience.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Engage with your audience.\"}),\" Engage with your audience on social media, respond to comments and messages, and create opportunities for your audience to interact with you. This can help you build a stronger connection with your audience and show them that you value their input and feedback.\"]})})]}),/*#__PURE__*/e(\"h2\",{children:\"The Bottom Line\"}),/*#__PURE__*/e(\"p\",{children:\"Being authentic in content creation is essential for building a strong connection with your audience and standing out from the crowd. Don't be afraid to show your true self and embrace your quirks and unique traits. Remember, your audience wants to connect with a real person, not a manufactured persona. So be yourself, make mistakes, and engage with your audience. By doing so, you can build a loyal community of supporters who value your authenticity and relatability.\"})]});export const richText7=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"The Future of Podcasting: The AI Revolution\"}),/*#__PURE__*/e(\"p\",{children:\"In this article, we'll embark on a journey to the future of podcasting as we explore the impact of AI technology on the podcasting landscape in 2023 and beyond. From AI-generated show notes to the seamless integration of AI editing services, we'll uncover how the podcasting world is set to evolve and what it means for you. Buckle up for an exciting ride through the cutting-edge world of Podcast AI!\"}),/*#__PURE__*/e(\"h3\",{children:\"Podcast AI: A Game Changer in Podcast Production\"}),/*#__PURE__*/e(\"p\",{children:\"Podcast AI is transforming the podcasting landscape by automating various aspects of podcast production, including editing, generating show notes, creating transcripts, and more. This groundbreaking technology is set to redefine podcast production, enabling creators to focus on delivering exceptional content while saving time and resources.\"}),/*#__PURE__*/e(\"h2\",{children:\"The AI-Powered Future: Key Developments in Podcast Production\"}),/*#__PURE__*/e(\"h3\",{children:\"Best AI Copywriting Software: The Next Generation of Podcast Tools\"}),/*#__PURE__*/e(\"p\",{children:\"AI copywriting software is poised to become an indispensable tool for podcasters, enabling them to craft engaging scripts, intros, and outros with ease. By 2023, we can expect advancements in natural language processing (NLP) algorithms that will allow AI copywriting tools to better understand and mimic human speech patterns and cater to the specific tone and intent of the specific creator, making them even more powerful and versatile.\"}),/*#__PURE__*/t(\"p\",{children:[\"In addition, the \",/*#__PURE__*/e(\"strong\",{children:\"makers\"}),\" of tools (like Podium) are learning more about how these AI technologies work and react to certain prompts, which means that over time, the quality of AI tools will get better, and this is entirely separate from the underlying core technology improving.\"]}),/*#__PURE__*/e(\"h3\",{children:\"Podcast Show Notes Reinvented: AI-Powered Summaries and Highlights\"}),/*#__PURE__*/e(\"p\",{children:\"The future of podcast show notes lies in AI-generated summaries and highlights, providing listeners with concise, engaging, and easily digestible content, which can help your podcast be found on the various platforms or even the major search engines. By leveraging AI-powered summaries and highlights, podcasters can ensure consistency and quality across their show notes while saving valuable time and resources.\"}),/*#__PURE__*/e(\"h3\",{children:\"AI-Enhanced Podcast Editing Services: The Perfect Blend of Human Expertise and AI Efficiency\"}),/*#__PURE__*/e(\"p\",{children:\"As AI technology continues to advance, we can expect a rise in hybrid podcast editing services that combine the power of AI with the skill of human editors. This collaboration will result in seamless, high-quality podcast content that maintains the creative nuance and personal touch that only human editors can provide.\"}),/*#__PURE__*/e(\"p\",{children:\"There are services today that do this, like Momento and Vidyo: AI will find the \u201Cbest moments\u201D and even goes as far as generating finished clips for social media, however it\u2019s usually best that the tool allows you to trim the start/end points such that you have that \u201Cperfect\u201D clip for social media.\"}),/*#__PURE__*/e(\"h2\",{children:\"The Impact of AI on Podcast Distribution and Monetization\"}),/*#__PURE__*/e(\"h3\",{children:\"Podcast to Video Converter: Broadening Your Podcast's Reach\"}),/*#__PURE__*/e(\"p\",{children:\"As the lines between audio and video content continue to blur, podcasters will increasingly turn to AI-powered podcast to video converters to expand their audience reach. These tools will enable creators to repurpose their podcast episodes into engaging video content, attracting new listeners and boosting their show's visibility on platforms like YouTube. Organizations like StabilityAI, which are creating text-to-video AI generation tools, will one day allow you to record a podcast but generate accompanying video content for platforms like Youtube which demand it.\"}),/*#__PURE__*/e(\"h3\",{children:\"Advanced Podcast to Text Converter: Boosting Your Podcast's SEO\"}),/*#__PURE__*/e(\"p\",{children:\"By 2024, we can expect AI-driven podcast to text converters to become even more sophisticated, generating highly accurate transcripts that can significantly boost a podcast's SEO. This will enable podcasters to reach a wider audience and establish a stronger online presence.\"}),/*#__PURE__*/e(\"h2\",{children:\"AI\u2019s Effect on Podcast Monetization\"}),/*#__PURE__*/e(\"p\",{children:\"AI is likely to have a significant impact on podcast monetization in the future, as it will create new opportunities and challenges for podcast creators, advertisers, and platforms. Here are some ways AI might affect podcast monetization:\"}),/*#__PURE__*/t(\"ol\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Personalized advertising: AI can help advertisers target users more effectively by analyzing listener preferences, habits, and demographic information. This will enable the delivery of highly relevant and personalized ads, which can increase engagement and ad revenue for podcast creators.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Improved ad performance measurement: AI can help assess the effectiveness of advertising campaigns by analyzing listener behavior and engagement data. This will allow podcast creators and advertisers to optimize ad placements and make data-driven decisions to increase revenue.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Dynamic ad insertion: AI-powered algorithms can automatically insert ads into podcasts at the most appropriate times, based on factors like listener preferences, the podcast's content, and the ad's relevance. This can lead to higher ad revenues by ensuring that ads are served in a contextually relevant manner.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Content recommendation: AI can analyze listener behavior and preferences to suggest podcasts that users might enjoy. This can help podcast creators reach a wider audience, potentially leading to increased monetization opportunities through sponsorships, donations, or subscriptions.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Automated content creation: AI can assist podcast creators in generating new content, such as automatically transcribing episodes, translating content into different languages, or even generating new episodes based on a creator's style and existing content. This can lead to the production of more content, increasing the potential for monetization.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Enhanced user experience: AI can improve the overall user experience of podcast platforms, offering features like automatic noise reduction, voice enhancement, and more, leading to higher user engagement and increased monetization potential.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Voice-based advertising: With the increasing popularity of voice assistants, AI-powered voice ads could become a new channel for podcast advertising, leading to new revenue streams for creators.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Subscription and membership models: AI can help podcast platforms and creators identify users who are likely to be interested in premium content or membership models, thereby increasing the potential for recurring revenue.\"})})]}),/*#__PURE__*/e(\"p\",{children:\"While AI promises many opportunities for podcast monetization, it also presents challenges such as data privacy concerns, potential job displacement, and the ethical use of AI-generated content. It will be essential for creators, advertisers, and platforms to navigate these challenges responsibly while capitalizing on the opportunities AI presents.\"}),/*#__PURE__*/e(\"h2\",{children:\"Challenges and Opportunities in the AI-Driven Podcasting Landscape\"}),/*#__PURE__*/e(\"h3\",{children:\"Ethical Considerations in AI-Powered Podcast Production\"}),/*#__PURE__*/e(\"p\",{children:\"As AI technology continues to advance, ethical considerations will play an increasingly significant role in podcast production. Creators will need to strike a balance between leveraging AI's efficiency and ensuring that their content remains authentic and true to their podcast's unique voice and tone, at the risk of beguiling or risking authenticity to their fanbase.\"}),/*#__PURE__*/e(\"h3\",{children:\"The Role of Podcast Agencies in an AI-Dominated World\"}),/*#__PURE__*/e(\"p\",{children:\"As AI continues to reshape the podcasting landscape, podcast agencies will need to adapt and evolve to stay relevant. By integrating AI technology into their service offerings and collaborating closely with AI tools, agencies can continue to provide valuable support and expertise to podcasters in the years to come.\"}),/*#__PURE__*/e(\"h3\",{children:\"Podcasters Embracing AI: Adapting to the New Normal\"}),/*#__PURE__*/e(\"p\",{children:\"For podcasters, embracing AI technology will be essential for staying ahead of the curve and delivering high-quality content to their audience. By adopting AI-driven tools and techniques, creators can streamline their production process, enhance their podcast's reach, and maintain a competitive edge in the rapidly evolving podcasting landscape.\"}),/*#__PURE__*/e(\"h2\",{children:\"The Road Ahead: Preparing for the AI-Powered Podcasting Future\"}),/*#__PURE__*/e(\"h3\",{children:\"Upskilling and Collaboration: The Key to Podcasting Success\"}),/*#__PURE__*/e(\"p\",{children:\"To thrive in the AI-driven podcasting world of 2023 and beyond, podcasters will need to develop new skills and embrace collaboration with AI tools. By learning to work alongside AI technology, creators can harness the full potential of these powerful tools while maintaining the human touch that sets their podcast apart.\"}),/*#__PURE__*/e(\"h3\",{children:\"Staying Informed: Keeping Up with AI Innovations in Podcasting\"}),/*#__PURE__*/e(\"p\",{children:\"The future of podcasting is undoubtedly AI-centric. To stay ahead of the game, podcasters should keep an eye on the latest AI innovations and trends, ensuring they're equipped to adapt and evolve with the ever-changing podcasting landscape.\"}),/*#__PURE__*/e(\"h3\",{children:\"Investing in AI-Powered Podcast Tools: A Smart Move for the Future\"}),/*#__PURE__*/e(\"p\",{children:\"As AI continues to revolutionize the world of podcasting, investing in AI-powered tools and services will become increasingly crucial for podcasters looking to stay relevant and competitive. By incorporating AI technology into their podcast production process, creators can save time, resources, and ultimately, deliver exceptional content to their audience.\"}),/*#__PURE__*/e(\"h2\",{children:\"Conclusion: Embracing the AI-Powered Podcasting Revolution\"}),/*#__PURE__*/e(\"p\",{children:\"As we look ahead to 2023 and beyond, it's clear that AI will play a pivotal role in shaping the future of podcasting. From advanced AI copywriting software and AI-generated show notes to hybrid editing services that blend AI efficiency with human expertise, the podcasting landscape is set to undergo a radical transformation.\"}),/*#__PURE__*/e(\"p\",{children:\"For podcasters and creators, embracing AI technology will be essential for staying ahead of the curve and delivering top-notch content to their audience. By harnessing the power of AI tools, staying informed about AI innovations, and collaborating with AI-driven services, podcasters can unlock new opportunities and elevate their podcast to new heights.\"}),/*#__PURE__*/e(\"p\",{children:\"So, gear up for the exciting AI-powered podcasting revolution, and join us as we venture into the thrilling world of podcasting in 2023 and beyond!\"})]});export const richText8=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"Upgrading your podcasting game with the help of AI\"}),/*#__PURE__*/e(\"p\",{children:\"Hey there, podcasters and creators! Are you ready to take your podcast engagement to the next level? If so, you're in the right place! In this article, we'll explore the incredible world of AI tools for podcasting and how you can harness their power to boost your podcast's engagement. From AI-generated clips and chapters, to advanced copywriting software make for audio creators, we've got you covered with all the tips and tricks to help your podcast thrive in this exploding new ecosystem of AI tools. Let's dive in!\"}),/*#__PURE__*/e(\"h2\",{children:\"The AI Advantage: Boosting Podcast Engagement with Cutting-Edge Tools\"}),/*#__PURE__*/e(\"h3\",{children:\"Best AI Copywriting Software: Crafting Irresistible Podcast Intros and Outros\"}),/*#__PURE__*/e(\"p\",{children:\"Captivating intros and outros are key to engaging your listeners and keeping them coming back for more. The best AI copywriting software can help you craft irresistible podcast intros and outros, ensuring your podcast stands out from the competition. By utilizing advanced natural language processing (NLP) algorithms, these tools can generate captivating intro/outro scripts that will grab your audience's attention and set the tone for your podcast.\"}),/*#__PURE__*/e(\"h3\",{children:\"AI-Generated Podcast Show Notes: Enhancing the Listener Experience\"}),/*#__PURE__*/e(\"p\",{children:\"Listeners appreciate accessible and informative podcast show notes, as they offer a quick overview of the episode's content and key takeaways. AI-generated podcast show notes can provide concise, engaging summaries and highlights, ensuring your audience gets the most value from your content. These AI-driven tools can help you maintain consistency and quality across your show notes, creating a polished and professional appearance that appeals to your audience.\"}),/*#__PURE__*/e(\"h3\",{children:\"Podcast Clips: Offering Bite-Sized Content for Busy Listeners\"}),/*#__PURE__*/t(\"p\",{children:[\"In today's fast-paced world, listeners often enjoy bite-sized content that's easy to consume on the go. It\u2019s not that they \",/*#__PURE__*/e(\"strong\",{children:\"prefer\"}),\" the short-form content over the long-form\u2014podcasting is as popular as its ever been. But the bite-sized content can \",/*#__PURE__*/e(\"strong\",{children:\"compliment\"}),\" the long-form content by helping listeners make better decisions about what to dive into next. A podcast clip generator can create short, engaging highlights that cater to busy listeners, offering a quick way to stay up-to-date with your podcast's content. This AI-powered tool can help you reach a wider audience and cater to their unique preferences, ultimately boosting your podcast's engagement.\"]}),/*#__PURE__*/e(\"p\",{children:\"When you upload audio to Podium, we find \u201Cquotable moments\u201D for you\u2014short clips that are well-suited for social media.\"}),/*#__PURE__*/e(\"h2\",{children:\"AI-Powered Strategies for Increasing Podcast Engagement\"}),/*#__PURE__*/e(\"h3\",{children:\"Re-purpose Livestream Content Into Other Formats\"}),/*#__PURE__*/e(\"p\",{children:\"If you primarily generate video content as a creator or podcaster in the form of livestreams, a productive way to make sure you\u2019re getting more eyes and ears on your content is to publish the audio-only version to podcasting platforms, as well as the final recording onto podcast hosting platforms, so listeners can consume your livestream as a recorded podcast, whether or not you\u2019re using video. Additionally it\u2019s also wise to produce a transcript using tools like Podium, which essentially create another \u201Csurface\u201D for fans to digest your original content, and most importantly increase it\u2019s accessibility.\"}),/*#__PURE__*/e(\"h3\",{children:\"Generate Transcripts From Podcast: Boosting Your Podcast's SEO and Accessibility\"}),/*#__PURE__*/e(\"p\",{children:\"Optimizing your podcast's search engine visibility is essential for reaching a wider audience and driving engagement. AI-powered transcription can generate accurate transcripts (up to 99%) that can significantly boost your podcast's SEO, making it easier for potential listeners to discover your content. Additionally, providing transcripts enhances your podcast's accessibility, ensuring that your content reaches and resonates with a diverse and possibly hearing-impaired audience.\"}),/*#__PURE__*/e(\"h2\",{children:\"Practical Tips for Harnessing AI to Boost Podcast Engagement\"}),/*#__PURE__*/e(\"h3\",{children:\"Research and Invest in the Right AI Tools\"}),/*#__PURE__*/e(\"p\",{children:\"Not all AI tools are created equal. To maximize the benefits of AI technology for your podcast, it's essential to research and invest in the tools that best align with your goals and content strategy. Look for AI tools that are tailored to podcasting, offer advanced features, and receive positive reviews from other podcasters.\"}),/*#__PURE__*/e(\"p\",{children:\"Many podcasting AI tools generate the basics for you: transcript, summaries, keywords, tweets, etc. What\u2019s important as someone who wants to choose the best tool is to think beyond the basic features:\"}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Is the interface user-friendly?\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Are they also able to produce clips and chapters, which are more difficult to find in these sorts of AI tools?\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Is the pricing model fair? (Preferably by the minute vs by the upload, if you don\u2019t regularly produce extremely long podcast episodes)\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"Test and Iterate: Finding the Perfect AI-Human Balance\"}),/*#__PURE__*/e(\"p\",{children:\"Finding the perfect balance between AI-generated content and human input may take some trial and error. Be prepared to test different AI tools and strategies, iterating and refining your approach as needed. By continuously learning from your experiences and adapting your strategy, you'll be better equipped to boost your podcast's engagement.\"}),/*#__PURE__*/e(\"h3\",{children:\"Stay Informed: Keeping Up with AI Innovations in Podcasting\"}),/*#__PURE__*/e(\"p\",{children:\"AI technology is rapidly evolving, and staying informed about the latest innovations and trends is essential for staying ahead of the curve. By keeping an eye on emerging AI tools and techniques, you can be among the first to adopt and leverage new technology to enhance your podcast's engagement and appeal.\"}),/*#__PURE__*/t(\"p\",{children:[\"Software directories like \",/*#__PURE__*/e(n,{href:\"https://www.futurepedia.io/\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"https://www.futurepedia.io/\"})}),\" track the latest in AI tools, and you can search by podcasting or audio tools specifically.\"]}),/*#__PURE__*/e(\"h2\",{children:\"Wrapping Up: Unleashing the Power of AI for Your Podcast\"}),/*#__PURE__*/e(\"p\",{children:\"As we've seen, AI technology offers a wealth of opportunities for boosting your podcast's engagement and elevating your content to new heights. By harnessing the power of AI tools like copywriting software, podcast summarizers, and AI-assisted editing services, you can create captivating content that resonates with your audience and keeps them coming back for more.\"}),/*#__PURE__*/e(\"p\",{children:\"So, what are you waiting for? Dive into the world of AI-driven podcasting and unlock your podcast's full potential. With the right tools, strategies, and collaboration, you can revolutionize your podcast's engagement and achieve unprecedented success. Happy podcasting!a\"})]});export const richText9=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/t(\"h2\",{children:[\"Is this like that movie \",/*#__PURE__*/e(\"em\",{children:\"Ex Machina\"}),\"?\"]}),/*#__PURE__*/t(\"p\",{children:[\"While not as life-or-death as some of the decisions made by the characters in Alex Garland\u2019s 2014 film, content creators in 2023 face an interesting decision: who, or \",/*#__PURE__*/e(\"em\",{children:\"what\"}),\" exactly, should write their podcast show notes? With advances in AI technology, like ChatGPT and copywriting software tools like Jasper, \",/*#__PURE__*/e(n,{href:\"http://copy.ai/\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Copy.ai\"})}),\", or Podium (which is for creators who generate audio and video content), creators can now choose between human writers and AI ones. This article dives into the pros and cons of each option, and why it doesn\u2019t have to be \u201Ceither/or\u201D.\"]}),/*#__PURE__*/e(\"h2\",{children:\"Are show notes really that important?\"}),/*#__PURE__*/t(\"p\",{children:[\"We actually already wrote about this\u2014read up \",/*#__PURE__*/e(n,{href:\"https://hello.podium.page/blog/writing-great-show-notes\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"here\"})}),\".\"]}),/*#__PURE__*/e(\"h2\",{children:\"The human touch\"}),/*#__PURE__*/t(\"p\",{children:[\"Nothing is more personal than the human touch\u2014especially yours. \",/*#__PURE__*/e(\"em\",{children:/*#__PURE__*/e(\"strong\",{children:\"You\"})}),\" created the podcast or show, so who best to write up the show notes? You can weave a compelling narrative, talk up your sponsors and guests like no one else can, and connect with your audience on a personal level\u2014something that AI-generated summaries may struggle with. Writing show notes yourself allows for a more authentic representation of your brand and a deeper connection with your audience. Also, the human touch is still the best at fact-checking and understanding the context of each episode. We can catch errors or inconsistencies in the content, helping maintain accuracy and credibility.\"]}),/*#__PURE__*/e(\"p\",{children:\"Keep in mind that maintaining \u201Cthe human touch\u201D doesn\u2019t necessarily mean you yourself has to write all your show notes\u2014if you\u2019re lucky enough to have a producer, production team, or co-host, you can delegate to them, and they will understand your content either as well as you do, or sometimes better!\"}),/*#__PURE__*/e(\"h2\",{children:\"The robots are taking over\"}),/*#__PURE__*/t(\"p\",{children:[\"On the other hand, AI-powered copywriting and content generation apps like Podium, which are made for podcasts (and eventually video content), can generate great podcast show notes in minutes flat. Nothing will replace the human touch, but these AI tools are \",/*#__PURE__*/e(\"em\",{children:/*#__PURE__*/e(\"strong\",{children:\"really good:\"})}),\" PodiumGPT uses the latest in AI text generation, GPT-4, which means that when you\u2019re using tools at the bleeding-edge of AI, the summaries, transcripts, chapters, key takeaways, and anything you can dream of really, come straight off the press with an uncanny realism and authenticity. And with incredible speed and efficiency, to boot. For busy podcasters who are one a tight time-budget and financial budget, this can be a game-changer for productivity, effectively transferring more time \",/*#__PURE__*/e(\"strong\",{children:\"back\"}),\" to creating the core content\u2014the stuff you actually like doing.\"]}),/*#__PURE__*/e(\"p\",{children:\"Using the right prompts, it can really feel like the robots are taking over, because the raw AI output these days is just crazy!\"}),/*#__PURE__*/e(\"h2\",{children:\"The hybrid approach (singularity \uD83D\uDE09)\"}),/*#__PURE__*/e(\"p\",{children:\"As with most things, it\u2019s more complex and nuanced than just a one-track approach! A hybrid approach strikes the right balance between productivity and quality/authenticity when writing show notes, or any other marketing copy for your podcast or show.\"}),/*#__PURE__*/e(\"p\",{children:\"Normally how it goes, is that you prompt the AI tool to generate show notes for you, or maybe one of the smaller components of show notes if you want to get surgical: E.g. \u201CWrite a short blurb about my sponsor, Redwood Coffee, and their latest line of coffee, called Fireproof. Use the language I used in my show.\u201D\"}),/*#__PURE__*/t(\"p\",{children:[\"It will likely generate something that\u2019s \",/*#__PURE__*/e(\"em\",{children:/*#__PURE__*/e(\"strong\",{children:\"pretty good\"})}),\", but most of the time, not perfect. That\u2019s where you come in! Now you\u2019ve got a fantastic starting point that you can refine into something that truly makes sense for your audience.\"]}),/*#__PURE__*/e(\"p\",{children:\"Using AI-generated show notes as a foundation enables human writers to focus on customizing the tone according to your podcast\u2019s brand, fact-checking, and adding any missing details or links. This collaborative process results in a polished, accurate, and engaging final product that can appeal to your audience\u2014and guess what, you probably did it in way less time.\"}),/*#__PURE__*/e(\"h2\",{children:\"So, which is best for me?\"}),/*#__PURE__*/e(\"p\",{children:\"You guess it, but the decision between human and AI-generated podcast show notes ultimately comes down to you the podcaster/creator. You\u2019ll have to decide on factors like budget, time constraints, and the desired level of personalization. If you really value a highly personalized tone, or your podcast and audience\u2019s culture is oddly specific, you might want to just write your show notes yourself, every time\u2014and that\u2019s okay! But if your audience just needs to get from point A to point B (i.e. just needs the quick lowdown of what you\u2019re talking about and jump straight into the podcast), folding AI into the writing flow can be a massive boost to productivity.\"}),/*#__PURE__*/e(\"p\",{children:\"As technologies like Podium continue to evolve, it's likely that the line between human and AI-generated content will blur. Regardless, podcasters and creators should stay abreast about new developments in the industry and be open to adopting innovative solutions that best suit their unique requirements, because just because it might/might not not work for you now, it definitely doesn\u2019t mean it won\u2019t work for you in a few years\u2019 time.\"}),/*#__PURE__*/e(\"p\",{children:\"In the end, the goal remains the same: to provide high-quality, engaging show notes that help ease your listener\u2019s decision making when choosing your podcast, boost SEO so you can be discovered organically in searches, and grow your show\u2019s audience.\"})]});export const richText10=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"Intro\"}),/*#__PURE__*/t(\"p\",{children:[\"If you\u2019re a podcaster or similar content creator, it\u2019s possible you\u2019re in the business of long-form content. Podcasts can definitely span several hours, which is partially why we love them\u2014they\u2019re so rich! But this can inversely create a marketing problem. Whether or not you think you\u2019re marketing, you\u2019re always marketing, merely by putting yourself out there\u2014so it will always be a question of \",/*#__PURE__*/e(\"em\",{children:/*#__PURE__*/e(\"strong\",{children:\"how\"})}),\" you\u2019re putting yourself out there, not \",/*#__PURE__*/e(\"em\",{children:/*#__PURE__*/e(\"strong\",{children:\"if.\"})})]}),/*#__PURE__*/e(\"p\",{children:\"Clips are a fantastic format for getting the word out about your show, since they\u2019re often short and catchy, and provide a perfect \u201Cnet\u201D for catching new listeners or fans.\"}),/*#__PURE__*/e(\"p\",{children:\"However, creating clips can be difficult! Traditionally you\u2019d hire a video editor or similar professional, which is both time-consuming and hard on the wallet. However, with AI tools like Podium, which exist to serve podcasters and content creators (specifically content that includes audio), creating clips can take just minutes.\"}),/*#__PURE__*/e(\"h2\",{children:\"A quick note about the power of podcast AI tools\"}),/*#__PURE__*/e(\"p\",{children:\"Podcast AI tools have revolutionized the podcasting industry, making it easier for creators to produce content, edit their podcasts, and even market their work. By utilizing copywriting software AI, podcasters can generate show notes, summaries, highlights, transcripts, and more with minimal effort. Podium, for example, offers a podcast show notes generator that can save podcasters valuable time and energy, allowing them to focus on producing content.\"}),/*#__PURE__*/e(\"p\",{children:\"AI-generated clips, in particular, have become increasingly popular among podcasters and similar content creators. By using podcast editing services that leverage AI, creators can produce engaging content snippets that draw in new listeners and keep existing ones hooked.\"}),/*#__PURE__*/e(\"h2\",{children:\"The benefits of creating clips for your podcast or show\"}),/*#__PURE__*/e(\"h3\",{children:\"Skip the huge time investment creating clips yourself\"}),/*#__PURE__*/t(\"p\",{children:[\"Creating clips is a massively time-consuming part of the post-production process. We\u2019ve talked to podcasters who hire whole production teams to listen back to every single podcast episode \",/*#__PURE__*/e(\"em\",{children:/*#__PURE__*/e(\"strong\",{children:\"three times\"})}),\". For a single, three-hour podcast\u2014this can mean \",/*#__PURE__*/e(\"em\",{children:/*#__PURE__*/e(\"strong\",{children:\"nine hours of production time for every episode\"})}),\". That\u2019s quite a bit! Granted, this time is also spent cleaning up the audio (mastering), fixing transcription errors, creating chapter markers, in addition to creating clips. But if you\u2019re not doing this work yourself (aka you\u2019re hiring it out), then it\u2019s possible your vision can get lost. If you don\u2019t have your own in-house production team, who knows your content inside and out, it\u2019s possible they can make strange or irrelevant decisions when it comes to editing the right clips. This isn\u2019t to say that using AI to generate clips is 100% perfect either; nothing is. But using AI tools tightens the feedback loop and allows you to make changes quicker, and with far less time investment.\"]}),/*#__PURE__*/e(\"h3\",{children:\"Clips can make your show go viral\"}),/*#__PURE__*/t(\"p\",{children:[\"The whole point of creating a clip is offering your current listeners (and future listeners) a nice, juicy \u201Cslice\u201D of your content. It\u2019s not a trailer, it\u2019s an engaging \",/*#__PURE__*/e(\"strong\",{children:\"excerpt.\"}),\" It\u2019s not unlike a quote from a great book\u2014however, since you\u2019re dealing with recorded audio, the way it\u2019s transmitted is a bit different.\"]}),/*#__PURE__*/t(\"p\",{children:[\"A successful clip can be a powerful viral tool for introducing people to your podcast. Honestly, if the clip is really done right\u2014it can be a great piece of content that stands alone! Like this one about curing hiccups from the famous \",/*#__PURE__*/e(\"em\",{children:/*#__PURE__*/e(\"strong\",{children:\"Huberman Lab Podcast:\"})})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(r,{...t,play:\"Off\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtube.com/watch?v=IzATL64DrMw\"})})}),/*#__PURE__*/e(\"h3\",{children:\"Clips introduce your show to new channels\"}),/*#__PURE__*/e(\"p\",{children:\"Because of a clip\u2019s most common format being a short-form video, often with captions, it can be seen anywhere, and travel a lot further than the podcast player that your fans might use to consume the majority of your show.\"}),/*#__PURE__*/e(\"p\",{children:\"Clips can appear on LinkedIn, Twitter, Reddit, Facebook, Youtube\u2014the list goes on. But you\u2019ll notice that most of these aren\u2019t the primary tool your listeners are using to consume your show. That\u2019s the beauty and utility in creating clips! You\u2019ve essentially \u201Cexported\u201D your content to channels where it wasn\u2019t initially meant for, however that doesn\u2019t mean it doesn\u2019t belong\u2014you\u2019ll actually find that clips of your show are quite welcome in these places.\"}),/*#__PURE__*/e(\"h2\",{children:\"Using AI to create clips\"}),/*#__PURE__*/e(\"p\",{children:\"As stated above, creating clips can be a massively time-consuming process, and costly at that. It\u2019s often reserved for creators with large budgets, or who otherwise have \u201Cmade it\u201D and are living full-time from their content. That\u2019s not the most of us!\"}),/*#__PURE__*/t(\"p\",{children:[\"AI has been advancing at a breakneck pace over the past several years, and yes\u2014it\u2019s both exciting and scary. The upside to this though, as with any advancing technology, is that it\u2019s become a whole lot more \",/*#__PURE__*/e(\"strong\",{children:\"accessible\"}),\" than even just two years ago. When things become more accessible, it means that more regular people have access to powerful tools for creation\u2014and this can greatly benefit content creators like podcasters and Youtubers specifically.\"]}),/*#__PURE__*/e(\"h3\",{children:\"How the heck can AI even find clips?\"}),/*#__PURE__*/e(\"p\",{children:\"The current paradigm dominating the AI field is that of \u201Cdeep learning\u201D, which involves training a machine-learning model on massive datasets, sometimes in the order of billions of samples, and allowing the neural network to find patterns in this data.\"}),/*#__PURE__*/e(\"p\",{children:\"It turns out, when you show a neural network thousands of \u201Cquotable moments\u201D, like the kind you might find in a podcast clip\u2014it can get pretty good at sniffing out those moments in your show that are interesting, funny, or just plain quotable. Clips generated this way can range from short, 30-second clips (and below) to clips that are several minutes long (but really, this is the decision of the toolmaker and not necessarily that of AI clip generation in general).\"}),/*#__PURE__*/t(\"p\",{children:[\"What this means is that tools like Podium will find clips for you based on thousands and thousands of examples its seen before. And though this doesn\u2019t necessarily mean it\u2019s perfect 100% of the time, it\u2019s pretty amazing 95% of the time\u2014and that\u2019s a \",/*#__PURE__*/e(\"em\",{children:/*#__PURE__*/e(\"strong\",{children:\"massive\"})}),\" boost for you as a creator just starting out, who could really benefit from some great, fast clips to start growing your audience now.\"]}),/*#__PURE__*/e(\"h3\",{children:\"Choosing the right tool\"}),/*#__PURE__*/e(\"p\",{children:\"There are plenty of creator tools that utilize AI that are popping up every day. It can be difficult to choose, but if you\u2019re interested in creating clips for your podcast or show, you can specifically Google something like \u201CAI clip creation tools\u201D or \u201CAI tools for podcasters clips\u201D (or something to that effect).\"}),/*#__PURE__*/t(\"p\",{children:[\"You also happen to be staring at one of those tools right now\u2014Podium! Podium has spent years building proprietary AI trained on creator audio (primarily podcasts) to help create clips, chapters, show notes, and more. You can try it for free by heading to \",/*#__PURE__*/e(n,{href:\"https://podium.page/upload\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"https://podium.page/upload\"})}),\".\"]})]});export const richText11=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"PodiumGPT is the first AI copywriting tool for podcasters and content creators using GPT-4.\"}),/*#__PURE__*/t(\"p\",{children:[\"We\u2019re thrilled to announce a major improvement to our PodiumGPT feature: Podium GPT is now powered by \",/*#__PURE__*/e(n,{href:\"https://openai.com/research/gpt-4\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"GPT-4\"})}),\", the latest and most advanced iteration of OpenAI\u2019s GPT technology. If you don\u2019t already know, OpenAI is an American company which has created the viral ChatGPT\u2014the world\u2019s most advanced and accessible AI chatbot, which can assist with a variety of text-related tasks.\"]}),/*#__PURE__*/e(\"p\",{children:\"With this new update, all content generated by PodiumGPT is of substantially higher quality, now that it\u2019s using GPT-4.\"}),/*#__PURE__*/e(\"p\",{children:\"As content creators and podcasters, we know how important it is to produce high-quality show notes, transcripts, chapters, or other marketing content. That's why we\u2019re constantly working to improve our AI technology to provide you with the best possible results.\"}),/*#__PURE__*/e(\"p\",{children:\"With GPT-4, PodiumGPT can now generate more accurate and natural-sounding content that captures the essence of your podcast. Whether you're a seasoned podcaster or just starting out, PodiumGPT powered by GPT-4 will make your content creation process a lot more efficient, far more effective, and with a little luck\u2014a lot more enjoyable.\"}),/*#__PURE__*/e(\"p\",{children:\"We couldn't be more excited about this update and can't wait for you to try it out for yourself.\"}),/*#__PURE__*/t(\"p\",{children:[\"If you\u2019ve got thoughts about GPT-4, PodiumGPT, Podium in general, or want to join other podcasters looking to market themselves better, join our Discord \",/*#__PURE__*/e(n,{href:\"https://discord.gg/YVP55mqfwJ\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"here\"})}),\".\"]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(n,{href:\"https://podium.page/upload\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Try PodiumGPT now\"})})})]});export const richText12=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Are you a podcaster, YouTuber, or digital content creator looking to monetize your content? Podium is now introducing its new Affiliate Partners program.\"}),/*#__PURE__*/e(\"p\",{children:\"Receive a 30% commission (CPA) on every subscription made with your affiliate link. This \u201Cdouble-sided\u201D affiliate program benefits both you and your audience\u2014not only do you receive a commission, but your fans also receive a massive discount when they use your affiliate link.\"}),/*#__PURE__*/e(\"p\",{children:\"What kind of savings can your audience expect? When they sign up for Podium's suite of AI tools, they\u2019ll receive discounts for their first month\u2014a major incentive for them to try out Podium's services which also helps you earn more commissions. What\u2019s more, you\u2019ll receive another 30% commission on every purchase made by that same customer for a whole year.\"}),/*#__PURE__*/e(\"p\",{children:\"By becoming a Podium affiliate, you have the potential to earn a significant amount of passive income. And with Podium's suite of AI tools, you can take your digital content to the next level.\"}),/*#__PURE__*/e(\"p\",{children:\"Not only is the affiliate program a great way to earn money, but it's also an opportunity to promote a product that you genuinely believe in. Podium's suite of AI tools is an all-in-one solution for content creators to enhance their digital content, making it easier for audiences to find and engage with your content, which can lead to increased views, followers, engagement, and now\u2014commission.\"}),/*#__PURE__*/t(\"p\",{children:[\"By promoting this product to your audience, you're helping them take their content to the next level. As you already know, \",/*#__PURE__*/e(n,{href:{webPageId:\"augiA20Il\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"AI generated show notes\"})}),\" are a game-changer. Podium as a product is evolving every day and delivering the cutting edge features you need to stay ahead. As a partner, you are sharing a high value tool and receiving value for every new subscriber.\"]}),/*#__PURE__*/e(\"p\",{children:\"And the best part? Podium's affiliate program is designed for anyone. Whether you're just starting out in the digital space or you're already an established influencer, you can join the program and start earning.\"}),/*#__PURE__*/t(\"p\",{children:[\"So what are you waiting for? \",/*#__PURE__*/e(n,{href:\"https://affiliates.podium.page\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Click here and join Podium's affiliate program\"})}),\" today and start earning money while helping your audience enhance their digital content and improve their workflows. Want to learn more? \",/*#__PURE__*/e(n,{href:{webPageId:\"dO5oN9SVM\"},openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Visit our Affiliate page\"})}),\".\"]})]});export const richText13=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"Intro\"}),/*#__PURE__*/e(\"p\",{children:\"Transcribing your podcast or show can be a time-consuming task, but it\u2019s one that can pay off in many ways. Not only does it make your content more accessible to those with hearing impairments, but it can also improve your SEO and make your content more shareable. In this article, we\u2019ll discuss various tools you can use to transcribe your podcast or show, including those that focus solely on transcription and those that offer transcription as part of a larger suite of services. We\u2019ll evaluate the pros and cons of each tool to help you find the best fit for your needs.\"}),/*#__PURE__*/e(\"h2\",{children:\"Podium\"}),/*#__PURE__*/e(\"p\",{children:\"Podium offers high quality transcription and is cost competitive with many transcription services. Podium offers a full transcript in .txt and .vtt formats. What\u2019s more, Podium is more than a transcription service, but rather an all-in-one creator tool for growing your audience, allowing you to get a massive head-start on creating marketing content for your podcast or show.\"}),/*#__PURE__*/e(\"p\",{children:\"Transcription is important, but it\u2019s only part of the equation\u2014you\u2019ll often need much more than just a transcript, as far as written content goes, to surface your podcast or show to the right people. Here\u2019s where Podium stands out:\"}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Chapter creation, along with chapter titles / summaries\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Automatically generates show notes for your podcast or content\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"PodiumGPT\u2014generate any content on-demand for your podcast/video, including but not limited to: Facebook posts, LinkedIn Posts, and email to your followers, an episode title\u2014the possibilities are only limited by your imagination!\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Clips: Podium finds the best \u201Cquotable moments\u201D that are ripe for sharing on social media so you can grow your audience.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})})]}),/*#__PURE__*/t(\"p\",{children:[\"Give Podium a trial today, where you can sign up and get three free audio hours of processing (which includes a full transcript)! \",/*#__PURE__*/e(n,{href:\"https://podium.page/upload\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"https://podium.page/upload\"})})]}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(n,{href:\"http://otter.ai/\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Otter.ai\"})})}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(n,{href:\"http://otter.ai/\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Otter.ai\"})}),\" is one of the top tools for transcription, with big established podcast hosts like \",/*#__PURE__*/e(n,{href:\"https://buzzsprout.com/\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Buzzsprout\"})}),\" even offering a \",/*#__PURE__*/e(n,{href:\"https://www.buzzsprout.com/help/60-transcripts\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"small discount\"})}),\" for Otter if you decide to host with Buzzsprout. Podcasters on Reddit often cite Otter as good transcription tool because it does a decent job on a budget, with a monthly subscription for podcasters starting at $17/month if paying month-to-month, or $8.33/month if paying annually (roughly $100 upfront for the year). This gives you 1200 monthly transcription minutes (20 hours/month), and 90 minutes per conversation.\"]}),/*#__PURE__*/e(\"p\",{children:\"Otter can be a beneficial tool if you do Zoom meetings, either to host podcasts or for other needs, because Otter can join your Zoom meetings and transcribe in real-time (which it offers on its free tier, but capped to 30m per conversation).\"}),/*#__PURE__*/e(\"p\",{children:\"But, if you're looking for more than just plain transcription, then Otter might not be your best tool. Here are the words of a Podium customer explaining why Podium's pricing is competitive with Otter's, but pound-for-pound, the features send Podium to the top:\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,oUn8bqzonGKQMcbICqrzZ9bFsys.png\",\"data-framer-height\":\"800\",\"data-framer-width\":\"1010\",height:\"400\",src:\"https://framerusercontent.com/images/oUn8bqzonGKQMcbICqrzZ9bFsys.png\",srcSet:\"https://framerusercontent.com/images/oUn8bqzonGKQMcbICqrzZ9bFsys.png?scale-down-to=512 512w,https://framerusercontent.com/images/oUn8bqzonGKQMcbICqrzZ9bFsys.png 1010w\",style:{aspectRatio:\"1010 / 800\"},width:\"505\"}),/*#__PURE__*/e(\"h2\",{children:\"Descript\"}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://www.descript.com/pricing\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Descript\"})}),\" has gained quite a bit of notoriety for being a game-changing service for podcasters and content-creators. Transcription is just one small aspect of this platform\u2014it\u2019s claim-to-fame is actually its interface.\"]}),/*#__PURE__*/t(\"p\",{children:[\"Descript allows you to edit content in a Google Docs-like format, which means that for speech-driven content like podcasts, you no longer need to dive into an editing tool like Adobe Premiere or Final Cut, where you\u2019re staring at audio waveforms. Thus editing podcast-like content becomes much more intuitive and \",/*#__PURE__*/e(\"em\",{children:\"visual\"}),\", allowing you to delete words from the transcript and see the edits to your audio or video in real-time. It can even do something quite magical: \",/*#__PURE__*/e(\"em\",{children:\"overdub or correct the transcript using a synthesized clone of your voice.\"})]}),/*#__PURE__*/e(\"p\",{children:\"If you\u2019re looking primarily for a transcription service, Descript has competitive pricing: $15/month, month-to-month, for up to 10 hours/month. For transcription alone, this is twice as expensive as Otter\u2019s analogous plan, (which is $17/mo for 20 hours/month), but you must take into account that with Descript you get more bang for your buck, if you\u2019re also looking for an editor service.\"}),/*#__PURE__*/e(\"p\",{children:\"They do not provide AI tools like content generation, automated chapter markers, or clip creation, however.\"}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(n,{href:\"http://rev.ai/\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Rev.ai\"})})}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(n,{href:\"http://rev.ai/\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Rev.ai\"})}),\" is known specifically as a solid transcription service, with add-on features like sentiment analysis, language identification, and topic extraction. This makes them great for businesses who are transcribing and analyzing large sets of transcripts, but maybe not for creators who (hopefully) already have a firm grasp of the sentiment and topics of their content.\"]}),/*#__PURE__*/e(\"p\",{children:\"The big benefit with Rev is an opt-in human transcription service, which is great for mission-critical applications (but maybe not for your podcast or youtube channel), though it grows expensive quickly\u2014$750/month for 10 hours/month. Their machine transcription, a much more sensible choice for content creators, is merely $12/month for 10 hours/month (this is based on their rate of $0.02/minute). They also provide five free credit hours to start as a sign-up bonus.\"}),/*#__PURE__*/e(\"h2\",{children:\"Temi\"}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://www.temi.com/\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Temi\"})}),\" is a basic, straightforward transcription service that is priced far higher compared to Rev and Otter. Temi charges $0.25/minute for machine transcription, which translates to about $150 for 10 hours/month. They not only include a basic transcript, but perform speaker identification and promise a turnaround time within minutes (though both of these things are industry-standard at this point).\"]}),/*#__PURE__*/t(\"p\",{children:[\"I\u2019m not quite sure why Temi was priced at such a higher margin than Otter or Rev, although based on comparison of the various landing pages, Temi places a high priority in speed, promising a 5-minute turnaround (compared to Rev, which \",/*#__PURE__*/e(n,{href:\"https://docs.rev.ai/faq/#how-long-until-my-transcript-is-available\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"cites around 15 minutes\"})}),\").\"]}),/*#__PURE__*/e(\"h2\",{children:\"Adobe Premiere\"}),/*#__PURE__*/e(\"p\",{children:\"Believe it or not, the latest version of Adobe Premiere Creative Cloud offers a basic transcription tool as well. The upside is that it is included with your current Adobe subscription, given that you already have a Premiere license, and using a transcription tool in Adobe means that subtitling your content is now something you can do start to finish, right within Premiere. The downsides are:\"}),/*#__PURE__*/t(\"ol\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"You must already be familiar with Adobe Premiere, or some other NLE-style editor (usually professional producers or video hobbyists have no issue with this, but not necessarily podcasters or content creators who just focus on their content)\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Adobe is not transparent about what technology it uses for transcription, which for someone who\u2019s particularly concerned about transcription quality and knows that using OpenAI\u2019s Whisper is the now the industry-standard in terms of quality and efficiency\u2014this could pose an issue. (But you be the judge!)\"})})]}),/*#__PURE__*/t(\"h2\",{children:[\"Spreaker\u2019s \",/*#__PURE__*/e(n,{href:\"http://freepodcasttranscription.com/\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"freepodcasttranscription.com\"})}),\" (based on OpenAI\u2019s Whisper Tiny)\"]}),/*#__PURE__*/t(\"p\",{children:[\"Spreaker, the podcast host owned by iHeartMedia, has published a free transcription tool at \",/*#__PURE__*/e(n,{href:\"https://freepodcasttranscription.com/\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"https://freepodcasttranscription.com/\"})}),\". It claims to run entirely in your browser (meaning your uploaded content doesn\u2019t go anywhere, if privacy is of maximum concern for you), and is based on OpenAI\u2019s Whisper, although it\u2019s only using the \u201Ctiny\u201D model (meaning transcription quality will not be as high as the other services listed). But hey\u2014it\u2019s private and free, right?\"]}),/*#__PURE__*/e(\"h2\",{children:\"Use OpenAI\u2019s Whisper (batteries not included)\"}),/*#__PURE__*/e(\"p\",{children:\"OpenAI\u2019s Whisper is the AI technology that is either fully powering or is partially powering many of the transcription services listed above. OpenAI is the leading AI R&D company (US-based), up there with Google and Meta.\"}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://www.perplexity.ai/?s=c&uuid=1f4125ec-2e3f-4800-a6af-3d7557baa9e7\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Whisper\"})}),\" is a neural network that was specifically created for the purpose of automatic speech recognition (ASR). It is most often used as the engine for a transcription service.\"]}),/*#__PURE__*/t(\"p\",{children:[\"The cool thing about Whisper is that you can access the core technology itself without an intermediary service, if you\u2019re willing to get your hands dirty. This means that transcribing your podcast can be \",/*#__PURE__*/e(\"em\",{children:\"completely free\"}),\"\u2014you\u2019re only paying for the energy it takes to charge your laptop or power your computer to run it.\"]}),/*#__PURE__*/t(\"p\",{children:[\"A podcaster in the /r/podcasting subreddit explains how they did used Whisper themselves: \",/*#__PURE__*/e(n,{href:\"https://www.reddit.com/r/podcasting/comments/1003wza/transcriptions_for_free_and_with_better_quality/\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"https://www.reddit.com/r/podcasting/comments/1003wza/transcriptions_for_free_and_with_better_quality/\"})}),\", and someone else also created a graphical user interface for essentially the same process described above, which supposedly makes the process a good bit easier: \",/*#__PURE__*/e(n,{href:\"https://github.com/chidiwilliams/buzz\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"https://github.com/chidiwilliams/buzz\"})})]}),/*#__PURE__*/e(\"h2\",{children:\"Microsoft Word\"}),/*#__PURE__*/t(\"p\",{children:[\"If you\u2019re a Microsoft user, or are familiar with their Office products, you\u2019ll be happy to know that Microsoft Word actually has a \u201Ctranscribe audio\u201D feature: \",/*#__PURE__*/e(n,{href:\"https://support.microsoft.com/en-us/office/transcribe-your-recordings-7fc2efec-245e-45f0-b053-2a97531ecf57\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"https://support.microsoft.com/en-us/office/transcribe-your-recordings-7fc2efec-245e-45f0-b053-2a97531ecf57\"})})]}),/*#__PURE__*/e(\"p\",{children:\"It includes speaker separation, and the obvious benefit is that since it\u2019s built right into Word, you can make edits and do things you\u2019d normally do in a normal document editing workflow within Word. You can upload an audio file or record directly in Word itself.\"}),/*#__PURE__*/e(\"h2\",{children:\"Final words\"}),/*#__PURE__*/e(\"p\",{children:\"Transcribing your podcast or show can be a valuable investment in making your content more accessible and shareable. While there are many transcription services available, each with its own pros and cons, we highly recommend Podium. Not only does Podium offer high-quality transcription at a competitive price, but it also provides an all-in-one creator tool for growing your audience. With features like chapter creation, show notes generation, and content creation tools, Podium is a comprehensive solution for podcasters and content creators.\"}),/*#__PURE__*/t(\"p\",{children:[\"Don't forget to take advantage of the free trial offer (3 free credit hours) and sign up today at \",/*#__PURE__*/e(n,{href:\"https://podium.page/upload\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"https://podium.page/upload\"})}),\".\"]})]});export const richText14=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"What is PodiumGPT?\"}),/*#__PURE__*/t(\"p\",{children:[\"Chances are, by now you\u2019ve heard of ChatGPT. If you haven\u2019t heard of it, you can learn about it \",/*#__PURE__*/e(n,{href:\"https://en.wikipedia.org/wiki/ChatGPT\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"here\"})}),\", and use it \",/*#__PURE__*/e(n,{href:\"https://chat.openai.com/\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"here\"})}),\". All you need to know is that it\u2019s the most viral AI product to hit the internet since AI\u2019s recent explosion in the past decade, becoming somewhat of a household name, enabling creators of all kinds (programmers, marketers, writers, etc.) to tap into one of the most powerful AI tools publicly available, many citing it as a \u201Cboon to creativity\u201D since it can quickly generate ideas and create a fertile \u201Cfirst-pass\u201D so you can jump straight into refining the output into your final product instead of staring at a blank page.\"]}),/*#__PURE__*/t(\"p\",{children:[\"PodiumGPT is basically ChatGPT, but with an important twist: \",/*#__PURE__*/e(\"strong\",{children:\"PodiumGPT is fine-tuned on \"}),/*#__PURE__*/e(\"em\",{children:/*#__PURE__*/e(\"strong\",{children:\"your\"})}),/*#__PURE__*/e(\"strong\",{children:\" content. \"}),\"So you\u2019re essentially tapping into the same revolutionary power of ChatGPT, however its output is heavily influenced by the audio content you\u2019ve uploaded to Podium, which means that anything generated by PodiumGPT is created with your podcast or audio in mind. This means it\u2019s perfect for creating marketing assets, like email announcements, tweets, website copy\u2026the possibilities are actually endless.\"]}),/*#__PURE__*/e(\"p\",{children:\"We created PodiumGPT to not only make your creative process easier, but also to open up a world of opportunities for makers like you who might not have the time or knowledge to use more complex AI tools. By leveraging PodiumGPT, you can tap into the power of the underlying ChatGPT and turn your audio into valuable written content quickly and easily.\"}),/*#__PURE__*/e(\"h2\",{children:\"How does PodiumGPT work?\"}),/*#__PURE__*/e(\"p\",{children:\"PodiumGPT works very similarly to ChatGPT: you feed it an audio of your choosing and it generates ideas and textual output. However, instead of leveraging general data, PodiumGPT is powered by content-specific data tuned specifically to your podcast. This means that, when you feed PodiumGPT your audio, it will generate ideas and output highly tailored for your content.\"}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Right now, it only works on a per-file basis.\"}),\" This means that if you upload, say, a 3 hour podcast .mp3, you can generate any content you like using PodiumGPT for that particular file. It will only consider that file only, and not other files you\u2019ve previously uploaded.\"]}),/*#__PURE__*/t(\"p\",{children:[\"To use PodiumGPT, you can hit the \u201CPodiumGPT\u201D link under an upload you\u2019ve created within your \",/*#__PURE__*/e(n,{href:\"https://podium.page/dashboard\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"/dashboard page\"})}),\", or alternatively hit the \u201Cview\u201D button and then hit the \u201CGenerate more files\u201D button.\"]}),/*#__PURE__*/e(\"p\",{children:\"If you prefer a visual walkthrough, watch this:\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(n,{href:\"https://www.loom.com/share/0d2d9d24b2ef4d6ea171e625a50d1e6a\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Introducing...PodiumGPT - Watch Video\"})})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,uwE0ZkLOqOnwrcSvZy918Nc86M.gif\",\"data-framer-height\":\"360\",\"data-framer-width\":\"576\",height:\"180\",src:\"https://framerusercontent.com/images/uwE0ZkLOqOnwrcSvZy918Nc86M.gif\",srcSet:\"https://framerusercontent.com/images/uwE0ZkLOqOnwrcSvZy918Nc86M.gif?scale-down-to=512 512w,https://framerusercontent.com/images/uwE0ZkLOqOnwrcSvZy918Nc86M.gif 576w\",style:{aspectRatio:\"576 / 360\"},width:\"288\"}),/*#__PURE__*/e(\"h2\",{children:\"What\u2019s the benefit of using PodiumGPT?\"}),/*#__PURE__*/e(\"p\",{children:\"The benefit of using PodiumGPT is pretty simple: leveraging PodiumGPT will save you tons of time and hassle when it comes to creating written content out from your audio. No more staring at blank pages. With PodiumGPT, all of this (and more) is available to you in just a few clicks.\"}),/*#__PURE__*/e(\"p\",{children:\"If you need a reminder for why creating written content from your audio content is important, check out some of our past articles: \"}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(n,{href:\"https://hello.podium.page/blog/using-ai-copywriting-tools-as-a-content-creator\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"https://hello.podium.page/blog/using-ai-copywriting-tools-as-a-content-creator\"})})})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(n,{href:\"https://hello.podium.page/blog/writing-great-show-notes\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"https://hello.podium.page/blog/writing-great-show-notes\"})})})})]}),/*#__PURE__*/e(\"p\",{children:\"Other tools will leverage AI to help you create tweets, LinkedIn posts, blog posts, and more, but only if they\u2019ve specifically built that feature. But with PodiumGPT, you can literally create whatever you want. We give you the underlying technology as an easy-to-use tool itself so you can succeed as a creator.\"}),/*#__PURE__*/e(\"h2\",{children:\"Do I have to pay extra for PodiumGPT?\"}),/*#__PURE__*/e(\"p\",{children:\"Nope! PodiumGPT is already included in your subscription\u2014no matter your subscription level. If you\u2019re a free trial user, you can also use PodiumGPT there as well.\"}),/*#__PURE__*/e(\"h2\",{children:\"Examples\"}),/*#__PURE__*/e(\"p\",{children:\"To give you a better idea of what\u2019s possible with PodiumGPT, here are some examples of what you can create with it:\"}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Create a Facebook post promoting this episode\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Summarize this podcast in the style of an abstract for an academic paper\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Create a script for a short Tiktok video promoting this podcast\"})})]}),/*#__PURE__*/e(\"p\",{children:\"Again, the possibilities are truly endless. With PodiumGPT, you can create anything you can dream up to get a head start on marketing your content.\"})]});export const richText15=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"Monetizing your show\"}),/*#__PURE__*/e(\"p\",{children:\"As you grow your show, you undoubtedly start to think about how to monetize your hard work and amazing content. That\u2019s the dream for many creators\u2014flipping their youtube channel or podcast into a bonafide income stream. And it\u2019s possible, but it does take hard work. Not just on the content side, ensuring a quality recording or stream and the main content itself, but in the post-production side of things: writing all the marketing copy, social media posts, and last but not least: your show notes, whether in the form of podcast show notes, a youtube description, or more.\"}),/*#__PURE__*/e(\"p\",{children:\"In this article we\u2019re going to explore the ways that you can optimize your show notes to increase their monetizing potential\u2014an often overlooked part of making your show more accessible and also more profitable. So let\u2019s jump right in.\"}),/*#__PURE__*/e(\"h2\",{children:\"Seven ways to increase revenue from your show notes\"}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Find Affiliates\"}),\": One popular way to monetize your show, whether as a youtube channel or podcast, is through affiliate marketing. Thousands of affiliate programs and advertisers are out there ready for your partnership. When listeners click on these links and make a purchase, the podcaster earns a commission. Additionally, many companies have affiliate programs that pay commissions to partners who refer customers to their products. Podcasters can sign up for these programs and promote the products on their show notes.\"]}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Tell advertisers you\u2019re open for business: \"}),\"If one of your fans has a company, they may be interested in sponsoring your show. Let the world know how to reach you. Include a note at the bottom of your show notes for how to inquire about sponsoring your content. It can be an email address or a link to your profile on an ad platform. It can be as simple as \u201CWant to sponsor this show? Send inquiries to\u2026\u201D at the bottom of your show notes.\"]}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Sell those backlinks!\"}),\" Backlinking is valuable to advertisers wanting to increase their SEO ranking\u2014the link itself is valuable to your potential partners. Offer to include relevant SEO keywords in the presentation of those backlinks. Don\u2019t just say \u201CSponsored by \",/*#__PURE__*/e(n,{href:\"http://soandso.com/\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"soandso.com\"})}),\"\u201D, explain the quality with rich words \u201C\",/*#__PURE__*/e(n,{href:\"http://soandso.com/\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Soandso.com\"})}),\" is the leader in <Keyword>. They are experts in <Keyword 2> and <Keyword 3>. We\u2019re really thankful for their sponsorship and encourage our fans to check out their <Keyword 4> services at \",/*#__PURE__*/e(n,{href:\"http://soandso.com/\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"soandso.com\"})}),\"\u201D. You may not mention every advertiser and sponsor in your show, but you can always include them in your show notes.\"]}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Amazon Affiliate Sales: \"}),\"An easy way to take advantage of the power of affiliate sales is through Amazon. Sign up as an affiliate and create custom links to products that you mention in your podcast. Whenever a person clicks on that link and buys anything on Amazon you\u2019ll get a commission. Mention to your audience that a link is in your show notes and that buying with that link supports the show.\"]}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Premium Content\"}),\": Offering bonus episodes and exclusive content to paying subscribers is a great way to monetize a podcast, especially if you're not a fan of the ad route. Don\u2019t forget to mention this in your show AND also in your show notes\u2014i.e. don\u2019t bury it. If you have bonus content to a particular episode make sure to include easy links for people to find. Structure the content in your show notes accordingly. But make sure that you aren\u2019t making your show notes less useful to people actually trying to read what your show is about. There are multiple platforms that allow you to sell premium content\u2014use them! \"]}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Merch Merch Merch\"}),\": It's worked for punk bands on tour for decades. Sell merchandise related to your show, such as t-shirts or mugs, and include links to the products in your show notes. Your show is a unique culture artifact, after all\u2014so make sure your audience has a tangible representation of it! Remind your listeners in your show but don\u2019t forget those show note links! Just be sure to strike a balance between promoting your merchandise and providing valuable content to your listeners. Don't turn your show into an infomercial.\"]}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Donations and Patrons\"}),': Donations from your fans can be a significant source of revenue for content creators. You can set up a Patreon account or a \"',/*#__PURE__*/e(n,{href:\"https://www.buymeacoffee.com/\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Buy me a coffee\"})}),\"\\\" account in minutes. Include those links to in your show notes. So simple, but often forgotten. Some very successful creators who produce content that is factual in nature (like some news or opinion shows) opt to run off donations entirely to keep their optics squeaky clean (so their audience doesn't wonder if they're reporting on certain things due to sponsorships or not).\"]}),/*#__PURE__*/e(\"h3\",{children:\"Last words\"}),/*#__PURE__*/e(\"p\",{children:\"As you can see there\u2019s a lot of overlooked ways that you can start turning your show notes into a revenue stream. You\u2019d be surprised how many creators, youtubers, and podcasters struggle to monetize because they fail to optimize their show notes as part of their engine of growth\u2014growth in fans and growth in revenue.\"}),/*#__PURE__*/e(\"p\",{children:\"Show notes can provide critical information that makes your content stand out. Links to relevant information for your fans is just part of that. Including links to your transcript, chapter timestamps, etc. also improve the user experience of your show.\"}),/*#__PURE__*/e(\"h3\",{children:\"P.S.\"}),/*#__PURE__*/t(\"p\",{children:[\"We know that all of these things take time away the thing you really love: creating your podcast, your Youtube or Tiktok videos, etc. That\u2019s why we made \",/*#__PURE__*/e(n,{href:\"https://hello.podium.page\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Podium\"})}),\", our AI tool built for creators and podcasters to help improve the quality of your content so you can grow your audience.\"]})]});export const richText16=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"Why should I use AI copywriting tools if I'm not producing written content?\"}),/*#__PURE__*/e(\"h3\",{children:\"Getting your show in front of others\"}),/*#__PURE__*/e(\"p\",{children:\"As a podcaster (or Youtube creator, etc.), using an AI copywriting tool might not come to mind as one of the first tools to leap to in helping you produce your show. Rather, editor tools like Adobe Premiere, Final Cut Pro, Audacity, CapCut, or others might make more sense.\"}),/*#__PURE__*/t(\"p\",{children:[\"But a big part of getting your show \",/*#__PURE__*/e(\"em\",{children:\"out there\"}),\" is the copy that carries it. In a way, the written copy surrounding your show is like a boat, and the people on the boat is the content itself\u2014I.e., your podcast, your youtube videos, etc.\"]}),/*#__PURE__*/e(\"p\",{children:\"Surrounding your show with good copy is essential for earning the audience your show deserves. Ideally, when people hear about your show, they're watching or listening to the show itself in whatever channel they're viewing. For example, if someone is scrolling LinkedIn or Twitter, you want them to stumble upon an actual clip from your show and get that direct sample. In some ways, this is even better than a movie trailer, because it\u2019s an unofficial endorsement (social proof) that your show provided value to a real human being, so much so that they took the effort to share it with others.\"}),/*#__PURE__*/e(\"p\",{children:'However, unless your show is wildly successful and established, this is mostly the ideal while you\u2019re just starting out. And without new audience members getting \"direct samples\" of your show, they will rely on proxies\u2014on the web this largely amounts to the text content surrounding your show. This could come in the form of user-generated content, like someone tweeting about your show or a friend texting you telling you \"you gotta listen to this podcast episode\", someone at a party recalling an episode of a podcast you should check out, or even something official, like your own podcast\\'s show notes or youtube video description.'}),/*#__PURE__*/e(\"h3\",{children:\"What are AI copywriting tools, and how they can help\"}),/*#__PURE__*/e(\"p\",{children:\"This step in the \u201Cawareness\u201D pipeline is where AI copywriting tools can create a huge lift for you and save you a lot of time. AI copywriting tools use natural language processing (NLP) and machine learning algorithms to generate text that is similar in style and tone to human writing, because ultimately\u2014it has been trained on billions of samples of actual human writing. These tools can help you craft headlines, social media posts, show notes, and even full episode transcripts in a matter of minutes. They can save you tons of time and brain power, allowing you to just get back to the thing you do best\u2014creating the content itself.\"}),/*#__PURE__*/e(\"p\",{children:\"AI copywriting tools are becoming increasingly sophisticated and specialized, with options tailored for podcasting, video content creation, email marketing, and more. Using an AI tool that is purpose-built for your specific content needs will help you craft copy that resonates most with your target audience, creating opportunities for people to discover your show without directly listening to it.\"}),/*#__PURE__*/e(\"p\",{children:\"Think about it\u2014if you\u2019re a podcast listener, how often do you listen to podcast episodes without first reading the show notes for the episode? For me personally, if I wasn\u2019t sold on a podcast via a short clip on social media or Youtube, I\u2019m reading the show notes to \u201Csell myself\u201D on the episode. The kind of long-form content I like is often several hours long, but the attention span I have for the actual decision-making part is short. I don\u2019t want to waste the next few hours on something that won\u2019t be an enriching experience, and there\u2019s already a million tiny decisions I have to make during the day about what to read, watch, or listen to next.\"}),/*#__PURE__*/e(\"p\",{children:\"So, producing the right content around your \u201Ccore\u201D content (podcast, video) is essential for convincing listeners that your show is for them. You likely have an audience waiting for you\u2014it\u2019s just a matter of how to find the right path to them!\"}),/*#__PURE__*/e(\"h2\",{children:\"Using AI copywriting tools to help your audience find you\"}),/*#__PURE__*/e(\"p\",{children:\"Creating great copy to surround your podcast or youtube videos can often require a totally different headspace. This is why larger Youtubers and podcasters often resort to hiring a producer, or even a whole production team, to take care of this, as part of their normal duties as producers.\"}),/*#__PURE__*/e(\"p\",{children:\"As a small-time creator (or any level, for that matter), AI tools can really help. If you\u2019re just starting out, most of your energy will be devoted to creating the podcasts, the videos, researching topics and future guests, etc. At Podium, many of our customers usually do the \u201Cbare minimum\u201D with regards to writing show notes or doing other \u201Ccopywriting\u201D duties of podcast production. Some even avoided writing show notes at all!\"}),/*#__PURE__*/e(\"p\",{children:\"But when trying out AI tools, they ended up saving so much time that all of a sudden, writing the copy that was essential for a great-looking podcast wasn\u2019t so daunting.\"}),/*#__PURE__*/t(\"p\",{children:[\"There are already plenty of AI copywriting tools out there, especially ones made for content creators like podcasters, but only very few can generate \",/*#__PURE__*/e(\"strong\",{children:\"chapters\"}),\" and \",/*#__PURE__*/e(\"strong\",{children:\"clips\"}),\" for your podcast, which put you a cut above the rest because you can more easily dissect the different parts of your podcast and share short clips of them on social media.\"]}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://hello.podium.page/\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Podium\"})}),\" is one of these AI tools that can generate show notes, transcripts, episode titles, social media posts, \",/*#__PURE__*/e(\"em\",{children:\"in addition to\"}),\" generating chapters (readable by Spotify and Youtube) and short clips for social media. (You get 3 free audio hours of processing in the free trial).\"]}),/*#__PURE__*/e(\"p\",{children:\"With specialized AI tools, you can spend less time writing about your show and more time creating the show itself. Your audience will find the path to your show through well-crafted copy, and you\u2019ll have more time and creative energy to keep producing a high-quality show.\"}),/*#__PURE__*/e(\"p\",{children:\"Producing your show is top priority\u2014but coming in close second is the way you\u2019re marketing yourself, or else people won\u2019t listen to the show in the first place.\"})]});export const richText17=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"Why are podcast show notes important?\"}),/*#__PURE__*/t(\"p\",{children:[\"Podcasting is alot of work. You have to think of an idea, develop the content, and produce and record it. Then, you have to edit it, which \",/*#__PURE__*/e(\"em\",{children:\"always\"}),\" takes longer than expected.\"]}),/*#__PURE__*/t(\"p\",{children:[\"But there\u2019s a problem. People aren\u2019t downloading it. Your audience isn\u2019t growing, and you are reaching as many people as you want. Why? The content is good, and the conversation is interesting. The problem may not be in your \",/*#__PURE__*/e(\"strong\",{children:\"podcast\"}),\" but in your \",/*#__PURE__*/e(\"strong\",{children:\"show notes.\"})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:\"What are show notes, and why are they important?\"})}),/*#__PURE__*/e(\"p\",{children:\"Remember in high school English class when, bleary-eyed, you realized that your paper on Romeo and Juliet was due the next morning? Where did you turn? Cliff Notes.\"}),/*#__PURE__*/t(\"p\",{children:[\"Podcast show notes are like the Cliff Notes summary for your podcast, helping your listeners know what it is all about \",/*#__PURE__*/e(\"em\",{children:\"before\"}),\" they begin listening. Think about it: how do you choose what to watch on Netflix, among the vast sea of shows and movies? You read the description, you watch the trailer, and maybe even go the extra mile and look up reviews on Letterboxd or the IMDB rating.\"]}),/*#__PURE__*/e(\"p\",{children:\"Writing show notes that serve your listeners greatly helps this \u201Cdecision-making\u201D process when a listener is deciding what to listen to next.\"}),/*#__PURE__*/e(\"p\",{children:\"Often, great show notes start with a list of bullet points and context that give you all the critical details of a podcast:\"}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Who the guests are, why they\u2019re interesting/important\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"General conversation overview or subject matter\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"A brief summary\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Links to previous episodes\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Related links\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Social media channels\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Sponsors / deals\"})})]}),/*#__PURE__*/e(\"p\",{children:\"A good set of show notes tells the listener what the podcast is about, where to go if they want to hear more about the same topic, where to find relevant information relating to guests or information, and how to stay engaged.\"}),/*#__PURE__*/e(\"p\",{children:\"In short, good show notes pique a listener\u2019s interest, help more people find the episode, and convince them to give it a listen.\"}),/*#__PURE__*/t(\"p\",{children:[\"Some show notes are very terse, like \",/*#__PURE__*/e(n,{href:\"https://open.spotify.com/show/4rOoJ6Egrf8K2IrywzwOMk\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Joe Rogan\u2019s\"})}),\", often just mentioning who the guest is. Some are long and very structured, like \",/*#__PURE__*/e(n,{href:\"https://hubermanlab.com/welcome-to-the-huberman-lab-podcast/\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"The Huberman Lab\"})}),\" (which comes complete with chapters and timestamps\u2014something Podium can generate for you, if your podcast is long). And others, like the \",/*#__PURE__*/e(n,{href:\"https://www.pushkin.fm/podcasts/the-happiness-lab-with-dr-laurie-santos\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Happiness Lab\"})}),\" or \",/*#__PURE__*/e(n,{href:\"https://freakonomics.com/podcasts/\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Freakonomics\"})}),\", keep it simple with a basic description, guests, and links, but forgoing extensive summaries or chapters.\"]}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,5uDz5Jb2sRpPDdkHY2J7dLdQK4.png\",\"data-framer-height\":\"1048\",\"data-framer-width\":\"966\",height:\"524\",src:\"https://framerusercontent.com/images/5uDz5Jb2sRpPDdkHY2J7dLdQK4.png\",srcSet:\"https://framerusercontent.com/images/5uDz5Jb2sRpPDdkHY2J7dLdQK4.png?scale-down-to=1024 943w,https://framerusercontent.com/images/5uDz5Jb2sRpPDdkHY2J7dLdQK4.png 966w\",style:{aspectRatio:\"966 / 1048\"},width:\"483\"}),/*#__PURE__*/e(\"p\",{children:\"Joe Rogan. Regularly the #1 podcast in the world, he doesn\u2019t need to say much!\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,45uNwcxjrJXiPSd3e2AzYdNqCA.png\",\"data-framer-height\":\"1140\",\"data-framer-width\":\"1008\",height:\"570\",src:\"https://framerusercontent.com/images/45uNwcxjrJXiPSd3e2AzYdNqCA.png\",srcSet:\"https://framerusercontent.com/images/45uNwcxjrJXiPSd3e2AzYdNqCA.png?scale-down-to=1024 905w,https://framerusercontent.com/images/45uNwcxjrJXiPSd3e2AzYdNqCA.png 1008w\",style:{aspectRatio:\"1008 / 1140\"},width:\"504\"}),/*#__PURE__*/e(\"p\",{children:\"The Happiness Lab. Short and sweet.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,rfWqVwNPFpyIKxZYvnceAAd1Wh0.png\",\"data-framer-height\":\"1500\",\"data-framer-width\":\"1766\",height:\"750\",src:\"https://framerusercontent.com/images/rfWqVwNPFpyIKxZYvnceAAd1Wh0.png\",srcSet:\"https://framerusercontent.com/images/rfWqVwNPFpyIKxZYvnceAAd1Wh0.png?scale-down-to=512 512w,https://framerusercontent.com/images/rfWqVwNPFpyIKxZYvnceAAd1Wh0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rfWqVwNPFpyIKxZYvnceAAd1Wh0.png 1766w\",style:{aspectRatio:\"1766 / 1500\"},width:\"883\"}),/*#__PURE__*/e(\"p\",{children:\"Show notes for the Huberman Lab podcast. So informative!\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"Great show notes also cross-promote your other content and helps keep the listener engaged with you long after the episode is done.\"}),/*#__PURE__*/e(\"p\",{children:\"At Podium, we\u2019ve tracked, analyzed, and studied Podcast Show Notes, so you don\u2019t have to, and this article represents a very handy guide on how to write really good show notes.\"}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"strong\",{children:\"What\u2019s a good starting point for good show notes?\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"#1: A summary\"})}),/*#__PURE__*/e(\"p\",{children:\"Tell \u2018em what it's all about. Are you interviewing a guest? Give them an insight or quote that draws them in. Are you continuing a conversation from a previous episode? Give them a running start on this episode by reminding them what happened in the last one. Are you diving into a new subject? Tell them about it!\\xa0 What should you include in a summary? Ask yourself, \u201Cwhat would make someone want to listen to this podcast?\u201D Then, give them just enough detail to make them want to listen. A summary is there to get them engaged, not give away the entire episode.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"#2: Chapters (optional)\"})}),/*#__PURE__*/e(\"p\",{children:\"Chapters aren\u2019t a good fit for every podcast. But for podcasts that are long and possibly meander through a slew of topics, chapters are a great way to:\"}),/*#__PURE__*/t(\"ol\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Get a bird\u2019s-eye view of a conversation\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"If your podcast player allows it, jump straight to a particular topic or section\"})})]}),/*#__PURE__*/e(\"p\",{children:\"Often, podcasters must create these themselves, then rely on their players (Youtube, Spotify, Pocket Casts, Apple, etc.) to \u201Cparse\u201D them from their description so that the chapters become clickable or interactive.\"}),/*#__PURE__*/t(\"p\",{children:[\"There are even podcast players like \",/*#__PURE__*/e(n,{href:\"https://hello.fathom.fm/\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Fathom\"})}),\" which use AI to create chapters automatically, taking long podcast episodes like those of \",/*#__PURE__*/e(n,{href:\"https://fathom.fm/podcast/breaking-points-with-krystal-and-saagar\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Breaking Points\"})}),\" and breaking them up into their logical topics so you can jump straight to the subject matter you\u2019re most piqued by.\"]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"#3:\\xa0 Spotlight Social Media Connections.\"})}),/*#__PURE__*/t(\"p\",{children:[\"Don\u2019t forget \",/*#__PURE__*/e(\"strong\",{children:\"social media.\"}),\" You already know that social media is one of the most important avenues for marketing your podcast. But it should go both ways. Your social media accounts should send your audience to your podcasts. But do your podcasts and show notes send them to your social media accounts, blog, and other media channels?\"]}),/*#__PURE__*/e(\"p\",{children:\"Podcasting is a powerful tool for connecting with your audience. If you want to level up your impact, use show notes to steer them to other ways they can interact with you. Your podcast should grow your social, and your social should grow your podcast.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"#4: Sponsors\"})}),/*#__PURE__*/e(\"p\",{children:\"Making a living from podcasting ain\u2019t easy, so acquiring and displaying your sponsors is huge if you want to turn podcasting into a full-time gig. If you\u2019re sponsored, you should definitely be sharing any sponsors you mention in your episode within your show notes, and even discount codes for those sponsors if applicable.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"#5: Use SEO Strategies.\"})}),/*#__PURE__*/e(\"p\",{children:\"SEO is a website thing, not a podcasting thing, right? Wrong! There are more podcasts than ever before, and if you want to get heard, you need to leverage SEO.\"}),/*#__PURE__*/e(\"p\",{children:\"Keywords, accurate episode summaries, chapters, and more help your podcast appear and stand out from other podcasts in topical searches, ensuring that searches result in actual relevant content for listeners. In short, you want to make sure listeners you don\u2019t even know about yet are finding your show.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"#6: Include a transcript\"})}),/*#__PURE__*/t(\"p\",{children:[\"Transcripts are becoming more useful as podcasts grow in popularity. While not yet mainstream, transcripts provide an easy way for listeners to search for specific topics or words mentioned in an episode. Most importantly, they also make podcast content more accessible to those with hearing impairments. Though creating transcripts requires additional time and effort, using AI tools can greatly simplify the process, creating an entire transcript for you, and even separating the speakers. Services like \",/*#__PURE__*/e(n,{href:\"https://hello.podium.page/\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Podium\"})}),\" allow podcasters to automatically generate transcripts of their episodes, removing the manual labor (and greatly reducing cost) while still providing the benefits of transcripts to their listeners.\"]}),/*#__PURE__*/e(\"p\",{children:\"It\u2019s best to not include your entire podcast\u2019s transcript in your show notes, but rather just a link to where it\u2019s hosted (on a web page) so listeners can read it. Soon, Podium will provide a hosted transcript service for you, but in the meantime, great hosts like Buzzsprout allow you to paste the transcript generated by tools like Podium into their publishing interface, so your listeners can read the transcript using your public Buzzsprout page.\"}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"strong\",{children:\"Use an AI tool to simplify creating show notes\"})}),/*#__PURE__*/e(\"p\",{children:\"You could do all this work manually, typing up transcripts, searching for relevant keywords, and breaking down your episode into chapters for easy navigation. Big podcasters often employ multi-person production teams to achieve exactly this.\"}),/*#__PURE__*/e(\"p\",{children:\"But chances are, you\u2019re not a \u201Cbig\u201D podcaster, and even if you are\u2014using AI tools will drastically help your production team.\"}),/*#__PURE__*/e(\"p\",{children:\"Wouldn\u2019t you rather just be podcasting?\"}),/*#__PURE__*/e(\"p\",{children:\"That is why we created Podium, which creates high-quality AI-generated show notes in just a few minutes. The idea isn\u2019t to get \u201Cperfect\u201D show notes instantly, but it absolutely gets you 90% there so you can just focus on tweaking it to perfection.\"}),/*#__PURE__*/e(\"p\",{children:\"Some podcasters who discovered Podium even told us that they wouldn\u2019t create show notes at all because it was \u201Cdaunting\u201D, but with Podium\u2014he now gets it done in 20-30 minutes. If he\u2019s anything like me, when it\u2019s time to sit down and write something\u2014I have to retreat to a quiet place, turn off the music, and shut the door to write effectively. It takes all of my brain power. AI writing tools are far from perfect, but when you just want to get back to your next podcast, getting a massive jumpstart by using AI tools like Podium is a huge productivity boon.\"}),/*#__PURE__*/e(\"p\",{children:\"It doesn\u2019t matter how polished or interesting your podcast is if no one finds it. You work hard to produce a great podcast\u2014so make sure your show notes match the audio!\"})]});export const richText18=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"What exactly are podcast chapters?\"}),/*#__PURE__*/e(\"p\",{children:\"Podcast chapters are segments that divide a podcast episode into sections, normally based on some topic. Each section is given a title, making it easier for listeners to navigate and find the content they\u2019re interested in. Chapters can be added to a podcast by either:\"}),/*#__PURE__*/t(\"ol\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[\"adding them in the description, which is how podcast players like \",/*#__PURE__*/e(n,{href:\"https://support.google.com/youtube/answer/9884579?hl=en\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Youtube\"})}),\" and \",/*#__PURE__*/e(n,{href:\"https://support.spotifyforpodcasters.com/hc/en-us/articles/360043932711-Linking-to-a-timestamp\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Spotify\"})}),\" will pick them up\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[\"as \",/*#__PURE__*/e(n,{href:\"https://en.wikipedia.org/wiki/ID3\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"ID3 tags\"})}),\" in the actual .mp3 file, which is how Apple podcasts (and others) pick them up.\"]})})]}),/*#__PURE__*/t(\"p\",{children:[\"Some podcast players, like \",/*#__PURE__*/e(n,{href:\"https://hello.fathom.fm/\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Fathom\"})}),\", will use AI to segment a podcast into chapters right inside the player, if the podcaster didn\u2019t provide their own via any of the above methods. Ideally, you want to supply chapters in both your description and via ID3 tags, so all major streaming platforms can understand them, and your listeners using those platforms can interact with chapters using their player\u2019s interface.\"]}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,YcO5Ne3cHZvREIS9vksRy4zxNtc.jpeg\",\"data-framer-height\":\"2049\",\"data-framer-width\":\"1170\",height:\"1024\",src:\"https://framerusercontent.com/images/YcO5Ne3cHZvREIS9vksRy4zxNtc.jpeg\",srcSet:\"https://framerusercontent.com/images/YcO5Ne3cHZvREIS9vksRy4zxNtc.jpeg?scale-down-to=1024 584w,https://framerusercontent.com/images/YcO5Ne3cHZvREIS9vksRy4zxNtc.jpeg?scale-down-to=2048 1169w,https://framerusercontent.com/images/YcO5Ne3cHZvREIS9vksRy4zxNtc.jpeg 1170w\",style:{aspectRatio:\"1170 / 2049\"},width:\"585\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:\"At the bottom, you can see how the Fathom podcast player will create chapters for podcasts (if the podcaster didn\u2019t provide their own).\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/t(\"p\",{children:[\"When a podcast has chapters, listeners can see the chapter titles in their podcast player and can skip to the section they want to listen to. This provides a two-fold benefit\u2014listeners can find a nice starting point based on their unique interests, \",/*#__PURE__*/e(\"em\",{children:/*#__PURE__*/e(\"strong\",{children:\"and\"})}),\" they get a bird\u2019s-eye view of where the podcast goes.\"]}),/*#__PURE__*/e(\"h2\",{children:\"Should you add chapters?\"}),/*#__PURE__*/t(\"p\",{children:[\"Chapters aren\u2019t appropriate for all genres of podcasts, e.g. storytelling podcasts like \",/*#__PURE__*/e(n,{href:\"https://snapjudgment.org/\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Snap Judgement\"})}),\" or \",/*#__PURE__*/e(n,{href:\"https://themoth.org/radio-hour\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"The Moth\"})}),\", where you\u2019ll definitely want to listen to them start to finish. But for informational podcasts like The \",/*#__PURE__*/e(n,{href:\"https://hubermanlab.com/welcome-to-the-huberman-lab-podcast/\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Huberman Lab\"})}),\", or even podcasts like the \",/*#__PURE__*/e(n,{href:\"https://open.spotify.com/show/4rOoJ6Egrf8K2IrywzwOMk?nd=1\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Joe Rogan Experience\"})}),\" which are far less structured and meander a lot, chapters can be a great way to pin down the \u201Ckey segments\u201D to function as a map for listeners.\"]}),/*#__PURE__*/t(\"p\",{children:[\"As a podcaster, you\u2019ll have an intuitive understanding of whether or not chapters would be appropriate for your podcast. A great way to get a sense of what chapters \u201Cfeel\u201D like is to use a podcast player like \",/*#__PURE__*/e(n,{href:\"https://hello.fathom.fm/\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Fathom\"})}),\" (which reads chapters that podcasters have created, or for many podcasts which don\u2019t provide chapters, uses AI to create them based on the actual topics within) or even watching videos on Youtube, many of which have chapters.\"]}),/*#__PURE__*/e(\"h2\",{children:\"What\u2019s the best way to add chapters to a podcast?\"}),/*#__PURE__*/e(\"p\",{children:\"You can type up chapters manually to paste your show notes after listening back to your podcast, or using editing tools like Final Cut Pro or Adobe Premiere to place \u201Cmarkers\u201D in the sequence timeline while editing, and export those markers (but usually, it still requires some manual finessing to paste them legibly in your show notes).\"}),/*#__PURE__*/t(\"p\",{children:[\"Hosts like Buzzsprout allow you to add chapters using their publishing interface (see this \",/*#__PURE__*/e(n,{href:\"https://www.youtube.com/watch?v=fd3zc2xc7so&t=1s\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"video\"})}),\"), which can be very convenient.\"]}),/*#__PURE__*/e(\"p\",{children:\"But adding chapters can be one of the most arduous parts of the production process for your podcast. I\u2019ve talked to producers who will listen to their podcast a total of three times\u2014even if the podcast is 3 hours long\u2014to get everything they need to publish successfully: chapter markers, clips for social media, audio quality checks, etc.\"}),/*#__PURE__*/t(\"p\",{children:[\"Because of this, chapter generation is actually one of the first things that podcasters will turn to AI tools to help them with. AI tools like \",/*#__PURE__*/e(n,{href:\"https://hello.podium.page/\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Podium\"})}),\" will listen to your podcast, transcribe it, and then analyze the transcript to distill the proper chapter segments, and finally output exactly the right text you need to add to your show notes so that players like Youtube and Spotify will read them. Usually they\u2019ll appear something like this:\"]}),/*#__PURE__*/e(\"p\",{children:\"(0:00:00) - Efficiency and Collaboration in Team Building\"}),/*#__PURE__*/e(\"p\",{children:\"(0:04:09) - The Origin of Liquid Death\"}),/*#__PURE__*/e(\"p\",{children:\"(0:08:11) - Building a High Performance Brand\"}),/*#__PURE__*/e(\"p\",{children:\"(0:12:21) - Brand Differentiation and Alienation\"}),/*#__PURE__*/e(\"p\",{children:\"(0:17:55) - Owning Your Brand\"}),/*#__PURE__*/e(\"p\",{children:\"(0:29:42) - The Power of Creative Entertainment\"}),/*#__PURE__*/e(\"p\",{children:\"(0:35:16) - Successful Low-Budget Content and Celebrity Ambassadors\"}),/*#__PURE__*/t(\"p\",{children:[\"This can save \",/*#__PURE__*/e(\"em\",{children:/*#__PURE__*/e(\"strong\",{children:\"hours\"})}),\" of listening back to your podcast.\"]}),/*#__PURE__*/t(\"p\",{children:[\"If you\u2019re afraid or skeptical of using AI tools, I understand\u2014there\u2019s a lot to digest and keep up with! The idea isn\u2019t that they create perfection and \",/*#__PURE__*/e(\"em\",{children:/*#__PURE__*/e(\"strong\",{children:\"replace\"})}),\" you, but rather give you a huge boost, something solid to build on\u2014so that you\u2019re done in minutes and not hours. \",/*#__PURE__*/e(\"em\",{children:/*#__PURE__*/e(\"strong\",{children:\"You\u2019re\"})}),\" responsible for the perfection part.\"]}),/*#__PURE__*/t(\"p\",{children:[\"You don\u2019t have to listen to me, though\u2014take it from the \",/*#__PURE__*/e(n,{href:\"https://hello.podium.page/#testimonials\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"podcasters and producers\"})}),\" themselves.\"]}),/*#__PURE__*/e(\"p\",{children:\"It\u2019s worth noting that most other AI tools currently don\u2019t do chapter generation\u2014this is due to the fact that they almost entirely piggyback off the publicly-available AI tools that developers use, which are good for transcripts and summaries, but not chapter segmentation, which is a tougher problem.\"}),/*#__PURE__*/t(\"p\",{children:[\"At \",/*#__PURE__*/e(n,{href:\"https://hello.podium.page/\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Podium\"})}),\" we\u2019ve built several proprietary made-for-podcasting AI pipelines, including ones to find chapters in podcasts specifically, so you can save a ton of time by getting a head start on chapters for your podcasts.\"]}),/*#__PURE__*/e(\"h2\",{children:\"Conclusion\"}),/*#__PURE__*/e(\"p\",{children:\"Chapters aren\u2019t for every podcast, but when they\u2019re appropriate, they can be difficult to create\u2014taking up a ton of time and sometimes requiring advanced editing tools built for professional producers. AI tools can drastically help with creating chapters for your podcast, especially if you\u2019re a solo podcaster who wears all the hats managing your podcast.\"})]});\nexport const __FramerMetadata__ = {\"exports\":{\"richText18\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText11\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText9\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText16\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText13\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText17\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText12\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText15\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText10\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText8\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText14\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "thumbnailURL", "getThumbnailURL", "getWebPSupported", "searchParams", "u", "wrapperStyle", "videoStyle", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "embedURL1", "videoId2", "embedURL2", "res", "format", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "richText", "u", "x", "p", "Link", "richText1", "richText2", "richText3", "richText4", "richText5", "richText6", "richText7", "richText8", "richText9", "richText10", "motion", "ComponentPresetsConsumer", "t", "Youtube", "richText11", "richText12", "richText13", "richText14", "richText15", "richText16", "richText17", "richText18", "__FramerMetadata__"]
}
