|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | + <head> |
| 4 | + <title>Plexus Suite | Documentation</title> |
| 5 | + <meta charset="utf-8"> |
| 6 | + <meta http-equiv="X-UA-Compatible" content="IE=edge"> |
| 7 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 8 | + <meta name="description" content=""> |
| 9 | + <meta name="author" content=""> |
| 10 | + <link rel="shortcut icon" href="favicon.ico"> |
| 11 | + <link href='http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800' rel='stylesheet' type='text/css'> |
| 12 | + <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.6/css/bootstrap.min.css"> |
| 13 | + <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> |
| 14 | + <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/prism/1.15.0/themes/prism-okaidia.min.css"> |
| 15 | + <link id="theme-style" rel="stylesheet" href="/assets/css/styles.css"> |
| 16 | + <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script><![endif]--> |
| 17 | + </head> |
| 18 | + <body class="body-orange"> |
| 19 | + <div class="page-wrapper"> |
| 20 | + <header id="header" class="header"> |
| 21 | + <div class="container"> |
| 22 | + <div class="branding"> |
| 23 | + <h1 class="logo"> <a href="/"> <span aria-hidden="true" class="icon_documents_alt icon"></span> <span class="text-highlight">Plexus</span><span class="text-bold">Suite</span> </a> </h1> |
| 24 | + </div> |
| 25 | + <ol class="breadcrumb"> |
| 26 | + <li class="active"><a href="/">Home</a></li> |
| 27 | + <li><a href="/help">Help</a></li> |
| 28 | + <li><a href="/versions">Versions</a></li> |
| 29 | + </ol> |
| 30 | + </div> |
| 31 | + </header> |
| 32 | + <div class="doc-wrapper"> |
| 33 | + <div class="container"> |
| 34 | + <div id="doc-header" class="doc-header text-center"> |
| 35 | + <h1 class="doc-title"><i class="icon fa fa-share"></i> Plexus Suite v0.6</h1> |
| 36 | + <div class="meta"><i class="fa fa-clock-o"></i> Last updated: June 25th, 2018</div> |
| 37 | + </div> |
| 38 | + <div class="doc-body"> |
| 39 | + <div class="doc-content"> |
| 40 | + <div class="content-inner"> |
| 41 | + <section id="about-section" class="doc-section"> |
| 42 | + <h2 class="section-title">About</h2> |
| 43 | + <div class="section-block"> |
| 44 | + <p>Plexus is a suite of easy-to-use tools to help manage your media collection. You can build a list of media within your collection which is incorrectly encoded, and then re-encode all of that media automatically. Plexus also integrates smoothly with RClone.</p><br><p>I created this suite because I knew that I would need a simple CLI solution to re-encoding all of my media at some point in the future, and no other solution met my requirements.</p><br><p>Thank you to <a href="https://github.com/masonr" target="_blank">Mason Rowe</a> for the advice and starting scripts.</p><br><p><strong><a href="https://github.com/Wolveix" target="_blank">Robert Thomas</a> - <a href="https://robt.me" target="_blank">Managing Director & Lead Software Developer</a> at <a href="https://arcruy.com" target="_blank">Arcruy</a></strong></p> |
| 45 | + </div> |
| 46 | + </section> |
| 47 | + <section id="installation-section" class="doc-section"> |
| 48 | + <h2 class="section-title">Installation</h2> |
| 49 | + <div id="installation-automatic" class="section-block"> |
| 50 | + <h3 class="block-title">Automatic</h3> |
| 51 | + <p>You can automatically install Plexus by running the following line via a supported command line interface: </p> |
| 52 | + <p><code>curl https://plexus.robt.me/install.sh | sudo bash</code></p> |
| 53 | + </div> |
| 54 | + <div id="installation-manual" class="section-block"> |
| 55 | + <h3 class="block-title">Manual</h3> |
| 56 | + <p>Alternatively, you can manually install Plexus to a custom location on your device.</p> |
| 57 | + <br> |
| 58 | + <p>Install any missing dependencies and create all of the temporary folders required:</p> |
| 59 | + <p><code>sudo apt-get install curl ffmpeg unzip -y</code></p> |
| 60 | + <p><code>mkdir -p /mnt/plexus /tmp/plexus /tmp/plexus/encode /tmp/plexus/encode/convert /tmp/plexus/encode/converted /tmp/plexus/rclone</code></p> |
| 61 | + <br> |
| 62 | + <p>Next, download the executable itself:</p> |
| 63 | + <p><code>curl -O https://plexus.robt.me/versions/releases/latest/plexus</code></p> |
| 64 | + <br> |
| 65 | + <p>Finally, correct the file permissions and move it into your respective operating system's application directory. The following example is for Linux:</p> |
| 66 | + <p><code>chmod u+x plexus && chmod 755 plexus</code></p> |
| 67 | + <p><code>sudo chown root:root plexus</code></p> |
| 68 | + <p><code>sudo mv plexus /usr/bin/plexus</code></p> |
| 69 | + <br> |
| 70 | + <h3>That's it!</h3> |
| 71 | + <p>The automated script checks for an RClone installation too as Plexus natively supports it. To install RClone:</p> |
| 72 | + <p><code>curl https://rclone.org/install.sh | sudo bash</code></p> |
| 73 | + </div> |
| 74 | + </section> |
| 75 | + </div> |
| 76 | + </div> |
| 77 | + <div class="doc-sidebar hidden-xs"> |
| 78 | + <nav id="doc-nav"> |
| 79 | + <ul id="doc-menu" class="nav doc-menu" data-spy="affix"> |
| 80 | + <li><a class="scrollto" href="#about-section">About</a></li> |
| 81 | + <li> |
| 82 | + <a class="scrollto" href="#installation-section">Installation</a> |
| 83 | + <ul class="nav doc-sub-menu"> |
| 84 | + <li><a class="scrollto" href="#installation-automatic">Automatic</a></li> |
| 85 | + <li><a class="scrollto" href="#installation-manual">Manual</a></li> |
| 86 | + </ul> |
| 87 | + </li> |
| 88 | + </ul> |
| 89 | + </nav> |
| 90 | + </div> |
| 91 | + </div> |
| 92 | + </div> |
| 93 | + </div> |
| 94 | + </div> |
| 95 | + <footer id="footer" class="footer text-center"> |
| 96 | + <div class="container"> <small class="copyright">App developed by <a href="https://github.com/Wolveix" target="_blank">Robert Thomas</a> | Site template designed by <a href="http://themes.3rdwavemedia.com/" targe="_blank">Xiaoying Riley</a></small> </div> |
| 97 | + </footer> |
| 98 | + <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.12.3/jquery.min.js"></script> <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.6/js/bootstrap.min.js"></script> <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.15.0/prism.min.js"></script> <script type="text/javascript" src="https://cdn.jsdelivr.net/npm/jquery.scrollto@2.1.2/jquery.scrollTo.min.js"></script> <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery.matchHeight/0.7.2/jquery.matchHeight-min.js"></script> <script type="text/javascript" src="/assets/js/main.js"></script> |
| 99 | + </body> |
| 100 | +</html> |
0 commit comments