Media server: Difference between revisions

From 太極
Jump to navigation Jump to search
(Created page with "The page is most likely designed for Raspberry Pi although the software can be installed on regular linux box too. = MiniDLNA/Upnp = * http://www.instructables.com/id/Raspber...")
 
 
(9 intermediate revisions by the same user not shown)
Line 1: Line 1:
The page is most likely designed for Raspberry Pi although the software can be installed on regular linux box too.
The page is most likely designed for Raspberry Pi although the software can be installed on regular linux box too.
= Macast =
* https://github.com/xfangfang/Macast
* [https://www.linuxuprising.com/2021/09/macast-dlna-media-renderer-easily-cast.html Macast DLNA Media Renderer: Easily Cast Videos, Music And Pictures From A Phone To Your Computer]


= MiniDLNA/Upnp =
= MiniDLNA/Upnp =
* http://www.instructables.com/id/Raspberry-Pi-Media-Server-MiniDLNA/
* [https://www.makeuseof.com/tag/dlna-still-used/ What Is DLNA and Is It Still Used?] DLNA Is on Its Way Out!
* http://www.instructables.com/id/Raspberry-Pi-Media-Server-MiniDLNA/?ALLSTEPS
* http://bbrks.me/rpi-minidlna-media-server/
* http://bbrks.me/rpi-minidlna-media-server/
* https://help.ubuntu.com/community/MiniDLNA
* https://everbit.wordpress.com/2013/04/01/minidlna-on-the-raspberry-pi/
<syntaxhighlight lang="bash">
sudo apt-get install minidlna
sudo nano /etc/fstab
sudo nano /etc/minidlna.conf
sudo service minidlna restart
minidlna -R  # refresh database
sudo service minidlna force-reload
</syntaxhighlight>
The setup took only 5 minutes.
Note that each subfolders under '''media_dir''' has to have a mode 775.
On Android BubbleUPnP, Go to Library > Your DLNA. Media -> Pictures -> Folders or Media -> Video -> Folders. The streaming is smooth compared to using say VLC/ES File Explorer to play media files.
Minidlna can not sync media files automatically. We need to run cron jobs to achieve it.
If we want to remove minidlna, we run
<pre>
sudo apt-get remove --auto-remove minidlna
</pre>


= Plex =
= Plex =
* [[Linux#PLEX|Local link]]
* http://www.htpcguides.com/raspberry-pi-2-home-media-server-installer-image/
* http://www.htpcguides.com/raspberry-pi-2-home-media-server-installer-image/
= Universal Media Server =
* [https://www.universalmediaserver.com/ Universal Media Server]
* [https://steamforge.net/wiki/index.php/How_to_setup_Universal_Media_Server_8.0.1_under_Ubuntu_18.04 How to setup Universal Media Server 8.0.1 under Ubuntu 18.04]
= Photo Album =
using [http://lychee.electerious.com/ Lychee], a free photo-management tool, which runs on your server or web-space.
* http://www.pihomeserver.fr/en/2014/01/23/raspberry-pi-home-server-heberger-toutes-vos-photos/

Latest revision as of 13:31, 6 April 2022

The page is most likely designed for Raspberry Pi although the software can be installed on regular linux box too.

Macast

MiniDLNA/Upnp

sudo apt-get install minidlna
sudo nano /etc/fstab
sudo nano /etc/minidlna.conf
sudo service minidlna restart
minidlna -R  # refresh database
sudo service minidlna force-reload

The setup took only 5 minutes.

Note that each subfolders under media_dir has to have a mode 775.

On Android BubbleUPnP, Go to Library > Your DLNA. Media -> Pictures -> Folders or Media -> Video -> Folders. The streaming is smooth compared to using say VLC/ES File Explorer to play media files.

Minidlna can not sync media files automatically. We need to run cron jobs to achieve it.

If we want to remove minidlna, we run

sudo apt-get remove --auto-remove minidlna

Plex

Universal Media Server

Photo Album

using Lychee, a free photo-management tool, which runs on your server or web-space.