Tilbage til alle eksempler

PodcastSeries til Podcasts

IndholdAvanceret

PodcastSeries og PodcastEpisode schema til podcast shows og episoder.

Kode Eksempel

<!DOCTYPE html>
<html lang="da">
<head>
  <title>Tech Talks Danmark - Episode 42: AI i Hverdagen</title>
  <script type="application/ld+json">
  [
    {
      "@context": "https://schema.org",
      "@type": "PodcastSeries",
      "@id": "https://example.com/podcasts/tech-talks",
      "name": "Tech Talks Danmark",
      "description": "Ugentlig podcast om teknologi, software udvikling og digital transformation i Danmark. Vi interviewer tech ledere, udviklere og iværksættere.",
      "url": "https://example.com/podcasts/tech-talks",
      "image": "https://example.com/podcasts/tech-talks-cover.jpg",
      "author": {
        "@type": "Person",
        "name": "Mikkel Hansen",
        "url": "https://example.com/hosts/mikkel-hansen"
      },
      "webFeed": "https://example.com/podcasts/tech-talks/feed.xml",
      "genre": ["Technology", "Business"],
      "inLanguage": "da-DK"
    },
    {
      "@context": "https://schema.org",
      "@type": "PodcastEpisode",
      "url": "https://example.com/podcasts/tech-talks/episode-42",
      "name": "Episode 42: AI i Hverdagen - Hvordan påvirker kunstig intelligens dit liv?",
      "description": "I denne episode dykker vi ned i hvordan AI allerede påvirker vores hverdag. Fra anbefalingsalgoritmer på sociale medier til selvkørende biler. Vi taler med AI forsker Dr. Anne Larsen om fremtiden for kunstig intelligens i Danmark.",
      "datePublished": "2025-01-15T06:00:00+01:00",
      "timeRequired": "PT52M30S",
      "episodeNumber": 42,
      "partOfSeries": {
        "@type": "PodcastSeries",
        "@id": "https://example.com/podcasts/tech-talks",
        "name": "Tech Talks Danmark"
      },
      "audio": {
        "@type": "AudioObject",
        "contentUrl": "https://example.com/audio/tech-talks-ep42.mp3",
        "encodingFormat": "audio/mpeg",
        "duration": "PT52M30S"
      },
      "image": "https://example.com/podcasts/tech-talks-ep42-thumb.jpg",
      "associatedMedia": {
        "@type": "MediaObject",
        "contentUrl": "https://example.com/audio/tech-talks-ep42.mp3",
        "encodingFormat": "audio/mpeg",
        "contentSize": "76800000",
        "duration": "PT52M30S"
      },
      "publisher": {
        "@type": "Organization",
        "name": "Tech Media Danmark",
        "logo": {
          "@type": "ImageObject",
          "url": "https://example.com/logo.png"
        }
      },
      "actor": [
        {
          "@type": "Person",
          "name": "Mikkel Hansen",
          "jobTitle": "Host"
        },
        {
          "@type": "Person",
          "name": "Dr. Anne Larsen",
          "jobTitle": "Gæst - AI Forsker",
          "affiliation": {
            "@type": "Organization",
            "name": "DTU Compute"
          }
        }
      ],
      "transcript": {
        "@type": "MediaObject",
        "encodingFormat": "text/html",
        "url": "https://example.com/podcasts/tech-talks/episode-42/transcript"
      },
      "keywords": "AI, kunstig intelligens, machine learning, teknologi, Danmark",
      "accessMode": "auditory",
      "accessModeSufficient": "auditory",
      "accessibilityFeature": "transcript",
      "inLanguage": "da-DK"
    }
  ]
  </script>
</head>
<body>
  <article>
    <h1>Episode 42: AI i Hverdagen</h1>
    <p>Tech Talks Danmark | 15. januar 2025 | 52 min</p>
    <audio controls src="/audio/tech-talks-ep42.mp3"></audio>
  </article>
</body>
</html>

Forklaring

Dette eksempel viser PodcastSeries og PodcastEpisode schema til podcasts. Google kan vise dette i podcast rich results med cover art, episode info og afspilningslinks. Hjælper med at fremstå i Google Podcasts og søgeresultater.

Use Cases

  • Podcast websites
  • Podcast hosting platforme
  • Media company podcast sektioner
  • Independent creator podcasts
  • Educational audio content

Best Practices

  • Brug både PodcastSeries og PodcastEpisode i et array
  • Link episode til series med partOfSeries
  • Inkluder audio contentUrl til MP3 fil
  • Angiv timeRequired/duration i ISO 8601 format
  • Tilføj episodeNumber for rækkefølge
  • Inkluder webFeed (RSS feed URL) på series
  • Tilføj transcript URL for tilgængelighed
  • Upload cover art i minimum 1400x1400px
  • Specificer actor array med host og gæster
  • Angiv accessibilityFeature hvis transcript findes

Quick Info

Kategori
Indhold
Sværhedsgrad
Avanceret
Use Cases
5
Best Practices
10