mirror of
https://github.com/9001/copyparty.git
synced 2025-08-16 16:42:13 -06:00
update pypi description + docker links
This commit is contained in:
parent
6c0987d4d0
commit
5e7c3defe3
|
@ -1,5 +1,5 @@
|
|||
copyparty is availabe in these repos:
|
||||
* https://hub.docker.com/r/copyparty
|
||||
* https://hub.docker.com/u/copyparty
|
||||
* https://github.com/9001?tab=packages&repo_name=copyparty
|
||||
|
||||
|
||||
|
@ -32,13 +32,13 @@ the recommended way to configure copyparty inside a container is to mount a fold
|
|||
|
||||
with image size after installation and when gzipped
|
||||
|
||||
* `min` (57 MiB, 20 gz) is just copyparty itself
|
||||
* `im` (70 MiB, 25 gz) can thumbnail images with pillow, parse media files with mutagen
|
||||
* `ac` (163 MiB, 56 gz) is `im` plus ffmpeg for video/audio thumbs + audio transcoding + better tags
|
||||
* `iv` (211 MiB, 73 gz) is `ac` plus vips for faster heif / avic / jxl thumbnails
|
||||
* `dj` (309 MiB, 104 gz) is `iv` plus beatroot/keyfinder to detect musical keys and bpm
|
||||
* [`min` (57 MiB, 20 gz)](https://hub.docker.com/r/copyparty/min) is just copyparty itself
|
||||
* [`im` (70 MiB, 25 gz)](https://hub.docker.com/r/copyparty/im) can thumbnail images with pillow, parse media files with mutagen
|
||||
* [`ac` (163 MiB, 56 gz)](https://hub.docker.com/r/copyparty/ac) is `im` plus ffmpeg for video/audio thumbs + audio transcoding + better tags
|
||||
* [`iv` (211 MiB, 73 gz)](https://hub.docker.com/r/copyparty/iv) is `ac` plus vips for faster heif / avic / jxl thumbnails
|
||||
* [`dj` (309 MiB, 104 gz)](https://hub.docker.com/r/copyparty/dj) is `iv` plus beatroot/keyfinder to detect musical keys and bpm
|
||||
|
||||
`ac` is recommended since the additional features available in `iv` and `dj` are rarely useful
|
||||
[`ac` is recommended](https://hub.docker.com/r/copyparty/ac) since the additional features available in `iv` and `dj` are rarely useful
|
||||
|
||||
|
||||
## detecting bpm and musical key
|
||||
|
|
7
setup.py
7
setup.py
|
@ -4,7 +4,6 @@ from __future__ import print_function
|
|||
|
||||
import os
|
||||
import sys
|
||||
import subprocess as sp
|
||||
from shutil import rmtree
|
||||
from setuptools import setup, Command
|
||||
|
||||
|
@ -78,7 +77,11 @@ class clean2(Command):
|
|||
args = {
|
||||
"name": NAME,
|
||||
"version": about["__version__"],
|
||||
"description": "http file sharing hub",
|
||||
"description": (
|
||||
"Portable file server with accelerated resumable uploads, "
|
||||
+ "deduplication, WebDAV, FTP, zeroconf, media indexer, "
|
||||
+ "video thumbnails, audio transcoding, and write-only folders"
|
||||
),
|
||||
"long_description": long_description,
|
||||
"long_description_content_type": "text/markdown",
|
||||
"author": "ed",
|
||||
|
|
Loading…
Reference in a new issue