From 4cb983331d1d8cbb3565aadec9e82fb1e04d6235 Mon Sep 17 00:00:00 2001 From: MichaIng Date: Sat, 21 Sep 2024 16:16:45 +0200 Subject: [PATCH] Add ReadyMedia config docs --- docs/software/media.md | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/docs/software/media.md b/docs/software/media.md index c4cecab16..78fae979f 100644 --- a/docs/software/media.md +++ b/docs/software/media.md @@ -673,12 +673,21 @@ Stream your shared media to any DLNA/UPnP capable device. ![ReadyMedia logo](../assets/images/dietpi-software-media-readymedia.jpg){: width="351" height="341" loading="lazy"} -=== "Access to ReadyMedia status" +=== "Access to the web interface" The web interface is accessible via port **8200**: - URL: `http://:8200` +=== "Configuration" + + You can configure ReadyMedia with its config file: `/etc/minidlna.conf` + To apply changes, restart the service: + + ```sh + systemctl restart minidlna + ``` + === "Transfer media files to DietPi" Make sure you have one of DietPi's [File Servers](file_servers.md) installed. @@ -688,12 +697,13 @@ Stream your shared media to any DLNA/UPnP capable device. - Video: `/mnt/dietpi_userdata/Video`, `/Video` from NFS/Samba - Images: `/mnt/dietpi_userdata/Pictures`, `/Pictures` from NFS/Samba -=== "Refresh the ReadyMedia database" +=== "Refresh the database" - The database can be refreshed with this command: + The database can be refreshed with these commands: ```sh - rm -r /mnt/dietpi_userdata/.MiniDLNA_Cache/* && systemctl restart minidlna + rm -R /mnt/dietpi_userdata/.MiniDLNA_Cache/* + systemctl restart minidlna ``` ***