From 4ad28df08bbad68e1abb973d8af3f596b737f721 Mon Sep 17 00:00:00 2001 From: et0h Date: Mon, 11 May 2020 14:41:43 +0100 Subject: [PATCH] Move to JSON IPC API for mpv using iwaltons3's library (#261) --- syncplay/constants.py | 4 +- syncplay/players/mpv.py | 123 ++- syncplay/resources/syncplayintf.lua | 12 + syncplay/resources/third-party-notices.rtf | 952 ++++++++++----------- 4 files changed, 557 insertions(+), 534 deletions(-) diff --git a/syncplay/constants.py b/syncplay/constants.py index 7cde152..3d64be2 100755 --- a/syncplay/constants.py +++ b/syncplay/constants.py @@ -236,7 +236,7 @@ USERLIST_GUI_FILENAME_COLUMN = 3 MPLAYER_SLAVE_ARGS = ['-slave', '--hr-seek=always', '-nomsgcolor', '-msglevel', 'all=1:global=4:cplayer=4', '-af-add', 'scaletempo'] MPV_ARGS = ['--force-window', '--idle', '--hr-seek=always', '--keep-open'] -MPV_SLAVE_ARGS = ['--msg-level=all=error,cplayer=info,term-msg=info', '--input-terminal=no', '--input-file=/dev/stdin'] +MPV_SLAVE_ARGS = ['--msg-level=all=error,cplayer=info,term-msg=info', '--input-terminal=no'] MPV_SLAVE_ARGS_NEW = ['--term-playing-msg=\nANS_filename=${filename}\nANS_length=${=duration:${=length:0}}\nANS_path=${path}\n', '--terminal=yes'] MPV_NEW_VERSION = False MPV_OSC_VISIBILITY_CHANGE_VERSION = False @@ -261,7 +261,7 @@ VLC_SLAVE_ARGS = ['--extraintf=luaintf', '--lua-intf=syncplay', '--no-quiet', '- VLC_SLAVE_EXTRA_ARGS = getValueForOS({ OS_DEFAULT: ['--no-one-instance', '--no-one-instance-when-started-from-file'], OS_MACOS: ['--verbose=2', '--no-file-logging']}) -MPV_SUPERSEDE_IF_DUPLICATE_COMMANDS = ["no-osd set time-pos ", "loadfile "] +MPV_SUPERSEDE_IF_DUPLICATE_COMMANDS = ["set_property time-pos ", "loadfile "] MPV_REMOVE_BOTH_IF_DUPLICATE_COMMANDS = ["cycle pause"] MPLAYER_ANSWER_REGEX = "^ANS_([a-zA-Z_-]+)=(.+)$|^(Exiting)\.\.\. \((.+)\)$" VLC_ANSWER_REGEX = r"(?:^(?P[a-zA-Z_]+)(?:\: )?(?P.*))" diff --git a/syncplay/players/mpv.py b/syncplay/players/mpv.py index d7af9c3..eb03d04 100755 --- a/syncplay/players/mpv.py +++ b/syncplay/players/mpv.py @@ -6,15 +6,16 @@ import time import subprocess import threading import ast +import random from syncplay import constants from syncplay.messages import getMessage from syncplay.utils import isURL, findResourcePath from syncplay.utils import isMacOS, isWindows, isASCII +from syncplay.players.python_mpv_jsonipc.python_mpv_jsonipc import MPV from syncplay.players.basePlayer import BasePlayer - class MpvPlayer(BasePlayer): RE_VERSION = re.compile(r'.*mpv (\d+)\.(\d+)\.\d+.*') osdMessageSeparator = "\\n" @@ -53,7 +54,7 @@ class MpvPlayer(BasePlayer): return MpvPlayer(client, MpvPlayer.getExpandedPath(playerPath), filePath, args) @staticmethod - def getStartupArgs(path, userArgs): + def getStartupArgs(path, userArgs, socketName=None): args = constants.MPV_ARGS if userArgs: args.extend(userArgs) @@ -61,6 +62,9 @@ class MpvPlayer(BasePlayer): if constants.MPV_NEW_VERSION: args.extend(constants.MPV_SLAVE_ARGS_NEW) args.extend(["--script={}".format(findResourcePath("syncplayintf.lua"))]) + if socketName: + args.extend((["--input-ipc-server={}".format(socketName)])) + print(args) return args @staticmethod @@ -103,7 +107,7 @@ class MpvPlayer(BasePlayer): return None def _setProperty(self, property_, value): - self._listener.sendLine("no-osd set {} {}".format(property_, value)) + self._listener.sendLine(["set_property", property_, value]) def mpvErrorCheck(self, line): if "Error parsing option" in line or "Error parsing commandline option" in line: @@ -116,37 +120,27 @@ class MpvPlayer(BasePlayer): if constants and any(errormsg in line for errormsg in constants.MPV_ERROR_MESSAGES_TO_REPEAT): self._client.ui.showErrorMessage(line) - - def oldDisplayMessage( - self, message, - duration=(constants.OSD_DURATION * 1000), OSDType=constants.OSD_NOTIFICATION, - mood=constants.MESSAGE_NEUTRAL - ): - messageString = self._sanitizeText(message.replace("\\n", "")).replace("", "\\n") - self._listener.sendLine('{} "{!s}" {} {}'.format( - self.OSD_QUERY, messageString, duration, constants.MPLAYER_OSD_LEVEL)) - def displayMessage(self, message, duration=(constants.OSD_DURATION * 1000), OSDType=constants.OSD_NOTIFICATION, mood=constants.MESSAGE_NEUTRAL): if not self._client._config["chatOutputEnabled"]: - self.oldDisplayMessage(self, message=message, duration=duration, OSDType=OSDType, mood=mood) + messageString = self._sanitizeText(message.replace("\\n", "")).replace("", "\\n") + self._listener.mpvpipe.show_text(messageString, duration, constants.MPLAYER_OSD_LEVEL) return messageString = self._sanitizeText(message.replace("\\n", "")).replace( "\\\\", constants.MPV_INPUT_BACKSLASH_SUBSTITUTE_CHARACTER).replace("", "\\n") - self._listener.sendLine('script-message-to syncplayintf {}-osd-{} "{}"'.format(OSDType, mood, messageString)) + self._listener.sendLine(["script-message-to", "syncplayintf", "{}-osd-{}".format(OSDType, mood), messageString]) def displayChatMessage(self, username, message): if not self._client._config["chatOutputEnabled"]: messageString = "<{}> {}".format(username, message) messageString = self._sanitizeText(messageString.replace("\\n", "")).replace("", "\\n") duration = int(constants.OSD_DURATION * 1000) - self._listener.sendLine('{} "{!s}" {} {}'.format( - self.OSD_QUERY, messageString, duration, constants.MPLAYER_OSD_LEVEL)) + self._listener.mpvpipe.show_text(messageString, duration, constants.MPLAYER_OSD_LEVEL) return username = self._sanitizeText(username.replace("\\", constants.MPV_INPUT_BACKSLASH_SUBSTITUTE_CHARACTER)) message = self._sanitizeText(message.replace("\\", constants.MPV_INPUT_BACKSLASH_SUBSTITUTE_CHARACTER)) messageString = "<{}> {}".format(username, message) - self._listener.sendLine('script-message-to syncplayintf chat "{}"'.format(messageString)) + self._listener.sendLine(["script-message-to", "syncplayintf", "chat", messageString]) def setSpeed(self, value): self._setProperty('speed', "{:.2f}".format(value)) @@ -178,7 +172,7 @@ class MpvPlayer(BasePlayer): propertyID = '=duration:${=length:0}' else: propertyID = property_ - self._listener.sendLine("print_text ""ANS_{}=${{{}}}""".format(property_, propertyID)) + self._listener.sendLine(["print_text", '"ANS_{}=${{{}}}"'.format(property_, propertyID)]) def getCalculatedPosition(self): if self.fileLoaded == False: @@ -214,6 +208,10 @@ class MpvPlayer(BasePlayer): return self._position def _storePosition(self, value): + if value is None: + self._client.ui.showDebugMessage("NONE TYPE POSITION!") + return + if self._client.isPlayingMusic() and self._paused == False and self._position == value and abs(self._position-self._position) < 0.5: self._client.ui.showDebugMessage("EOF DETECTED!") self._position = 0 @@ -223,17 +221,25 @@ class MpvPlayer(BasePlayer): self._client.ui.showDebugMessage("Recently reset, so storing position as 0") self._position = 0 elif self._fileIsLoaded() or (value < constants.MPV_NEWFILE_IGNORE_TIME and self._fileIsLoaded(ignoreDelay=True)): + old_position = float(self._position) self._position = max(value, 0) + #self._client.ui.showDebugMessage("Position changed from {} to {}".format(old_position, self._position)) else: self._client.ui.showDebugMessage( - "No file loaded so storing position as GlobalPosition ({})".format(self._client.getGlobalPosition())) + "No file loaded so storing position {} as GlobalPosition ({})".format(value, self._client.getGlobalPosition())) self._position = self._client.getGlobalPosition() def _storePauseState(self, value): + if value is None: + self._client.ui.showDebugMessage("NONE TYPE PAUSE STATE!") + return if self._fileIsLoaded(): self._paused = value + #self._client.ui.showDebugMessage("PAUSE STATE STORED AS {}".format(self._paused)) else: self._paused = self._client.getGlobalPaused() + #self._client.ui.showDebugMessage("STORING GLOBAL PAUSED AS FILE IS NOT LOADED") + def lineReceived(self, line): if line: @@ -303,7 +309,7 @@ class MpvPlayer(BasePlayer): self._paused if self.fileLoaded else self._client.getGlobalPaused(), self.getCalculatedPosition()) def drop(self): - self._listener.sendLine('quit') + self._listener.sendLine(['quit']) self._takeLocksDown() self.reactor.callFromThread(self._client.stop, False) @@ -316,7 +322,7 @@ class MpvPlayer(BasePlayer): def _getPausedAndPosition(self): - self._listener.sendLine("print_text ANS_pause=${pause}\r\nprint_text ANS_time-pos=${=time-pos}") + self._listener.sendLine(["script-message-to", "syncplayintf", "get_paused_and_position"]) def _getPaused(self): self._getProperty('pause') @@ -356,7 +362,7 @@ class MpvPlayer(BasePlayer): def _loadFile(self, filePath): self._clearFileLoaded() - self._listener.sendLine('loadfile {}'.format(self._quoteArg(filePath)), notReadyAfterThis=True) + self._listener.sendLine(['loadfile', filePath], notReadyAfterThis=True) def setFeatures(self, featureList): self.sendMpvOptions() @@ -367,6 +373,8 @@ class MpvPlayer(BasePlayer): "Did not seek as recently reset and {} below 'do not reset position' threshold".format(value)) return self._position = max(value, 0) + self._client.ui.showDebugMessage( + "Setting position to {}...".format(self._position)) self._setProperty(self.POSITION_QUERY, "{}".format(value)) time.sleep(0.03) self.lastMPVPositionUpdate = time.time() @@ -376,6 +384,7 @@ class MpvPlayer(BasePlayer): if resetPosition: self.lastResetTime = time.time() if isURL(filePath): + self._client.ui.showDebugMessage("Setting additional lastResetTime due to stream") self.lastResetTime += constants.STREAM_ADDITIONAL_IGNORE_TIME self._loadFile(filePath) if self._paused != self._client.getGlobalPaused(): @@ -383,9 +392,11 @@ class MpvPlayer(BasePlayer): else: self._client.ui.showDebugMessage("Don't want to set paused to {}".format(self._client.getGlobalPaused())) if resetPosition == False: + self._client.ui.showDebugMessage("OpenFile setting position to global position: {}".format(self._client.getGlobalPosition())) self.setPosition(self._client.getGlobalPosition()) else: self._storePosition(0) + # TO TRY: self._listener.setReadyToSend(False) def sendMpvOptions(self): options = [] @@ -397,7 +408,7 @@ class MpvPlayer(BasePlayer): options.append("{}={}".format(option, getMessage(option))) options.append("OscVisibilityChangeCompatible={}".format(constants.MPV_OSC_VISIBILITY_CHANGE_VERSION)) options_string = ", ".join(options) - self._listener.sendLine('script-message-to syncplayintf set_syncplayintf_options "{}"'.format(options_string)) + self._listener.sendLine(["script-message-to", "syncplayintf", "set_syncplayintf_options", options_string]) self._setOSDPosition() def _handleUnknownLine(self, line): @@ -407,18 +418,37 @@ class MpvPlayer(BasePlayer): line = line.replace(constants.MPV_INPUT_BACKSLASH_SUBSTITUTE_CHARACTER, "\\") self._listener.sendChat(line[6:-7]) + if "" in line and "" in line: + update_string = line.replace(">", "<").split("<") + paused_update = update_string[2] + position_update = update_string[6] + if paused_update == "nil": + self._storePauseState(True) + else: + self._storePauseState(bool(paused_update == 'true')) + self._pausedAsk.set() + if position_update == "nil": + self._storePosition(float(0)) + else: + self._storePosition(float(position_update)) + self._positionAsk.set() + #self._client.ui.showDebugMessage("{} = {} / {}".format(update_string, paused_update, position_update)) + if "" in line: self.sendMpvOptions() if line == "" or "Playing:" in line: + self._client.ui.showDebugMessage("Not ready to send due to ") self._listener.setReadyToSend(False) self._clearFileLoaded() elif line == "": self._onFileUpdate() self._listener.setReadyToSend(True) + self._client.ui.showDebugMessage("Ready to send due to ") elif "Failed" in line or "failed" in line or "No video or audio streams selected" in line or "error" in line: + self._client.ui.showDebugMessage("Not ready to send due to error") self._listener.setReadyToSend(True) def _setOSDPosition(self): @@ -442,12 +472,15 @@ class MpvPlayer(BasePlayer): return False def _onFileUpdate(self): + self._client.ui.showDebugMessage("File update") self.fileLoaded = True self.lastLoadedTime = time.time() self.reactor.callFromThread(self._client.updateFile, self._filename, self._duration, self._filepath) if not (self._recentlyReset()): + self._client.ui.showDebugMessage("onFileUpdate setting position to global position: {}".format(self._client.getGlobalPosition())) self.reactor.callFromThread(self.setPosition, self._client.getGlobalPosition()) if self._paused != self._client.getGlobalPaused(): + self._client.ui.showDebugMessage("onFileUpdate setting position to global paused: {}".format(self._client.getGlobalPaused())) self.reactor.callFromThread(self._client.getGlobalPaused) def _fileIsLoaded(self, ignoreDelay=False): @@ -503,12 +536,19 @@ class MpvPlayer(BasePlayer): self._filenameAsk.wait() self._pathAsk.wait() + def mpv_log_handler(self, level, prefix, text): + self.lineReceived(text) + class __Listener(threading.Thread): def __init__(self, playerController, playerPath, filePath, args): + self.mpv_running = True self.sendQueue = [] self.readyToSend = True self.lastSendTime = None self.lastNotReadyTime = None + self.mpvGUID = random.randrange(constants.VLC_MIN_PORT, constants.VLC_MAX_PORT) if ( + constants.VLC_MIN_PORT < constants.VLC_MAX_PORT) else constants.VLC_MIN_PORT + self.socketName = "/tmp/syncplay-mpv-socket-{}".format(self.mpvGUID) self.__playerController = playerController if not self.__playerController._client._config["chatOutputEnabled"]: self.__playerController.alertOSDSupported = False @@ -527,7 +567,8 @@ class MpvPlayer(BasePlayer): filePath = None else: call.extend([filePath]) - call.extend(playerController.getStartupArgs(playerPath, args)) + call.extend(playerController.getStartupArgs(playerPath, args, self.socketName)) + # At least mpv may output escape sequences which result in syncplay # trying to parse something like # "\x1b[?1l\x1b>ANS_filename=blah.mkv". Work around this by @@ -557,8 +598,11 @@ class MpvPlayer(BasePlayer): self.__process = subprocess.Popen( call, stdout=subprocess.PIPE, stdin=subprocess.PIPE, stderr=subprocess.STDOUT, env=env, bufsize=0) + self.mpvpipe = MPV(start_mpv=False, ipc_socket=self.socketName, log_handler=self.__playerController.mpv_log_handler, loglevel="info") + #self.mpvpipe.show_text("HELLO WORLD!", 1000) threading.Thread.__init__(self, name="MPV Listener") + def __getCwd(self, filePath, env): if not filePath: return None @@ -574,16 +618,13 @@ class MpvPlayer(BasePlayer): def run(self): line = self.__process.stdout.readline() - line = line.decode('utf-8') - line = line.rstrip("\r\n") - self.__playerController.lineReceived(line) while self.__process.poll() is None: line = self.__process.stdout.readline() - line = line.decode('utf-8') - line = line.rstrip("\r\n") - self.__playerController.lineReceived(line) + self.mpvpipe.terminate() + time.sleep(0.5) self.__playerController.drop() + def sendChat(self, message): if message: if message[:1] == "/" and message != "/": @@ -617,16 +658,16 @@ class MpvPlayer(BasePlayer): def sendLine(self, line, notReadyAfterThis=None): self.checkForReadinessOverride() - if self.readyToSend == False and "print_text ANS_pause" in line: - self.__playerController._client.ui.showDebugMessage(" Not ready to get status update, so skipping") - return try: if self.sendQueue: if constants.MPV_SUPERSEDE_IF_DUPLICATE_COMMANDS: for command in constants.MPV_SUPERSEDE_IF_DUPLICATE_COMMANDS: - if line.startswith(command): + line_command = " ".join(line) + answer = line_command.startswith(command) + #self.__playerController._client.ui.showDebugMessage("Does line_command {} start with {}? {}".format(line_command, command, answer)) + if line_command.startswith(command): for itemID, deletionCandidate in enumerate(self.sendQueue): - if deletionCandidate.startswith(command): + if " ".join(deletionCandidate).startswith(command): self.__playerController._client.ui.showDebugMessage( " Remove duplicate (supersede): {}".format(self.sendQueue[itemID])) try: @@ -647,8 +688,8 @@ class MpvPlayer(BasePlayer): " Remove duplicate (delete both): {}".format(self.sendQueue[itemID])) self.__playerController._client.ui.showDebugMessage(self.sendQueue[itemID]) return - except: - self.__playerController._client.ui.showDebugMessage(" Problem removing duplicates, etc") + except Exception as e: + self.__playerController._client.ui.showDebugMessage(" Problem removing duplicates, etc: {}".format(e)) self.sendQueue.append(line) self.processSendQueue() if notReadyAfterThis: @@ -671,11 +712,7 @@ class MpvPlayer(BasePlayer): def actuallySendLine(self, line): try: - # if not isinstance(line, str): - # line = line.decode('utf8') - line = line + "\n" self.__playerController._client.ui.showDebugMessage("player >> {}".format(line)) - line = line.encode('utf-8') - self.__process.stdin.write(line) + self.mpvpipe.command(*line) except IOError: pass diff --git a/syncplay/resources/syncplayintf.lua b/syncplay/resources/syncplayintf.lua index 839f4e4..1c8928f 100644 --- a/syncplay/resources/syncplayintf.lua +++ b/syncplay/resources/syncplayintf.lua @@ -341,6 +341,18 @@ mp.register_script_message('set_syncplayintf_options', function(e) set_syncplayintf_options(e) end) +function state_paused_and_position() + -- bob + local pause_status = tostring(mp.get_property_native("pause")) + local position_status = tostring(mp.get_property_native("time-pos")) + mp.command('print-text "'..pause_status..''..position_status..'"') + -- mp.command('print-text "true7.6"') +end + +mp.register_script_message('get_paused_and_position', function() + state_paused_and_position() +end) + -- Default options local utils = require 'mp.utils' local options = require 'mp.options' diff --git a/syncplay/resources/third-party-notices.rtf b/syncplay/resources/third-party-notices.rtf index bd2c722..8aebd9b 100644 --- a/syncplay/resources/third-party-notices.rtf +++ b/syncplay/resources/third-party-notices.rtf @@ -1,489 +1,463 @@ -{\rtf1\ansi\ansicpg1252\cocoartf1561\cocoasubrtf600 -{\fonttbl\f0\fswiss\fcharset0 Helvetica;} -{\colortbl;\red255\green255\blue255;} -{\*\expandedcolortbl;;} -\vieww13920\viewh8980\viewkind0 -\deftab529 -\pard\tx529\pardeftab529\pardirnatural\partightenfactor0 - -\f0\fs24 \cf0 \CocoaLigature0 Syncplay relies on the following softwares, in compliance with their licenses. \ -\ - -\b Qt.py -\b0 \ -\ -Copyright (c) 2016 Marcus Ottosson\ -\ -Permission is hereby granted, free of charge, to any person obtaining a copy\ -of this software and associated documentation files (the "Software"), to deal\ -in the Software without restriction, including without limitation the rights\ -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ -copies of the Software, and to permit persons to whom the Software is\ -furnished to do so, subject to the following conditions:\ -\ -The above copyright notice and this permission notice shall be included in all\ -copies or substantial portions of the Software.\ -\ - -\b Qt for Python\ - -\b0 \ -Copyright (C) 2018 The Qt Company Ltd.\ -Contact: https://www.qt.io/licensing/\ -\ -This program is free software: you can redistribute it and/or modify\ -it under the terms of the GNU Lesser General Public License as published\ -by the Free Software Foundation, either version 3 of the License, or\ -(at your option) any later version.\ -\ -This program is distributed in the hope that it will be useful,\ -but WITHOUT ANY WARRANTY; without even the implied warranty of\ -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\ -GNU Lesser General Public License for more details.\ -\ -You should have received a copy of the GNU Lesser General Public License\ -along with this program. If not, see .\ -\ - -\b Qt -\b0 \ -\ -This program uses Qt under the GNU LGPL version 3.\ -\ -Qt is a C++ toolkit for cross-platform application development.\ -\ -Qt provides single-source portability across all major desktop operating systems. It is also available for embedded Linux and other embedded and mobile operating systems.\ -\ -Qt is available under three different licensing options designed to accommodate the needs of our various users.\ -\ -Qt licensed under our commercial license agreement is appropriate for development of proprietary/commercial software where you do not want to share any source code with third parties or otherwise cannot comply with the terms of the GNU LGPL version 3 or GNU LGPL version 2.1.\ -\ -Qt licensed under the GNU LGPL version 3 is appropriate for the development of Qt applications provided you can comply with the terms and conditions of the GNU LGPL version 3.\ -\ -Qt licensed under the GNU LGPL version 2.1 is appropriate for the development of Qt applications provided you can comply with the terms and conditions of the GNU LGPL version 2.1.\ -\ -Please see qt.io/licensing for an overview of Qt licensing.\ -\ -Copyright (C) 2017 The Qt Company Ltd and other contributors.\ -\ -Qt and the Qt logo are trademarks of The Qt Company Ltd.\ -\ -Qt is The Qt Company Ltd product developed as an open source project. See qt.io for more information.\ -\ - -\b Twisted\ -\ - -\b0 Copyright (c) 2001-2017\ -Allen Short\ -Amber Hawkie Brown\ -Andrew Bennetts\ -Andy Gayton\ -Antoine Pitrou\ -Apple Computer, Inc.\ -Ashwini Oruganti\ -Benjamin Bruheim\ -Bob Ippolito\ -Canonical Limited\ -Christopher Armstrong\ -David Reid\ -Divmod Inc.\ -Donovan Preston\ -Eric Mangold\ -Eyal Lotem\ -Google Inc.\ -Hybrid Logic Ltd.\ -Hynek Schlawack\ -Itamar Turner-Trauring\ -James Knight\ -Jason A. Mobarak\ -Jean-Paul Calderone\ -Jessica McKellar\ -Jonathan D. Simms\ -Jonathan Jacobs\ -Jonathan Lange\ -Julian Berman\ -J\'fcrgen Hermann\ -Kevin Horn\ -Kevin Turner\ -Laurens Van Houtven\ -Mary Gardiner\ -Massachusetts Institute of Technology\ -Matthew Lefkowitz\ -Moshe Zadka\ -Paul Swartz\ -Pavel Pergamenshchik\ -Rackspace, US Inc.\ -Ralph Meijer\ -Richard Wall\ -Sean Riley\ -Software Freedom Conservancy\ -Tavendo GmbH\ -Thijs Triemstra\ -Thomas Herve\ -Timothy Allen\ -Tom Prince\ -Travis B. Hartwell\ -\ -and others that have contributed code to the public domain.\ -\ -Permission is hereby granted, free of charge, to any person obtaining\ -a copy of this software and associated documentation files (the\ -"Software"), to deal in the Software without restriction, including\ -without limitation the rights to use, copy, modify, merge, publish,\ -distribute, sublicense, and/or sell copies of the Software, and to\ -permit persons to whom the Software is furnished to do so, subject to\ -the following conditions:\ -\ -The above copyright notice and this permission notice shall be\ -included in all copies or substantial portions of the Software.\ - -\b \ -qt5reactor\ -\ - -\b0 Copyright (c) 2001-2018\ -Allen Short\ -Andy Gayton\ -Andrew Bennetts\ -Antoine Pitrou\ -Apple Computer, Inc.\ -Ashwini Oruganti\ -bakbuk\ -Benjamin Bruheim\ -Bob Ippolito\ -Burak Nehbit\ -Canonical Limited\ -Christopher Armstrong\ -Christopher R. Wood\ -David Reid\ -Donovan Preston\ -Elvis Stansvik\ -Eric Mangold\ -Eyal Lotem\ -Glenn Tarbox\ -Google Inc.\ -Hybrid Logic Ltd.\ -Hynek Schlawack\ -Itamar Turner-Trauring\ -James Knight\ -Jason A. Mobarak\ -Jean-Paul Calderone\ -Jessica McKellar\ -Jonathan Jacobs\ -Jonathan Lange\ -Jonathan D. Simms\ -J\'fcrgen Hermann\ -Julian Berman\ -Kevin Horn\ -Kevin Turner\ -Kyle Altendorf\ -Laurens Van Houtven\ -Mary Gardiner\ -Matthew Lefkowitz\ -Massachusetts Institute of Technology\ -Moshe Zadka\ -Paul Swartz\ -Pavel Pergamenshchik\ -Ralph Meijer\ -Richard Wall\ -Sean Riley\ -Software Freedom Conservancy\ -Tarashish Mishra\ -Travis B. Hartwell\ -Thijs Triemstra\ -Thomas Herve\ -Timothy Allen\ -Tom Prince\ -\ -Permission is hereby granted, free of charge, to any person obtaining\ -a copy of this software and associated documentation files (the\ -"Software"), to deal in the Software without restriction, including\ -without limitation the rights to use, copy, modify, merge, publish,\ -distribute, sublicense, and/or sell copies of the Software, and to\ -permit persons to whom the Software is furnished to do so, subject to\ -the following conditions:\ -\ -The above copyright notice and this permission notice shall be\ -included in all copies or substantial portions of the Software.\ -\ -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,\ -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\ -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\ -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\ -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\ -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\ -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -\b \ -\ -appnope\ - -\b0 \ -Copyright (c) 2013, Min Ragan-Kelley\ -\ -All rights reserved.\ -\ -Redistribution and use in source and binary forms, with or without\ -modification, are permitted provided that the following conditions are met:\ -\ -Redistributions of source code must retain the above copyright notice, this\ -list of conditions and the following disclaimer.\ -\ -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND\ -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\ -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\ -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE\ -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\ -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\ -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\ -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\ -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\ -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\ -\ - -\b py2exe\ - -\b0 \ -Copyright (c) 2000-2013 Thomas Heller, Jimmy Retzlaff\ -\ -Permission is hereby granted, free of charge, to any person obtaining\ -a copy of this software and associated documentation files (the\ -"Software"), to deal in the Software without restriction, including\ -without limitation the rights to use, copy, modify, merge, publish,\ -distribute, sublicense, and/or sell copies of the Software, and to\ -permit persons to whom the Software is furnished to do so, subject to\ -the following conditions:\ -\ -The above copyright notice and this permission notice shall be\ -included in all copies or substantial portions of the Software.\ -\ - -\b py2app\ -\ - -\b0 Copyright (c) 2004 Bob Ippolito.\ -\ -Some parts copyright (c) 2010-2014 Ronald Oussoren\ -\ -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\ -\ -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\ -\ - -\b dmgbuild\ -\ - -\b0 Copyright (c) 2014 Alastair Houghton\ -Copyright (c) 2017 The Qt Company Ltd.\ -\ -Permission is hereby granted, free of charge, to any person obtaining a copy\ -of this software and associated documentation files (the "Software"), to deal\ -in the Software without restriction, including without limitation the rights\ -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ -copies of the Software, and to permit persons to whom the Software is\ -furnished to do so, subject to the following conditions:\ -\ -The above copyright notice and this permission notice shall be included in\ -all copies or substantial portions of the Software.\ -\ - -\b Requests\ -\ - -\b0 Copyright 2018 Kenneth Reitz\ -\ -Licensed under the Apache License, Version 2.0 (the \'93License\'94); you may not use this file\ -except in compliance with the License. You may obtain a copy of the License at\ -\ -http://www.apache.org/licenses/LICENSE-2.0\ -\ -Unless required by applicable law or agreed to in writing, software distributed under the \ -License is distributed on an \'93AS IS\'94 BASIS, WITHOUT WARRANTIES OR CONDI-\ -TIONS OF ANY KIND, either express or implied. See the License for the specific lang-\ -uage governing permissions and limitations under the License.\ -\ - -\b mpv-repl -\b0 \ -\ -Copyright 2016, James Ross-Gowan\ -\ -Permission to use, copy, modify, and/or distribute this software for any\ -purpose with or without fee is hereby granted, provided that the above\ -copyright notice and this permission notice appear in all copies.\ -\ -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\ -REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND\ -FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\ -INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\ -LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\ -OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\ -PERFORMANCE OF THIS SOFTWARE.\ -\ - -\b python-certifi -\b0 \ -\ -This Source Code Form is subject to the terms of the Mozilla Public License,\ -v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain\ -one at http://mozilla.org/MPL/2.0/.\ -\ - -\b cffi -\b0 \ -\ -\pard\pardeftab720\partightenfactor0 -\cf0 This package has been mostly done by Armin Rigo with help from\ -Maciej Fija\uc0\u322 kowski. The idea is heavily based (although not directly\ -copied) from LuaJIT ffi by Mike Pall.\ -\ -Other contributors:\ -\ - Google Inc.\ -\pard\tx529\pardeftab529\pardirnatural\partightenfactor0 -\cf0 \ -The MIT License\ -\ -Permission is hereby granted, free of charge, to any person \ -obtaining a copy of this software and associated documentation \ -files (the "Software"), to deal in the Software without \ -restriction, including without limitation the rights to use, \ -copy, modify, merge, publish, distribute, sublicense, and/or \ -sell copies of the Software, and to permit persons to whom the \ -Software is furnished to do so, subject to the following conditions:\ -\ -The above copyright notice and this permission notice shall be included \ -in all copies or substantial portions of the Software.\ -\ -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS \ -OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, \ -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL \ -THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER \ -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING \ -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER \ -DEALINGS IN THE SOFTWARE.\ -\ - -\b service-identity -\b0 \ -\ -Copyright (c) 2014 Hynek Schlawack\ -\ -Permission is hereby granted, free of charge, to any person obtaining a copy of\ -this software and associated documentation files (the "Software"), to deal in\ -the Software without restriction, including without limitation the rights to\ -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\ -of the Software, and to permit persons to whom the Software is furnished to do\ -so, subject to the following conditions:\ -\ -The above copyright notice and this permission notice shall be included in all\ -copies or substantial portions of the Software.\ -\ -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\ -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\ -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\ -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\ -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\ -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\ -SOFTWARE.\ -\ - -\b pyopenssl -\b0 \ -\ -Licensed under the Apache License, Version 2.0 (the \'93License\'94); you may not use this file\ -except in compliance with the License. You may obtain a copy of the License at\ -\ -http://www.apache.org/licenses/LICENSE-2.0\ -\ -Unless required by applicable law or agreed to in writing, software distributed under the \ -License is distributed on an \'93AS IS\'94 BASIS, WITHOUT WARRANTIES OR CONDI-\ -TIONS OF ANY KIND, either express or implied. See the License for the specific lang-\ -uage governing permissions and limitations under the License.\ -\ - -\b cryptography -\b0 \ -\ -Authors listed here: https://github.com/pyca/cryptography/blob/master/AUTHORS.rst\ -\ -Licensed under the Apache License, Version 2.0 (the \'93License\'94); you may not use this file\ -except in compliance with the License. You may obtain a copy of the License at\ -\ -http://www.apache.org/licenses/LICENSE-2.0\ -\ -Unless required by applicable law or agreed to in writing, software distributed under the \ -License is distributed on an \'93AS IS\'94 BASIS, WITHOUT WARRANTIES OR CONDI-\ -TIONS OF ANY KIND, either express or implied. See the License for the specific lang-\ -uage governing permissions and limitations under the License.\ -\ - -\b Darkdetect -\b0 \ -\ -Copyright (c) 2019, Alberto Sottile\ -All rights reserved.\ -\ -Redistribution and use in source and binary forms, with or without\ -modification, are permitted provided that the following conditions are met:\ - * Redistributions of source code must retain the above copyright\ - notice, this list of conditions and the following disclaimer.\ - * Redistributions in binary form must reproduce the above copyright\ - notice, this list of conditions and the following disclaimer in the\ - documentation and/or other materials provided with the distribution.\ - * Neither the name of "darkdetect" nor the\ - names of its contributors may be used to endorse or promote products\ - derived from this software without specific prior written permission.\ -\ -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND\ -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\ -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\ -DISCLAIMED. IN NO EVENT SHALL "Alberto Sottile" BE LIABLE FOR ANY\ -DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\ -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\ -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\ -ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\ -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\ -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\ -\ - -\b Icons\ -\ - -\b0 Syncplay uses the following icons and images:\ -\ -- Silk icon set 1.3\ -_________________________________________\ -Mark James\ -http://www.famfamfam.com/lab/icons/silk/\ -_________________________________________\ -\ -This work is licensed under a\ -Creative Commons Attribution 2.5 License.\ -[ http://creativecommons.org/licenses/by/2.5/ ]\ -\ -This means you may use it for any purpose,\ -and make any changes you like.\ -All I ask is that you include a link back\ -to this page in your credits.\ -\ -Are you using this icon set? Send me an email\ -(including a link or picture if available) to\ -mjames@gmail.com\ -\ -Any other questions about this icon set please\ -contact mjames@gmail.com\ -\ -- Silk Companion 1\ -\ -\pard\pardeftab720\partightenfactor0 -\cf0 Copyright Damien Guard - CC-BY 3.0\ -https://damieng.com/creative/icons/silk-companion-1-icons\ -\ -- Padlock free icon\ -CC-BY 3.0\ -Icon made by Maxim Basinski from https://www.flaticon.com/free-icon/padlock_291248\ -\ -\pard\tx529\pardeftab529\pardirnatural\partightenfactor0 -\cf0 \ -} \ No newline at end of file +{\rtf1\ansi\ansicpg1252\deff0\nouicompat\deftab529{\fonttbl{\f0\fswiss\fcharset0 Helvetica;}{\f1\fswiss\fcharset238 Helvetica;}} +{\colortbl ;\red0\green0\blue255;} +{\*\generator Riched20 10.0.18362}\viewkind4\uc1 +\pard\tx529\f0\fs24\lang9 Syncplay relies on the following softwares, in compliance with their licenses. \par +\par +\b Qt.py\b0\par +\par +Copyright (c) 2016 Marcus Ottosson\par +\par +Permission is hereby granted, free of charge, to any person obtaining a copy\par +of this software and associated documentation files (the "Software"), to deal\par +in the Software without restriction, including without limitation the rights\par +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\par +copies of the Software, and to permit persons to whom the Software is\par +furnished to do so, subject to the following conditions:\par +\par +The above copyright notice and this permission notice shall be included in all\par +copies or substantial portions of the Software.\par +\par +\b Qt for Python\par +\b0\par +Copyright (C) 2018 The Qt Company Ltd.\par +Contact: {{\field{\*\fldinst{HYPERLINK https://www.qt.io/licensing/ }}{\fldrslt{https://www.qt.io/licensing/\ul0\cf0}}}}\f0\fs24\par +\par +This program is free software: you can redistribute it and/or modify\par +it under the terms of the GNU Lesser General Public License as published\par +by the Free Software Foundation, either version 3 of the License, or\par +(at your option) any later version.\par +\par +This program is distributed in the hope that it will be useful,\par +but WITHOUT ANY WARRANTY; without even the implied warranty of\par +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\par +GNU Lesser General Public License for more details.\par +\par +You should have received a copy of the GNU Lesser General Public License\par +along with this program. If not, see <{{\field{\*\fldinst{HYPERLINK "http://www.gnu.org/licenses/"}}{\fldrslt{http://www.gnu.org/licenses/\ul0\cf0}}}}\f0\fs24 >.\par +\par +\b Qt\b0\par +\par +This program uses Qt under the GNU LGPL version 3.\par +\par +Qt is a C++ toolkit for cross-platform application development.\par +\par +Qt provides single-source portability across all major desktop operating systems. It is also available for embedded Linux and other embedded and mobile operating systems.\par +\par +Qt is available under three different licensing options designed to accommodate the needs of our various users.\par +\par +Qt licensed under our commercial license agreement is appropriate for development of proprietary/commercial software where you do not want to share any source code with third parties or otherwise cannot comply with the terms of the GNU LGPL version 3 or GNU LGPL version 2.1.\par +\par +Qt licensed under the GNU LGPL version 3 is appropriate for the development of Qt applications provided you can comply with the terms and conditions of the GNU LGPL version 3.\par +\par +Qt licensed under the GNU LGPL version 2.1 is appropriate for the development of Qt applications provided you can comply with the terms and conditions of the GNU LGPL version 2.1.\par +\par +Please see qt.io/licensing for an overview of Qt licensing.\par +\par +Copyright (C) 2017 The Qt Company Ltd and other contributors.\par +\par +Qt and the Qt logo are trademarks of The Qt Company Ltd.\par +\par +Qt is The Qt Company Ltd product developed as an open source project. See qt.io for more information.\par +\par +\b Twisted\par +\par +\b0 Copyright (c) 2001-2017\par +Allen Short\par +Amber Hawkie Brown\par +Andrew Bennetts\par +Andy Gayton\par +Antoine Pitrou\par +Apple Computer, Inc.\par +Ashwini Oruganti\par +Benjamin Bruheim\par +Bob Ippolito\par +Canonical Limited\par +Christopher Armstrong\par +David Reid\par +Divmod Inc.\par +Donovan Preston\par +Eric Mangold\par +Eyal Lotem\par +Google Inc.\par +Hybrid Logic Ltd.\par +Hynek Schlawack\par +Itamar Turner-Trauring\par +James Knight\par +Jason A. Mobarak\par +Jean-Paul Calderone\par +Jessica McKellar\par +Jonathan D. Simms\par +Jonathan Jacobs\par +Jonathan Lange\par +Julian Berman\par +J\'fcrgen Hermann\par +Kevin Horn\par +Kevin Turner\par +Laurens Van Houtven\par +Mary Gardiner\par +Massachusetts Institute of Technology\par +Matthew Lefkowitz\par +Moshe Zadka\par +Paul Swartz\par +Pavel Pergamenshchik\par +Rackspace, US Inc.\par +Ralph Meijer\par +Richard Wall\par +Sean Riley\par +Software Freedom Conservancy\par +Tavendo GmbH\par +Thijs Triemstra\par +Thomas Herve\par +Timothy Allen\par +Tom Prince\par +Travis B. Hartwell\par +\par +and others that have contributed code to the public domain.\par +\par +Permission is hereby granted, free of charge, to any person obtaining\par +a copy of this software and associated documentation files (the\par +"Software"), to deal in the Software without restriction, including\par +without limitation the rights to use, copy, modify, merge, publish,\par +distribute, sublicense, and/or sell copies of the Software, and to\par +permit persons to whom the Software is furnished to do so, subject to\par +the following conditions:\par +\par +The above copyright notice and this permission notice shall be\par +included in all copies or substantial portions of the Software.\par +\b\par +qt5reactor\par +\par +\b0 Copyright (c) 2001-2018\par +Allen Short\par +Andy Gayton\par +Andrew Bennetts\par +Antoine Pitrou\par +Apple Computer, Inc.\par +Ashwini Oruganti\par +bakbuk\par +Benjamin Bruheim\par +Bob Ippolito\par +Burak Nehbit\par +Canonical Limited\par +Christopher Armstrong\par +Christopher R. Wood\par +David Reid\par +Donovan Preston\par +Elvis Stansvik\par +Eric Mangold\par +Eyal Lotem\par +Glenn Tarbox\par +Google Inc.\par +Hybrid Logic Ltd.\par +Hynek Schlawack\par +Itamar Turner-Trauring\par +James Knight\par +Jason A. Mobarak\par +Jean-Paul Calderone\par +Jessica McKellar\par +Jonathan Jacobs\par +Jonathan Lange\par +Jonathan D. Simms\par +J\'fcrgen Hermann\par +Julian Berman\par +Kevin Horn\par +Kevin Turner\par +Kyle Altendorf\par +Laurens Van Houtven\par +Mary Gardiner\par +Matthew Lefkowitz\par +Massachusetts Institute of Technology\par +Moshe Zadka\par +Paul Swartz\par +Pavel Pergamenshchik\par +Ralph Meijer\par +Richard Wall\par +Sean Riley\par +Software Freedom Conservancy\par +Tarashish Mishra\par +Travis B. Hartwell\par +Thijs Triemstra\par +Thomas Herve\par +Timothy Allen\par +Tom Prince\par +\par +Permission is hereby granted, free of charge, to any person obtaining\par +a copy of this software and associated documentation files (the\par +"Software"), to deal in the Software without restriction, including\par +without limitation the rights to use, copy, modify, merge, publish,\par +distribute, sublicense, and/or sell copies of the Software, and to\par +permit persons to whom the Software is furnished to do so, subject to\par +the following conditions:\par +\par +The above copyright notice and this permission notice shall be\par +included in all copies or substantial portions of the Software.\par +\par +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,\par +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\par +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\par +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\par +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\par +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\par +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\b\par +\par +appnope\par +\b0\par +Copyright (c) 2013, Min Ragan-Kelley\par +\par +All rights reserved.\par +\par +Redistribution and use in source and binary forms, with or without\par +modification, are permitted provided that the following conditions are met:\par +\par +Redistributions of source code must retain the above copyright notice, this\par +list of conditions and the following disclaimer.\par +\par +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND\par +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\par +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\par +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE\par +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\par +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\par +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\par +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\par +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\par +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\par +\par +\b py2exe\par +\b0\par +Copyright (c) 2000-2013 Thomas Heller, Jimmy Retzlaff\par +\par +Permission is hereby granted, free of charge, to any person obtaining\par +a copy of this software and associated documentation files (the\par +"Software"), to deal in the Software without restriction, including\par +without limitation the rights to use, copy, modify, merge, publish,\par +distribute, sublicense, and/or sell copies of the Software, and to\par +permit persons to whom the Software is furnished to do so, subject to\par +the following conditions:\par +\par +The above copyright notice and this permission notice shall be\par +included in all copies or substantial portions of the Software.\par +\par +\b py2app\par +\par +\b0 Copyright (c) 2004 Bob Ippolito.\par +\par +Some parts copyright (c) 2010-2014 Ronald Oussoren\par +\par +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\par +\par +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\par +\par +\b dmgbuild\par +\par +\b0 Copyright (c) 2014 Alastair Houghton\par +Copyright (c) 2017 The Qt Company Ltd.\par +\par +Permission is hereby granted, free of charge, to any person obtaining a copy\par +of this software and associated documentation files (the "Software"), to deal\par +in the Software without restriction, including without limitation the rights\par +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\par +copies of the Software, and to permit persons to whom the Software is\par +furnished to do so, subject to the following conditions:\par +\par +The above copyright notice and this permission notice shall be included in\par +all copies or substantial portions of the Software.\par +\par +\b Requests\par +\par +\b0 Copyright 2018 Kenneth Reitz\par +\par +Licensed under the Apache License, Version 2.0 (the \ldblquote License\rdblquote ); you may not use this file\par +except in compliance with the License. You may obtain a copy of the License at\par +\par +{{\field{\*\fldinst{HYPERLINK http://www.apache.org/licenses/LICENSE-2.0 }}{\fldrslt{http://www.apache.org/licenses/LICENSE-2.0\ul0\cf0}}}}\f0\fs24\par +\par +Unless required by applicable law or agreed to in writing, software distributed under the \par +License is distributed on an \ldblquote AS IS\rdblquote BASIS, WITHOUT WARRANTIES OR CONDI-\par +TIONS OF ANY KIND, either express or implied. See the License for the specific lang-\par +uage governing permissions and limitations under the License.\par +\par +\b mpv-repl\b0\par +\par +Copyright 2016, James Ross-Gowan\par +\par +Permission to use, copy, modify, and/or distribute this software for any\par +purpose with or without fee is hereby granted, provided that the above\par +copyright notice and this permission notice appear in all copies.\par +\par +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\par +REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND\par +FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\par +INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\par +LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\par +OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\par +PERFORMANCE OF THIS SOFTWARE.\par +\par +\b python-certifi\b0\par +\par +This Source Code Form is subject to the terms of the Mozilla Public License,\par +v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain\par +one at {{\field{\*\fldinst{HYPERLINK http://mozilla.org/MPL/2.0/ }}{\fldrslt{http://mozilla.org/MPL/2.0/\ul0\cf0}}}}\f0\fs24 .\par +\par +\b cffi\b0\par +\par + +\pard This package has been mostly done by Armin Rigo with help from\par +Maciej Fija\f1\'b3kowski. The idea is heavily based (although not directly\par +copied) from LuaJIT ffi by Mike Pall.\par +\par +Other contributors:\par +\par + Google Inc.\par + +\pard\tx529\par +The MIT License\par +\par +Permission is hereby granted, free of charge, to any person \par +obtaining a copy of this software and associated documentation \par +files (the "Software"), to deal in the Software without \par +restriction, including without limitation the rights to use, \par +copy, modify, merge, publish, distribute, sublicense, and/or \par +sell copies of the Software, and to permit persons to whom the \par +Software is furnished to do so, subject to the following conditions:\par +\par +The above copyright notice and this permission notice shall be included \par +in all copies or substantial portions of the Software.\par +\par +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS \par +OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, \par +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL \par +THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER \par +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING \par +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER \par +DEALINGS IN THE SOFTWARE.\par +\par +\b service-identity\b0\par +\par +Copyright (c) 2014 Hynek Schlawack\par +\par +Permission is hereby granted, free of charge, to any person obtaining a copy of\par +this software and associated documentation files (the "Software"), to deal in\par +the Software without restriction, including without limitation the rights to\par +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\par +of the Software, and to permit persons to whom the Software is furnished to do\par +so, subject to the following conditions:\par +\par +The above copyright notice and this permission notice shall be included in all\par +copies or substantial portions of the Software.\par +\par +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\par +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\par +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\par +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\par +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\par +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\par +SOFTWARE.\par +\par +\b pyopenssl\b0\par +\par +Licensed under the Apache License, Version 2.0 (the \ldblquote License\rdblquote ); you may not use this file\par +except in compliance with the License. You may obtain a copy of the License at\par +\par +{{\field{\*\fldinst{HYPERLINK http://www.apache.org/licenses/LICENSE-2.0 }}{\fldrslt{http://www.apache.org/licenses/LICENSE-2.0\ul0\cf0}}}}\f1\fs24\par +\par +Unless required by applicable law or agreed to in writing, software distributed under the \par +License is distributed on an \ldblquote AS IS\rdblquote BASIS, WITHOUT WARRANTIES OR CONDI-\par +TIONS OF ANY KIND, either express or implied. See the License for the specific lang-\par +uage governing permissions and limitations under the License.\par +\par +\b cryptography\b0\par +\par +Authors listed here: {{\field{\*\fldinst{HYPERLINK https://github.com/pyca/cryptography/blob/master/AUTHORS.rst }}{\fldrslt{https://github.com/pyca/cryptography/blob/master/AUTHORS.rst\ul0\cf0}}}}\f1\fs24\par +\par +Licensed under the Apache License, Version 2.0 (the \ldblquote License\rdblquote ); you may not use this file\par +except in compliance with the License. You may obtain a copy of the License at\par +\par +{{\field{\*\fldinst{HYPERLINK http://www.apache.org/licenses/LICENSE-2.0 }}{\fldrslt{http://www.apache.org/licenses/LICENSE-2.0\ul0\cf0}}}}\f1\fs24\par +\par +Unless required by applicable law or agreed to in writing, software distributed under the \par +License is distributed on an \ldblquote AS IS\rdblquote BASIS, WITHOUT WARRANTIES OR CONDI-\par +TIONS OF ANY KIND, either express or implied. See the License for the specific lang-\par +uage governing permissions and limitations under the License.\par +\par +\b Darkdetect\b0\par +\par +Copyright (c) 2019, Alberto Sottile\par +All rights reserved.\par +\par +Redistribution and use in source and binary forms, with or without\par +modification, are permitted provided that the following conditions are met:\par + * Redistributions of source code must retain the above copyright\par + notice, this list of conditions and the following disclaimer.\par + * Redistributions in binary form must reproduce the above copyright\par + notice, this list of conditions and the following disclaimer in the\par + documentation and/or other materials provided with the distribution.\par + * Neither the name of "darkdetect" nor the\par + names of its contributors may be used to endorse or promote products\par + derived from this software without specific prior written permission.\par +\par +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND\par +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\par +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\par +DISCLAIMED. IN NO EVENT SHALL "Alberto Sottile" BE LIABLE FOR ANY\par +DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\par +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\par +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\par +ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\par +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\par +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\par +\par +\b Python MPV JSONIPC\par +\b0\f0\lang2057 Authors listed here: {{\field{\*\fldinst{HYPERLINK https://github.com/iwalton3/python-mpv-jsonipc/ }}{\fldrslt{https://github.com/iwalton3/python-mpv-jsonipc/\ul0\cf0}}}}\f0\fs24 (principal developer Ian Walton / iwalton3)\b\f1\lang9\par +\par +\b0 Licensed under the Apache License, Version 2.0 (the \ldblquote License\rdblquote ); you may not use this file\par +except in compliance with the License. You may obtain a copy of the License at\par +\par +{{\field{\*\fldinst{HYPERLINK http://www.apache.org/licenses/LICENSE-2.0 }}{\fldrslt{http://www.apache.org/licenses/LICENSE-2.0\ul0\cf0}}}}\f1\fs24\par +\par +Unless required by applicable law or agreed to in writing, software distributed under the \par +License is distributed on an \ldblquote AS IS\rdblquote BASIS, WITHOUT WARRANTIES OR CONDI-\par +TIONS OF ANY KIND, either express or implied. See the License for the specific lang-\par +uage governing permissions and limitations under the License.\par +\b\par +\par +Icons\par +\par +\b0 Syncplay uses the following icons and images:\par +\par +- Silk icon set 1.3\par +_________________________________________\par +Mark James\par +{{\field{\*\fldinst{HYPERLINK http://www.famfamfam.com/lab/icons/silk/ }}{\fldrslt{http://www.famfamfam.com/lab/icons/silk/\ul0\cf0}}}}\f1\fs24\par +_________________________________________\par +\par +This work is licensed under a\par +Creative Commons Attribution 2.5 License.\par +[ {{\field{\*\fldinst{HYPERLINK http://creativecommons.org/licenses/by/2.5/ }}{\fldrslt{http://creativecommons.org/licenses/by/2.5/\ul0\cf0}}}}\f1\fs24 ]\par +\par +This means you may use it for any purpose,\par +and make any changes you like.\par +All I ask is that you include a link back\par +to this page in your credits.\par +\par +Are you using this icon set? Send me an email\par +(including a link or picture if available) to\par +mjames@gmail.com\par +\par +Any other questions about this icon set please\par +contact mjames@gmail.com\par +\par +- Silk Companion 1\par +\par + +\pard Copyright Damien Guard - CC-BY 3.0\par +{{\field{\*\fldinst{HYPERLINK https://damieng.com/creative/icons/silk-companion-1-icons }}{\fldrslt{https://damieng.com/creative/icons/silk-companion-1-icons\ul0\cf0}}}}\f1\fs24\par +\par +- Padlock free icon\par +CC-BY 3.0\par +Icon made by Maxim Basinski from {{\field{\*\fldinst{HYPERLINK https://www.flaticon.com/free-icon/padlock_291248 }}{\fldrslt{https://www.flaticon.com/free-icon/padlock_291248\ul0\cf0}}}}\f1\fs24\par +\par + +\pard\tx529\par +} + \ No newline at end of file