> ## Knowledge Base Index
> Fetch the complete knowledge base index at: https://help.lumen5.com/sitemap.xml
> Use this file to discover available pages before exploring further.
> Pure-Markdown content can be obtained by appending a '.md' suffix to the content URLs listed in the sitemap (without the trailing slash).

# Automatically exporting published videos with MRSS Feeds

If you'd like to automatically pull all videos that are published from Lumen5, we offer Media RSS ([MRSS](https://en.wikipedia.org/wiki/Media_RSS)) feeds. These feeds allow you to hook up your content management tool to Lumen5, making exporting videos a breeze!

### Accessing MRSS Feeds
To find the MRSS Feed URL, navigate to [Workspace Settings](https://lumen5.com/dashboard/workspaces/).

For the workspace you're interested, click the "⚙️" icon and then click "Workspace settings":

![](https://storage.crisp.chat/users/helpdesk/website/926ed4db19dfb800/cleanshot-2024-02-02-at-091130_uzktid.png)

At the bottom of the modal you'll see the "MRSS Feed for Published Videos":

![](https://storage.crisp.chat/users/helpdesk/website/926ed4db19dfb800/cleanshot-2024-02-02-at-091318_1sj60j6.png)

### Feed Structure
```xml
<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:media="http://search.yahoo.com/mrss/" version="2.0">
  <channel>
    <title>Workspace Name</title>
    <link>Feed URL</link>
    <description>Latest rendered videos from Workspace Name</description>
    <atom:link href="Feed URL" rel="self"/>
    <language>en-us</language>
    <lastBuildDate>Fri, 02 Feb 2024 17:17:01 +0000</lastBuildDate>
    <atom:link href="Next Feed URL" rel="next"/>
    <item>
      <title>Video Name</title>
      <link>Video Share Link</link>
      <description>Video Name</description>
      <guid>Video Share Link</guid>
      <media:content url="Video MP4"/>
      <media:thumbnail url="Video Preview JPG"/>
      <media:language>Video Language</media:language>
      <media:category>Project Name</media:category>
    </item>
    ...
  </channel>
</rss>
```