This repository has been archived by the owner on Jun 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Added basic support for RClone cache - Added config check to install script - Added dependency handling - Added install function - Added mount function - Added RClone cache config option - Added RClone remove config option - Added unmount function - Changed /tmp/plexus directories to $HOME/.plexus to maintain data - [Encode] All streams now get converted, not just the first video and first audio streams/ - Improved colour use throughout program - Improved config file check to download a new version if one doesn't currently exist - Increased default CRF value from 18 to 20 - Made install script quieter - Removed RClone check from install script - Removed unzip dependency from install script
- Loading branch information
Robert Thomas
committed
Sep 26, 2018
1 parent
f793c5c
commit d0436e7
Showing
8 changed files
with
1,341 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
audio_codec="aac" | ||
convert_dir="/tmp/plexus/encode/convert" | ||
converted_dir="/tmp/plexus/encode/converted" | ||
convert_dir="$HOME/.plexus/encode/convert" | ||
converted_dir="$HOME/.plexus/encode/converted" | ||
ffmpeg_preset="faster" | ||
list_file="/tmp/plexus/list.txt" | ||
list_file="$HOME/.plexus/list.txt" | ||
media_dir="/mnt/plexdrive" | ||
rclone_cache="Cache:" | ||
rclone_remote="GDrive:" | ||
video_codec="h264" | ||
video_library="libx264" |
Oops, something went wrong.