mirror of
https://git.lecygnenoir.info/LecygneNoir/prismedia.git
synced 2025-10-04 01:49:15 +02:00
Remove mt option as it's not useful anymore
This commit is contained in:
parent
08416d2796
commit
3797c9a9f0
4 changed files with 7 additions and 9 deletions
|
@ -1,5 +1,10 @@
|
|||
# Changelog
|
||||
|
||||
## v0.6.1-1 Hotfix
|
||||
This fix prepares the python3 compatibility
|
||||
|
||||
- Remove mastodon tags (mt) options as it's deprecated. Compatibility between Peertube and Mastodon is complete.
|
||||
|
||||
## v0.6.1
|
||||
|
||||
### Fixes
|
||||
|
|
|
@ -135,9 +135,6 @@ def upload_video(oauth, secret, options):
|
|||
if len(strtag) >= 30:
|
||||
logging.warning("Peertube: Sorry, Peertube does not support tag with more than 30 characters, please reduce your tag size")
|
||||
exit(1)
|
||||
# If Mastodon compatibility is enabled, clean tags from special characters
|
||||
if options.get('--mt'):
|
||||
strtag = utils.cleanString(strtag)
|
||||
fields.append(("tags", strtag))
|
||||
|
||||
if options.get('--category'):
|
||||
|
|
|
@ -12,7 +12,6 @@ description = Your complete video description
|
|||
should be wrote with a blank space
|
||||
at the beginning of the line :)
|
||||
tags = list of tags, comma separated
|
||||
mt = True
|
||||
category = Films
|
||||
cca = True
|
||||
privacy = private
|
||||
|
|
|
@ -6,7 +6,7 @@ prismedia_upload - tool to upload videos to Peertube and Youtube
|
|||
|
||||
Usage:
|
||||
prismedia_upload.py --file=<FILE> [options]
|
||||
prismedia_upload.py -f <FILE> --tags=STRING [--mt options]
|
||||
prismedia_upload.py -f <FILE> --tags=STRING [options]
|
||||
prismedia_upload.py -h | --help
|
||||
prismedia_upload.py --version
|
||||
|
||||
|
@ -18,8 +18,6 @@ Options:
|
|||
WARN: tags with space and special characters (!, ', ", ?, ...)
|
||||
are not supported by Mastodon to be published from Peertube
|
||||
use mastodon compatibility below
|
||||
--mt Force Mastodon compatibility for tags (drop every incompatible characters inside tags)
|
||||
This option requires --tags
|
||||
-c, --category=STRING Category for the videos, see below. (default: Films)
|
||||
--cca License should be CreativeCommon Attribution (affects Youtube upload only)
|
||||
-p, --privacy=STRING Choose between public, unlisted or private. (default: private)
|
||||
|
@ -94,7 +92,7 @@ except ImportError:
|
|||
'see https://github.com/ahupp/python-magic\n')
|
||||
exit(1)
|
||||
|
||||
VERSION = "prismedia v0.6.1"
|
||||
VERSION = "prismedia v0.6.1-1"
|
||||
|
||||
VALID_PRIVACY_STATUSES = ('public', 'private', 'unlisted')
|
||||
VALID_CATEGORIES = (
|
||||
|
@ -187,7 +185,6 @@ if __name__ == '__main__':
|
|||
lambda x: not x.isdigit(),
|
||||
error="Tags should be a string")
|
||||
),
|
||||
Optional('--mt'): bool,
|
||||
Optional('--category'): Or(None, And(
|
||||
str,
|
||||
validateCategory,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue