diff options
Diffstat (limited to 'mpv.py')
-rw-r--r-- | mpv.py | 16 |
1 files changed, 9 insertions, 7 deletions
@@ -4,16 +4,18 @@ # Python MPV library module # Copyright (C) 2017-2022 Sebastian Götte <code@jaseg.net> # -# This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public -# License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later -# version. +# python-mpv inherits the underlying libmpv's license, which can be either GPLv2 or later (default) or LGPLv2.1 or +# later. For details, see the mpv copyright page here: https://github.com/mpv-player/mpv/blob/master/Copyright # -# 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 General Public License for more details. +# You may copy, modify, and redistribute this file under the terms of the GNU General Public License version 2 (or, at +# your option, any later version), or the GNU Lesser General Public License as published by the Free Software +# Foundation; either version 2.1 of the License, or (at your option) any later version. # -# You should have received a copy of the GNU General Public License along with this program; if not, write to the Free -# Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +# This library 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 General Public License and the GNU +# Lesser General Public License for more details. # +# You can find copies of the GPLv2 and LGPLv2.1 licenses in the project repository's LICENSE.GPL and LICENSE.LGPL files. from ctypes import * import ctypes.util |