{"id":2863,"date":"2025-06-04T00:37:28","date_gmt":"2025-06-04T00:37:28","guid":{"rendered":"https:\/\/fadyanwar.com\/?p=2863"},"modified":"2025-06-04T00:51:51","modified_gmt":"2025-06-04T00:51:51","slug":"setting-up-jellyfin-to-stream-your-azure-backed-media-collection","status":"publish","type":"post","link":"https:\/\/fadyanwar.com\/index.php\/2025\/06\/04\/setting-up-jellyfin-to-stream-your-azure-backed-media-collection\/","title":{"rendered":"Setting Up Jellyfin to Stream Your Azure-Backed Media Collection"},"content":{"rendered":"\n<p>In my previous guide, I covered how to mount Azure Files on Linux and set up automated backups using rsync. While having your media files safely stored in the cloud is essential, you also need a way to access and enjoy that content. This is where Jellyfin comes in \u2013 a fantastic open-source media server that lets you stream your movie collection from anywhere.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Why Jellyfin?<\/h2>\n\n\n\n<p>Jellyfin is a self-hosted alternative to services like Netflix or Disney Plus, with no paywalls or premium features. It organizes your media library, fetches metadata, and allows streaming to various devices. Since we&#8217;ve already set up Azure Files as a backup destination for our media, we can now configure Jellyfin to make those files accessible in a user-friendly way.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Prerequisites<\/h2>\n\n\n\n<p>Before setting up Jellyfin, ensure you have:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Docker installed \u2013 Jellyfin runs best in a containerized environment.<\/li>\n\n\n\n<li>Azure Files mounted \u2013 As covered in my previous guide, your media should be synced to \/media\/backup\/Movies (or your preferred directory).<\/li>\n\n\n\n<li>Docker Compose plugin installed (see manual installation instructions below if not available via package manager).<\/li>\n<\/ol>\n\n\n\n<p>First, set up Docker&#8217;s repository for your distribution. For Ubuntu\/Debian:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt-get update<br>sudo apt-get install docker-compose-plugin<\/code><\/pre>\n\n\n\n<p>For RPM-based distributions (CentOS\/RHEL\/Fedora):<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo yum update<br>sudo yum install docker-compose-plugin<\/code><\/pre>\n\n\n\n<p>Verify the installation:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>docker compose version<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Installing Docker Compose Plugin Manually<\/h3>\n\n\n\n<p>Some Azure Linux VM images don&#8217;t include Docker Compose in their default repositories. Here&#8217;s how to install it manually:<\/p>\n\n\n\n<p>If the repository method doesn&#8217;t work, install the plugin manually:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>DOCKER_CONFIG=${DOCKER_CONFIG:-$HOME\/.docker}<br>mkdir -p $DOCKER_CONFIG\/cli-plugins<br>curl -SL https:\/\/github.com\/docker\/compose\/releases\/download\/v2.36.2\/docker-compose-linux-x86_64 -o $DOCKER_CONFIG\/cli-plugins\/docker-compose<br>chmod +x $DOCKER_CONFIG\/cli-plugins\/docker-compose<\/code><\/pre>\n\n\n\n<p>For system-wide installation (all users):<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo mkdir -p \/usr\/local\/lib\/docker\/cli-plugins<br>sudo curl -SL https:\/\/github.com\/docker\/compose\/releases\/download\/v2.36.2\/docker-compose-linux-x86_64 -o \/usr\/local\/lib\/docker\/cli-plugins\/docker-compose<br>sudo chmod +x \/usr\/local\/lib\/docker\/cli-plugins\/docker-compose<\/code><\/pre>\n\n\n\n<p>Verify the installation:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>docker compose version<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 1: Prepare Your Media Directory<\/h2>\n\n\n\n<p>Following my Azure Files guide, your media should already be synced to a local directory (e.g., \/media\/backup\/Movies). Verify that the files are accessible:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>ls \/media\/backup\/Movies<\/code><\/pre>\n\n\n\n<p>If your media is stored elsewhere, adjust the paths accordingly.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 2: Set Up Jellyfin with Docker Compose<\/h2>\n\n\n\n<p>We&#8217;ll use Docker Compose to manage the Jellyfin container. Create a docker-compose.yml file with the following configuration:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>services:\n  jellyfin:\n    image: jellyfin\/jellyfin\n    container_name: jellyfin\n    user: 1000:1000\n    network_mode: 'host'\n    volumes:\n      - .\/config:\/config\n      - .\/cache:\/cache\n      - type: bind\n        source: \/media\/backup\/Movies\n        target: \/media\n    restart: 'unless-stopped'\n<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Explanation of Key Settings:<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>user: 1000:1000 \u2013 Ensures Jellyfin runs with your user permissions (replace 1000 with your actual UID\/GID if different).<\/li>\n\n\n\n<li>network_mode: host \u2013 Improves streaming performance by bypassing Docker&#8217;s NAT.<\/li>\n\n\n\n<li>Volumes:<\/li>\n\n\n\n<li>.\/config:\/config \u2013 Persists Jellyfin&#8217;s settings.<\/li>\n\n\n\n<li>.\/cache:\/cache \u2013 Helps speed up metadata loading.<\/li>\n\n\n\n<li>\/media\/backup\/Movies:\/media \u2013 Maps your Azure-backed media into the container.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Step 3: Launch Jellyfin<\/h2>\n\n\n\n<p>Run the following commands to start Jellyfin:<\/p>\n\n\n\n<p>mkdir -p jellyfin\/config jellyfin\/cache<br>docker compose up -d<\/p>\n\n\n\n<p>Jellyfin will initialize and create necessary files in the config directory.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 4: Access the Web Interface<\/h2>\n\n\n\n<p>Open your browser and navigate to:<\/p>\n\n\n\n<p>http:\/\/your-server-ip:8096<\/p>\n\n\n\n<p>Follow the setup wizard:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Set up admin credentials<\/li>\n\n\n\n<li>Add media libraries pointing to \/media<\/li>\n\n\n\n<li>Configure metadata preferences<\/li>\n\n\n\n<li>Complete setup<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading\">Step 5: Enjoy Your Media<\/h2>\n\n\n\n<p>Once scanning completes, your movies will appear in an organized library. You can now:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Stream to any device<\/li>\n\n\n\n<li>Enable hardware transcoding if supported<\/li>\n\n\n\n<li>Set up user accounts for family\/friends<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Automating Media Sync with Azure Files<\/h2>\n\n\n\n<p>Since your media is stored in Azure Files, keep it updated using rsync as I described in my previous guide:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>rsync -avzh --progress \/local\/movies\/ \/media\/backup\/Movies\/<\/code><\/pre>\n\n\n\n<p>Jellyfin will detect changes if &#8220;Real-time monitoring&#8221; is enabled in library settings.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Troubleshooting<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Permission issues: Verify user: matches your media directory owner<\/li>\n\n\n\n<li>Library not updating: Manually trigger a scan in Jellyfin&#8217;s dashboard<\/li>\n\n\n\n<li>Streaming performance: Ensure sufficient bandwidth, consider reverse proxy for remote access<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>By combining Azure Files for cloud storage and Jellyfin for media streaming, you&#8217;ve created a powerful, self-hosted entertainment system. Your media is both securely backed up and easily accessible from anywhere.<\/p>\n\n\n\n<p>For advanced setups, consider:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Hardware acceleration for transcoding<\/li>\n\n\n\n<li>Reverse proxy with SSL for secure remote access<\/li>\n\n\n\n<li>Automated media management tools like Sonarr\/Radarr<\/li>\n<\/ul>\n\n\n\n<p>Happy streaming!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In my previous guide, I covered how to mount Azure Files on Linux and set up automated backups using rsync. While having your media files safely stored in the cloud is essential, you also need a way to access and enjoy that content. This is where Jellyfin comes in \u2013 a fantastic open-source media server [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":2865,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_editorskit_title_hidden":false,"_editorskit_reading_time":0,"_editorskit_is_block_options_detached":false,"_editorskit_block_options_position":"{}","_vp_format_video_url":"","_vp_image_focal_point":[],"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[1],"tags":[],"class_list":["post-2863","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-technology"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Setting Up Jellyfin to Stream Your Azure-Backed Media Collection - Fady Anwar<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/fadyanwar.com\/index.php\/2025\/06\/04\/setting-up-jellyfin-to-stream-your-azure-backed-media-collection\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Setting Up Jellyfin to Stream Your Azure-Backed Media Collection - Fady Anwar\" \/>\n<meta property=\"og:description\" content=\"In my previous guide, I covered how to mount Azure Files on Linux and set up automated backups using rsync. While having your media files safely stored in the cloud is essential, you also need a way to access and enjoy that content. This is where Jellyfin comes in \u2013 a fantastic open-source media server [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/fadyanwar.com\/index.php\/2025\/06\/04\/setting-up-jellyfin-to-stream-your-azure-backed-media-collection\/\" \/>\n<meta property=\"og:site_name\" content=\"Fady Anwar\" \/>\n<meta property=\"article:published_time\" content=\"2025-06-04T00:37:28+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-06-04T00:51:51+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/fadyanwar.com\/wp-content\/uploads\/2025\/06\/Screenshot-from-2025-06-04-01-30-39.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"937\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Fady Anwar\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@fadyanwar\" \/>\n<meta name=\"twitter:site\" content=\"@fadyanwar\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Fady Anwar\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/06\\\/04\\\/setting-up-jellyfin-to-stream-your-azure-backed-media-collection\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/06\\\/04\\\/setting-up-jellyfin-to-stream-your-azure-backed-media-collection\\\/\"},\"author\":{\"name\":\"Fady Anwar\",\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/#\\\/schema\\\/person\\\/b66e3277ceba346f7053a83464e90b03\"},\"headline\":\"Setting Up Jellyfin to Stream Your Azure-Backed Media Collection\",\"datePublished\":\"2025-06-04T00:37:28+00:00\",\"dateModified\":\"2025-06-04T00:51:51+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/06\\\/04\\\/setting-up-jellyfin-to-stream-your-azure-backed-media-collection\\\/\"},\"wordCount\":591,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/#\\\/schema\\\/person\\\/b66e3277ceba346f7053a83464e90b03\"},\"image\":{\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/06\\\/04\\\/setting-up-jellyfin-to-stream-your-azure-backed-media-collection\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/i0.wp.com\\\/fadyanwar.com\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/Screenshot-from-2025-06-04-01-30-39.png?fit=1920%2C937&ssl=1\",\"articleSection\":[\"Technology\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/06\\\/04\\\/setting-up-jellyfin-to-stream-your-azure-backed-media-collection\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/06\\\/04\\\/setting-up-jellyfin-to-stream-your-azure-backed-media-collection\\\/\",\"url\":\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/06\\\/04\\\/setting-up-jellyfin-to-stream-your-azure-backed-media-collection\\\/\",\"name\":\"Setting Up Jellyfin to Stream Your Azure-Backed Media Collection - Fady Anwar\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/06\\\/04\\\/setting-up-jellyfin-to-stream-your-azure-backed-media-collection\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/06\\\/04\\\/setting-up-jellyfin-to-stream-your-azure-backed-media-collection\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/i0.wp.com\\\/fadyanwar.com\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/Screenshot-from-2025-06-04-01-30-39.png?fit=1920%2C937&ssl=1\",\"datePublished\":\"2025-06-04T00:37:28+00:00\",\"dateModified\":\"2025-06-04T00:51:51+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/06\\\/04\\\/setting-up-jellyfin-to-stream-your-azure-backed-media-collection\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/06\\\/04\\\/setting-up-jellyfin-to-stream-your-azure-backed-media-collection\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/06\\\/04\\\/setting-up-jellyfin-to-stream-your-azure-backed-media-collection\\\/#primaryimage\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/fadyanwar.com\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/Screenshot-from-2025-06-04-01-30-39.png?fit=1920%2C937&ssl=1\",\"contentUrl\":\"https:\\\/\\\/i0.wp.com\\\/fadyanwar.com\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/Screenshot-from-2025-06-04-01-30-39.png?fit=1920%2C937&ssl=1\",\"width\":1920,\"height\":937},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/06\\\/04\\\/setting-up-jellyfin-to-stream-your-azure-backed-media-collection\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/fadyanwar.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Setting Up Jellyfin to Stream Your Azure-Backed Media Collection\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/#website\",\"url\":\"https:\\\/\\\/fadyanwar.com\\\/\",\"name\":\"Fady Anwar\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/#\\\/schema\\\/person\\\/b66e3277ceba346f7053a83464e90b03\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/fadyanwar.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/#\\\/schema\\\/person\\\/b66e3277ceba346f7053a83464e90b03\",\"name\":\"Fady Anwar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a9172040bbc3bbe24fb49d59dac20da030af1f5ff628126c979a1d4b71eaed41?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a9172040bbc3bbe24fb49d59dac20da030af1f5ff628126c979a1d4b71eaed41?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a9172040bbc3bbe24fb49d59dac20da030af1f5ff628126c979a1d4b71eaed41?s=96&d=mm&r=g\",\"caption\":\"Fady Anwar\"},\"logo\":{\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a9172040bbc3bbe24fb49d59dac20da030af1f5ff628126c979a1d4b71eaed41?s=96&d=mm&r=g\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Setting Up Jellyfin to Stream Your Azure-Backed Media Collection - Fady Anwar","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/fadyanwar.com\/index.php\/2025\/06\/04\/setting-up-jellyfin-to-stream-your-azure-backed-media-collection\/","og_locale":"en_US","og_type":"article","og_title":"Setting Up Jellyfin to Stream Your Azure-Backed Media Collection - Fady Anwar","og_description":"In my previous guide, I covered how to mount Azure Files on Linux and set up automated backups using rsync. While having your media files safely stored in the cloud is essential, you also need a way to access and enjoy that content. This is where Jellyfin comes in \u2013 a fantastic open-source media server [&hellip;]","og_url":"https:\/\/fadyanwar.com\/index.php\/2025\/06\/04\/setting-up-jellyfin-to-stream-your-azure-backed-media-collection\/","og_site_name":"Fady Anwar","article_published_time":"2025-06-04T00:37:28+00:00","article_modified_time":"2025-06-04T00:51:51+00:00","og_image":[{"width":1920,"height":937,"url":"https:\/\/fadyanwar.com\/wp-content\/uploads\/2025\/06\/Screenshot-from-2025-06-04-01-30-39.png","type":"image\/png"}],"author":"Fady Anwar","twitter_card":"summary_large_image","twitter_creator":"@fadyanwar","twitter_site":"@fadyanwar","twitter_misc":{"Written by":"Fady Anwar","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/fadyanwar.com\/index.php\/2025\/06\/04\/setting-up-jellyfin-to-stream-your-azure-backed-media-collection\/#article","isPartOf":{"@id":"https:\/\/fadyanwar.com\/index.php\/2025\/06\/04\/setting-up-jellyfin-to-stream-your-azure-backed-media-collection\/"},"author":{"name":"Fady Anwar","@id":"https:\/\/fadyanwar.com\/#\/schema\/person\/b66e3277ceba346f7053a83464e90b03"},"headline":"Setting Up Jellyfin to Stream Your Azure-Backed Media Collection","datePublished":"2025-06-04T00:37:28+00:00","dateModified":"2025-06-04T00:51:51+00:00","mainEntityOfPage":{"@id":"https:\/\/fadyanwar.com\/index.php\/2025\/06\/04\/setting-up-jellyfin-to-stream-your-azure-backed-media-collection\/"},"wordCount":591,"commentCount":0,"publisher":{"@id":"https:\/\/fadyanwar.com\/#\/schema\/person\/b66e3277ceba346f7053a83464e90b03"},"image":{"@id":"https:\/\/fadyanwar.com\/index.php\/2025\/06\/04\/setting-up-jellyfin-to-stream-your-azure-backed-media-collection\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/fadyanwar.com\/wp-content\/uploads\/2025\/06\/Screenshot-from-2025-06-04-01-30-39.png?fit=1920%2C937&ssl=1","articleSection":["Technology"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/fadyanwar.com\/index.php\/2025\/06\/04\/setting-up-jellyfin-to-stream-your-azure-backed-media-collection\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/fadyanwar.com\/index.php\/2025\/06\/04\/setting-up-jellyfin-to-stream-your-azure-backed-media-collection\/","url":"https:\/\/fadyanwar.com\/index.php\/2025\/06\/04\/setting-up-jellyfin-to-stream-your-azure-backed-media-collection\/","name":"Setting Up Jellyfin to Stream Your Azure-Backed Media Collection - Fady Anwar","isPartOf":{"@id":"https:\/\/fadyanwar.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/fadyanwar.com\/index.php\/2025\/06\/04\/setting-up-jellyfin-to-stream-your-azure-backed-media-collection\/#primaryimage"},"image":{"@id":"https:\/\/fadyanwar.com\/index.php\/2025\/06\/04\/setting-up-jellyfin-to-stream-your-azure-backed-media-collection\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/fadyanwar.com\/wp-content\/uploads\/2025\/06\/Screenshot-from-2025-06-04-01-30-39.png?fit=1920%2C937&ssl=1","datePublished":"2025-06-04T00:37:28+00:00","dateModified":"2025-06-04T00:51:51+00:00","breadcrumb":{"@id":"https:\/\/fadyanwar.com\/index.php\/2025\/06\/04\/setting-up-jellyfin-to-stream-your-azure-backed-media-collection\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/fadyanwar.com\/index.php\/2025\/06\/04\/setting-up-jellyfin-to-stream-your-azure-backed-media-collection\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/fadyanwar.com\/index.php\/2025\/06\/04\/setting-up-jellyfin-to-stream-your-azure-backed-media-collection\/#primaryimage","url":"https:\/\/i0.wp.com\/fadyanwar.com\/wp-content\/uploads\/2025\/06\/Screenshot-from-2025-06-04-01-30-39.png?fit=1920%2C937&ssl=1","contentUrl":"https:\/\/i0.wp.com\/fadyanwar.com\/wp-content\/uploads\/2025\/06\/Screenshot-from-2025-06-04-01-30-39.png?fit=1920%2C937&ssl=1","width":1920,"height":937},{"@type":"BreadcrumbList","@id":"https:\/\/fadyanwar.com\/index.php\/2025\/06\/04\/setting-up-jellyfin-to-stream-your-azure-backed-media-collection\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/fadyanwar.com\/"},{"@type":"ListItem","position":2,"name":"Setting Up Jellyfin to Stream Your Azure-Backed Media Collection"}]},{"@type":"WebSite","@id":"https:\/\/fadyanwar.com\/#website","url":"https:\/\/fadyanwar.com\/","name":"Fady Anwar","description":"","publisher":{"@id":"https:\/\/fadyanwar.com\/#\/schema\/person\/b66e3277ceba346f7053a83464e90b03"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/fadyanwar.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/fadyanwar.com\/#\/schema\/person\/b66e3277ceba346f7053a83464e90b03","name":"Fady Anwar","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/a9172040bbc3bbe24fb49d59dac20da030af1f5ff628126c979a1d4b71eaed41?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/a9172040bbc3bbe24fb49d59dac20da030af1f5ff628126c979a1d4b71eaed41?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a9172040bbc3bbe24fb49d59dac20da030af1f5ff628126c979a1d4b71eaed41?s=96&d=mm&r=g","caption":"Fady Anwar"},"logo":{"@id":"https:\/\/secure.gravatar.com\/avatar\/a9172040bbc3bbe24fb49d59dac20da030af1f5ff628126c979a1d4b71eaed41?s=96&d=mm&r=g"}}]}},"jetpack_featured_media_url":"https:\/\/i0.wp.com\/fadyanwar.com\/wp-content\/uploads\/2025\/06\/Screenshot-from-2025-06-04-01-30-39.png?fit=1920%2C937&ssl=1","jetpack_sharing_enabled":true,"post_mailing_queue_ids":[],"_links":{"self":[{"href":"https:\/\/fadyanwar.com\/index.php\/wp-json\/wp\/v2\/posts\/2863","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/fadyanwar.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/fadyanwar.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/fadyanwar.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/fadyanwar.com\/index.php\/wp-json\/wp\/v2\/comments?post=2863"}],"version-history":[{"count":4,"href":"https:\/\/fadyanwar.com\/index.php\/wp-json\/wp\/v2\/posts\/2863\/revisions"}],"predecessor-version":[{"id":2869,"href":"https:\/\/fadyanwar.com\/index.php\/wp-json\/wp\/v2\/posts\/2863\/revisions\/2869"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/fadyanwar.com\/index.php\/wp-json\/wp\/v2\/media\/2865"}],"wp:attachment":[{"href":"https:\/\/fadyanwar.com\/index.php\/wp-json\/wp\/v2\/media?parent=2863"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/fadyanwar.com\/index.php\/wp-json\/wp\/v2\/categories?post=2863"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/fadyanwar.com\/index.php\/wp-json\/wp\/v2\/tags?post=2863"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}