Skip to content

YvGuo-YY/MediaServer

Repository files navigation

                                              __                                          
                                             /\ \__                                       
 _____      __      __       ___     __  __  \ \ ,_\             ___       __       ____  
/\ '__`\  /'__`\  /'__`\   /' _ `\  /\ \/\ \  \ \ \/   _______ /' _ `\   /'__`\    /',__\ 
\ \ \L\ \/\  __/ /\ \L\.\_ /\ \/\ \ \ \ \_\ \  \ \ \_ /\______\/\ \/\ \ /\ \L\.\_ /\__, `\
 \ \ ,__/\ \____\\ \__/.\_\\ \_\ \_\ \ \____/   \ \__\\/______/\ \_\ \_\\ \__/.\_\\/\____/
  \ \ \/  \/____/ \/__/\/_/ \/_/\/_/  \/___/     \/__/          \/_/\/_/ \/__/\/_/ \/___/ 
   \ \_\                                                                                  
    \/_/                                                       build.2021.7.31 by 花生酱啊

MediaServer

(树莓派)流媒体服务器

1. install media-server

git clone https://github.com/PPeanutButter/MediaServer.git

image-20210719174638882

2.Configuration

2.1 edit user.json to add a user with password
{"name": "password", "ip": []}
2.2 mark a dir as a media dir
# Add a cover image (a .cover file) to a TV series folder
# S01|E01.mkv
#    |E02.mkv
#    |.cover (jpg, png, webp. whatever)
2.3 start server with specific dir such
# assume your hard driver is mounted to /media/pi/NAS500
# to support run on start, add to screen script.
sudo python3 app.py /media/pi/NAS500
# open http://localhost/
2.4 no media showed?
# The media dir structure should be something like below
# NAS500|
# 		xxS01|E01.mkv
# 		     |E02.mkv
# 		     |.cover (jpg, png, webp. whatever)
# 		xxS02|E01.mkv
# 		     |E02.mkv
# 		     |.cover (jpg, png, webp. whatever)
#		xxxS01|E01.mkv
# 		      |E02.mkv
# 		      |.cover (jpg, png, webp. whatever)

3. remote download support (Optional)

image-20210719180812544

# you can remote download a file to your raspberry.
sudo apt-get install aria2
2.1 edit aria2.conf
# set download dir
dir=/media/pi/NAS500/Download
# where to save and load aria2 session
# session file must be created (by
# touch /home/pi/Program/MediaServer/aria2.session)
input-file=/home/pi/Program/MediaServer/aria2.session
save-session=/home/pi/Program/MediaServer/aria2.session
# important
rpc-secret=<your secret key>
2.3 start aria2 server
# to support run on start, add to screen script.
aria2c --conf-path=path.to.your.aria2.conf
# open http://localhost/download or from http://localhost/ click download button
2.3 aria2 service connect error?
# open setting, the JSON-RPC Path should be
# ws://token:<your secret key>@<your server ip>:6800/jsonrpc