diff --git a/.github/ISSUE_TEMPLATE/bug---.md b/.github/ISSUE_TEMPLATE/bug---.md index 855f16a..b30fa4d 100644 --- a/.github/ISSUE_TEMPLATE/bug---.md +++ b/.github/ISSUE_TEMPLATE/bug---.md @@ -11,7 +11,7 @@ assignees: '' - [ ] 请确认是界面(此GUI程序)的相关问题 此处无法解决 哔哩哔哩的地区/大会员限制、BBDown自身下载问题、FFmpeg混流问题、Aria2c自身限制 等一类的问题。如您的问题在这些方面,可以到其各自的仓库反馈。 -- [ ] 在您反馈问题前,请关闭程序重试一次,以保证这不是一次误操作 +- [ ] 在您反馈问题前,请关闭程序并删除 config.json 重试一次,以保证这不是一次误操作 ## **✍问题描述** 您可以在此处说明问题 diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..2b168cb --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,19 @@ +--- +name: 新功能添加 +about: "想添加一个新功能" +title: '' +labels: enhancement +assignees: '' + +--- + +## **此功能的类型** +- [ ] BBDown 的命令行中存在此功能,而 GUI 中并没有提供 + +- [ ] 关于 GUI 本身的新功能 + +## **功能描述** +您可以在此处说明建议 + +## **额外说明(可选)** +如果此功能需要用到其他版本的 BBDown,Aria2c 等内容,可以在此处说明这些版本的下载地址 diff --git a/.gitignore b/.gitignore index c84e697..d265f1e 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,8 @@ BBDown.exe UI/__pycache__ +__pycache__ + +Download/ + +[123456789]*/ diff --git a/BBDown_GUI.py b/BBDown_GUI.py index f5a6173..a2da905 100644 --- a/BBDown_GUI.py +++ b/BBDown_GUI.py @@ -20,7 +20,8 @@ def __init__(self, command): super(RunBBDown, self).__init__() self.command = command def run(self): - p = subprocess.Popen(f"\"{bbdowndir}\" {self.command}", shell=True) + # print(f'"{bbdowndir}" {self.command}') + p = subprocess.Popen(f'"{bbdowndir}" {self.command}', shell=True) p.wait() class FormLogin(QMainWindow, Ui_Form_QRcode): @@ -80,26 +81,28 @@ def Load(self): self.advanced = config[item] if self.advanced: self.pushButton_advanced.setText("简易选项<") - self.resize(1220, 500) + self.resize(1560, 500) self.advanced = True else: self.pushButton_advanced.setText("高级选项>") self.resize(620, 400) self.advanced = False elif type(config[item]) == type(True): - exec(f"self.{item}.setChecked({config[item]})") - elif type(config[item]) == type(""): - exec(f"self.{item}.setText(r\"{config[item]}\")") + exec(f'self.{item}.setChecked({config[item]})') + elif type(config[item]) == type(''): + exec(f'self.{item}.setText(r"{config[item]}")') + elif type(config[item]) == type(0): + exec(f'self.{item}.setCurrentIndex({config[item]})') + super(FormMain, self).__init__() self.setupUi(self) self.pushButton_login.clicked.connect(self.login) self.pushButton_logintv.clicked.connect(self.logintv) self.lineEdit_ffmpeg.setText(os.path.join(workdir, "ffmpeg.exe")) - self.lineEdit_aria2c.setText(os.path.join(workdir, "aria2c.exe")) + self.lineEdit_aria2c_path.setText(os.path.join(workdir, "aria2c.exe")) self.lineEdit_dir.setText(os.path.join(workdir, "Download")) self.lineEdit_bbdown.setText(bbdowndir) self.pushButton_ffmpeg.clicked.connect(self.ffmpegpath) - self.pushButton_aria2c.clicked.connect(self.aria2cpath) self.pushButton_dir.clicked.connect(self.downpath) self.pushButton_bbdown.clicked.connect(self.bbdownpath) self.pushButton_download.clicked.connect(self.download) @@ -109,7 +112,7 @@ def Load(self): try: Load(self) except: - pass + self.resize(620, 400) def login(self): self.win_login = FormLogin("login") self.win_login.show() @@ -117,124 +120,167 @@ def logintv(self): self.win_login = FormLogin("logintv") self.win_login.show() def ffmpegpath(self): - filepath, _ = QFileDialog.getOpenFileName(self, "选择文件", os.getcwd(), \ + filepath, _ = QFileDialog.getOpenFileName(self, "选择文件", os.getcwd(), "ffmpeg (ffmpeg.exe);;All Files (*.*)") + filepath = filepath.replace("/","\\") self.lineEdit_ffmpeg.setText(filepath) def aria2cpath(self): - filepath, _ = QFileDialog.getOpenFileName(self, "选择文件", os.getcwd(), \ + filepath, _ = QFileDialog.getOpenFileName(self, "选择文件", os.getcwd(), "aria2c (aria2c.exe);;All Files (*.*)") + filepath = filepath.replace("/","\\") self.lineEdit_aria2c.setText(filepath) def downpath(self): downpath = QFileDialog.getExistingDirectory(self, "选择文件夹", os.getcwd()) + downpath = downpath.replace("/","\\") self.lineEdit_dir.setText(downpath) def bbdownpath(self): filepath, _ = QFileDialog.getOpenFileName(self, "选择文件", os.getcwd(), \ "BBDown (BBDown.exe);;All Files (*.*)") + filepath = filepath.replace("/","\\") self.lineEdit_bbdown.setText(filepath) global bbdowndir bbdowndir = self.lineEdit_bbdown.text() def download(self): def Save(): config = {} - for i in range(1, 9): - exec(f"config[\"radioButton_{i}\"]=self.radioButton_{i}.isChecked()") - config["checkBox_ffmpeg"] = self.checkBox_ffmpeg.isChecked() - config["lineEdit_ffmpeg"] = self.lineEdit_ffmpeg.text() - config["checkBox_aria2c"] = self.checkBox_aria2c.isChecked() - config["lineEdit_aria2c"] = self.lineEdit_aria2c.text() + for i in dir(self): + if i[:9]=="checkBox_": + exec(f"config[i] = self.{i}.isChecked()") + elif i[:12]=="radioButton_": + exec(f"config[i] = self.{i}.isChecked()") + elif i[:9]=="lineEdit_": + exec(f"config[i] = self.{i}.text()") + elif i[:9]=="comboBox_": + exec(f"config[i] = self.{i}.currentIndex()") config["advanced"] = self.advanced - for i in range(1, 26): - exec(f"config[\"checkBox_{i}\"]=self.checkBox_{i}.isChecked()") - for i in range(1, 8): - exec(f"config[\"lineEdit_{i}\"]=self.lineEdit_{i}.text()") - config["lineEdit_dir"] = self.lineEdit_dir.text() - config["lineEdit_url"] = self.lineEdit_url.text() f = open(os.path.join(workdir, "config.json"), "w") f.write(json.dumps(config, indent=4)) f.close() Save() - arg = "" - if self.radioButton_1.isChecked(): - pass - elif self.radioButton_2.isChecked(): - arg += " -tv" - elif self.radioButton_3.isChecked(): - arg += " -app" - elif self.radioButton_4.isChecked(): - arg += " -intl" - if self.radioButton_5.isChecked(): + args = '' + + # 下载地址 + args += f' {self.lineEdit_url.text()} ' + + # 画质选择 + if self.radioButton_dfn_priority.isChecked(): pass - elif self.radioButton_6.isChecked(): - arg += " -hevc" - elif self.radioButton_7.isChecked(): - arg += " -avc" - elif self.radioButton_8.isChecked(): - arg += " -av1" + elif self.radioButton_dfn_1080P.isChecked(): + args += ' --dfn-priority "1080P 高清" ' + elif self.radioButton_dfn_720P.isChecked(): + args += ' --dfn-priority "720P 高清" ' + elif self.radioButton_dfn_480P.isChecked(): + args += ' --dfn-priority "480P 清晰" ' + elif self.radioButton_dfn_360P.isChecked(): + args += ' --dfn-priority "360P 流畅" ' + elif self.radioButton_dfn_more.isChecked(): + if self.comboBox_dfn_more.currentIndex()!=0: + dfn = self.comboBox_dfn_more.itemText(self.comboBox_dfn_more.currentIndex()) + args += f' --dfn-priority "{dfn}"' + + # 下载源选择 + if self.comboBox_source.currentIndex()!=0: + choice = ['', '-tv', '-app', '-intl'] + args += ' ' + choice[self.comboBox_source.currentIndex()] + ' ' + + # 下载视频编码选择 + if self.comboBox_source.currentIndex()!=0: + choice = ['', 'AVC', 'AV1', 'HEVC'] + args += ' --encoding-priority ' + choice[self.comboBox_source.currentIndex()] + ' ' + + # 指定FFmpeg路径 if self.checkBox_ffmpeg.isChecked(): - arg += f" --ffmpeg-path \"{self.lineEdit_ffmpeg.text()}\"" - if self.checkBox_aria2c.isChecked(): - arg += f" --use-aria2c --aria2c-path \"{self.lineEdit_aria2c.text()}\"" - if self.checkBox_25.isChecked(): - arg += " -p ALL" + args += f' --ffmpeg-path "{self.lineEdit_ffmpeg.text()}" ' + + # 下载分P选项 + if self.radioButton_p_current.isChecked(): + pass + elif self.radioButton_p_all.isChecked(): + args += ' -p ALL ' + elif self.radioButton_p_new.isChecked(): + args += ' -p NEW ' + + # 高级选项 if self.advanced: - if self.checkBox_1.isChecked(): - arg += " --use-mp4box" - if self.checkBox_2.isChecked(): - arg += " -info" - if self.checkBox_3.isChecked(): - arg += " -hs" - if self.checkBox_4.isChecked(): - arg += " -ia" - if self.checkBox_5.isChecked(): - arg += " --show-all" - if self.checkBox_6.isChecked(): - arg += f" --aria2c-proxy {self.lineEdit_1.text()}" - if self.checkBox_7.isChecked(): - arg += " -mt" - if self.checkBox_8.isChecked(): - arg += f" -p {self.lineEdit_2.text()}" - if self.checkBox_9.isChecked(): - arg += " --audio-only" - if self.checkBox_10.isChecked(): - arg += " --video-only" - if self.checkBox_11.isChecked(): - arg += " --sub-only" - if self.checkBox_12.isChecked(): - arg += " --no-padding-page-num" - if self.checkBox_13.isChecked(): - arg += " --debug" - if self.checkBox_14.isChecked(): - arg += " --skip-mux" - if self.checkBox_15.isChecked(): - arg += " --skip-subtitle" - if self.checkBox_16.isChecked(): - arg += " --skip-cover" - if self.checkBox_17.isChecked(): - arg += " -dd" - if self.checkBox_18.isChecked(): - arg += " --add-dfn-subfix" - if self.checkBox_19.isChecked(): - arg += " --no-part-prefix" - if self.checkBox_20.isChecked(): - arg += f" --language {self.lineEdit_3.text()}" - if self.checkBox_21.isChecked(): - arg += f" -c {self.lineEdit_4.text()}" - if self.checkBox_22.isChecked(): - arg += f" -token {self.lineEdit_5.text()}" - if self.checkBox_23.isChecked(): - arg += f" --mp4box-path \"{self.lineEdit_6.text()}\"" - if self.checkBox_24.isChecked(): - arg += f" --delay-per-page {self.lineEdit_7.text()}" - arg += f" --work-dir \"{self.lineEdit_dir.text()}\"" - arg += f" {self.lineEdit_url.text()}" - self.job1 = RunBBDown(arg) + # 下载选项 + if self.checkBox_audio_only.isChecked(): + args += ' --audio-only ' + if self.checkBox_video_only.isChecked(): + args += ' --video-only ' + if self.checkBox_sub_only.isChecked(): + args += ' --sub-only ' + if self.checkBox_danmaku.isChecked(): + args += ' -dd ' + + # 交互选项 + if self.checkBox_ia.isChecked(): + args += ' -ia ' + if self.checkBox_info.isChecked(): + args += ' -info ' + if self.checkBox_hs.isChecked(): + args += ' -hs ' + if self.checkBox_debug.isChecked(): + args += ' --debug ' + + # Cookies + if self.checkBox_token.isChecked(): + args += f' -token "{self.lineEdit_token.text()}" ' + if self.checkBox_c.isChecked(): + args += f' -c "{self.lineEdit_c.text()}" ' + + # 跳过选项 + if self.checkBox_skip_subtitle.isChecked(): + args += ' --skip-subtitle ' + if self.checkBox_skip_cover.isChecked(): + args += ' --skip-cover ' + if self.checkBox_skip_mux.isChecked(): + args += ' --skip-mux ' + + # MP4box + if self.checkBox_mp4box.isChecked(): + args += ' --use-mp4box ' + if self.checkBox_mp4box_path.isChecked(): + args += f' --mp4box-path "{self.lineEdit_mp4box_path.text()}" ' + + # 其他 + if self.checkBox_mt.isChecked(): + args += ' -mt ' + if self.checkBox_language.isChecked(): + args += f' --language {self.lineEdit_language.text()} ' + + # 分P + if self.checkBox_p_show_all.isChecked(): + args += ' --show-all ' + if self.checkBox_p.isChecked(): + args += f' -p {self.lineEdit_p.text()} ' + if self.checkBox_p_delay.isChecked(): + args += f' --delay-per-page {self.lineEdit_p_delay.text()} ' + + # aria2c + if self.checkBox_use_aria2c.isChecked(): + args += ' --use-aria2c ' + if self.checkBox_aria2c_path.isChecked(): + args += f' --aria2c-path "{self.lineEdit_aria2c_path.text()}" ' + if self.checkBox_aria2c_proxy.isChecked(): + args += f' --aria2c-proxy {self.lineEdit_aria2c_proxy.text()} ' + + # 文件名选项 + if self.checkBox_F.isChecked(): + args += f' -F "{self.lineEdit_F.text()}" ' + if self.checkBox_M.isChecked(): + args += f' -M "{self.lineEdit_M.text()}" ' + + # 下载路径 + args += f' --work-dir "{self.lineEdit_dir.text()}" ' + + self.job1 = RunBBDown(args) self.job1.start() def advanced(self): if not self.advanced: self.pushButton_advanced.setText("简易选项<") - self.resize(1220, 500) + self.resize(1560, 500) self.advanced = True else: self.pushButton_advanced.setText("高级选项>") diff --git a/README.md b/README.md index eadcd3a..8858845 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ BBDown的图形化版本,亦保留有命令行 ## 特性 - [x] 记忆下载参数 -- [x] 下载全部剧集(分片) +- [x] 下载剧集选项 - [x] 优先显示常用选项,亦保留有所有功能 ## 下载 @@ -44,8 +44,7 @@ python BBDown_GUI.py --> -## 相关Repositories +## 相关Repository - [BBDown_hk](https://github.com/1299172402/BBDown_hk) - (个人站点解析,替换UPOS加速下载,只有从网页端下载有效) diff --git a/UI/about.py b/UI/about.py index e9eca50..f4fb400 100644 --- a/UI/about.py +++ b/UI/about.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Form implementation generated from reading ui file 'D:\Desktop\BBDown\UI\about.ui' +# Form implementation generated from reading ui file 'D:\Desktop\BBDown_GUI\UI\about.ui' # # Created by: PyQt5 UI code generator 5.15.4 # @@ -14,19 +14,22 @@ class Ui_Form_about(object): def setupUi(self, Form_about): Form_about.setObjectName("Form_about") - Form_about.resize(805, 300) + Form_about.resize(648, 300) icon = QtGui.QIcon() - icon.addPixmap(QtGui.QPixmap("D:\\Desktop\\BBDown\\UI\\favicon.ico"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + icon.addPixmap(QtGui.QPixmap("D:\\Desktop\\BBDown_GUI\\UI\\favicon.ico"), QtGui.QIcon.Normal, QtGui.QIcon.Off) Form_about.setWindowIcon(icon) self.textBrowser = QtWidgets.QTextBrowser(Form_about) - self.textBrowser.setGeometry(QtCore.QRect(20, 80, 771, 192)) + self.textBrowser.setGeometry(QtCore.QRect(20, 61, 611, 211)) self.textBrowser.setObjectName("textBrowser") self.label = QtWidgets.QLabel(Form_about) - self.label.setGeometry(QtCore.QRect(20, 50, 81, 20)) + self.label.setGeometry(QtCore.QRect(230, 20, 171, 31)) + font = QtGui.QFont() + font.setPointSize(11) + font.setBold(True) + font.setWeight(75) + self.label.setFont(font) + self.label.setTextFormat(QtCore.Qt.AutoText) self.label.setObjectName("label") - self.label_2 = QtWidgets.QLabel(Form_about) - self.label_2.setGeometry(QtCore.QRect(560, 10, 231, 71)) - self.label_2.setObjectName("label_2") self.retranslateUi(Form_about) QtCore.QMetaObject.connectSlotsByName(Form_about) @@ -38,451 +41,27 @@ def retranslateUi(self, Form_about): "\n" -"

BBDown(https://github.com/nilaoda/BBDown)

\n" -"

---------------------------------------------

\n" -"

MIT License

\n" -"


\n" -"

Copyright (c) 2020 nilaoda

\n" -"


\n" -"

Permission is hereby granted, free of charge, to any person obtaining a copy

\n" -"

of this software and associated documentation files (the "Software"), to deal

\n" -"

in the Software without restriction, including without limitation the rights

\n" -"

to use, copy, modify, merge, publish, distribute, sublicense, and/or sell

\n" -"

copies of the Software, and to permit persons to whom the Software is

\n" -"

furnished to do so, subject to the following conditions:

\n" -"


\n" -"

The above copyright notice and this permission notice shall be included in all

\n" -"

copies or substantial portions of the Software.

\n" -"


\n" -"

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR

\n" -"

IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,

\n" -"

FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE

\n" -"

AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER

\n" -"

LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,

\n" -"

OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE

\n" -"

SOFTWARE.

\n" -"


\n" -"

aria2c(https://github.com/aria2/aria2)

\n" -"

---------------------------------------------

\n" -"

GNU GENERAL PUBLIC LICENSE

\n" -"

Version 2, June 1991

\n" -"


\n" -"

Copyright (C) 1989, 1991 Free Software Foundation, Inc.

\n" -"

51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA

\n" -"

Everyone is permitted to copy and distribute verbatim copies

\n" -"

of this license document, but changing it is not allowed.

\n" -"


\n" -"

Preamble

\n" -"


\n" -"

The licenses for most software are designed to take away your

\n" -"

freedom to share and change it. By contrast, the GNU General Public

\n" -"

License is intended to guarantee your freedom to share and change free

\n" -"

software--to make sure the software is free for all its users. This

\n" -"

General Public License applies to most of the Free Software

\n" -"

Foundation\'s software and to any other program whose authors commit to

\n" -"

using it. (Some other Free Software Foundation software is covered by

\n" -"

the GNU Library General Public License instead.) You can apply it to

\n" -"

your programs, too.

\n" -"


\n" -"

When we speak of free software, we are referring to freedom, not

\n" -"

price. Our General Public Licenses are designed to make sure that you

\n" -"

have the freedom to distribute copies of free software (and charge for

\n" -"

this service if you wish), that you receive source code or can get it

\n" -"

if you want it, that you can change the software or use pieces of it

\n" -"

in new free programs; and that you know you can do these things.

\n" -"


\n" -"

To protect your rights, we need to make restrictions that forbid

\n" -"

anyone to deny you these rights or to ask you to surrender the rights.

\n" -"

These restrictions translate to certain responsibilities for you if you

\n" -"

distribute copies of the software, or if you modify it.

\n" -"


\n" -"

For example, if you distribute copies of such a program, whether

\n" -"

gratis or for a fee, you must give the recipients all the rights that

\n" -"

you have. You must make sure that they, too, receive or can get the

\n" -"

source code. And you must show them these terms so they know their

\n" -"

rights.

\n" -"


\n" -"

We protect your rights with two steps: (1) copyright the software, and

\n" -"

(2) offer you this license which gives you legal permission to copy,

\n" -"

distribute and/or modify the software.

\n" -"


\n" -"

Also, for each author\'s protection and ours, we want to make certain

\n" -"

that everyone understands that there is no warranty for this free

\n" -"

software. If the software is modified by someone else and passed on, we

\n" -"

want its recipients to know that what they have is not the original, so

\n" -"

that any problems introduced by others will not reflect on the original

\n" -"

authors\' reputations.

\n" -"


\n" -"

Finally, any free program is threatened constantly by software

\n" -"

patents. We wish to avoid the danger that redistributors of a free

\n" -"

program will individually obtain patent licenses, in effect making the

\n" -"

program proprietary. To prevent this, we have made it clear that any

\n" -"

patent must be licensed for everyone\'s free use or not licensed at all.

\n" -"


\n" -"

The precise terms and conditions for copying, distribution and

\n" -"

modification follow.

\n" -"

GNU GENERAL PUBLIC LICENSE

\n" -"

TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION

\n" -"


\n" -"

0. This License applies to any program or other work which contains

\n" -"

a notice placed by the copyright holder saying it may be distributed

\n" -"

under the terms of this General Public License. The "Program", below,

\n" -"

refers to any such program or work, and a "work based on the Program"

\n" -"

means either the Program or any derivative work under copyright law:

\n" -"

that is to say, a work containing the Program or a portion of it,

\n" -"

either verbatim or with modifications and/or translated into another

\n" -"

language. (Hereinafter, translation is included without limitation in

\n" -"

the term "modification".) Each licensee is addressed as "you".

\n" -"


\n" -"

Activities other than copying, distribution and modification are not

\n" -"

covered by this License; they are outside its scope. The act of

\n" -"

running the Program is not restricted, and the output from the Program

\n" -"

is covered only if its contents constitute a work based on the

\n" -"

Program (independent of having been made by running the Program).

\n" -"

Whether that is true depends on what the Program does.

\n" -"


\n" -"

1. You may copy and distribute verbatim copies of the Program\'s

\n" -"

source code as you receive it, in any medium, provided that you

\n" -"

conspicuously and appropriately publish on each copy an appropriate

\n" -"

copyright notice and disclaimer of warranty; keep intact all the

\n" -"

notices that refer to this License and to the absence of any warranty;

\n" -"

and give any other recipients of the Program a copy of this License

\n" -"

along with the Program.

\n" -"


\n" -"

You may charge a fee for the physical act of transferring a copy, and

\n" -"

you may at your option offer warranty protection in exchange for a fee.

\n" -"


\n" -"

2. You may modify your copy or copies of the Program or any portion

\n" -"

of it, thus forming a work based on the Program, and copy and

\n" -"

distribute such modifications or work under the terms of Section 1

\n" -"

above, provided that you also meet all of these conditions:

\n" -"


\n" -"

a) You must cause the modified files to carry prominent notices

\n" -"

stating that you changed the files and the date of any change.

\n" -"


\n" -"

b) You must cause any work that you distribute or publish, that in

\n" -"

whole or in part contains or is derived from the Program or any

\n" -"

part thereof, to be licensed as a whole at no charge to all third

\n" -"

parties under the terms of this License.

\n" -"


\n" -"

c) If the modified program normally reads commands interactively

\n" -"

when run, you must cause it, when started running for such

\n" -"

interactive use in the most ordinary way, to print or display an

\n" -"

announcement including an appropriate copyright notice and a

\n" -"

notice that there is no warranty (or else, saying that you provide

\n" -"

a warranty) and that users may redistribute the program under

\n" -"

these conditions, and telling the user how to view a copy of this

\n" -"

License. (Exception: if the Program itself is interactive but

\n" -"

does not normally print such an announcement, your work based on

\n" -"

the Program is not required to print an announcement.)

\n" -"

These requirements apply to the modified work as a whole. If

\n" -"

identifiable sections of that work are not derived from the Program,

\n" -"

and can be reasonably considered independent and separate works in

\n" -"

themselves, then this License, and its terms, do not apply to those

\n" -"

sections when you distribute them as separate works. But when you

\n" -"

distribute the same sections as part of a whole which is a work based

\n" -"

on the Program, the distribution of the whole must be on the terms of

\n" -"

this License, whose permissions for other licensees extend to the

\n" -"

entire whole, and thus to each and every part regardless of who wrote it.

\n" -"


\n" -"

Thus, it is not the intent of this section to claim rights or contest

\n" -"

your rights to work written entirely by you; rather, the intent is to

\n" -"

exercise the right to control the distribution of derivative or

\n" -"

collective works based on the Program.

\n" -"


\n" -"

In addition, mere aggregation of another work not based on the Program

\n" -"

with the Program (or with a work based on the Program) on a volume of

\n" -"

a storage or distribution medium does not bring the other work under

\n" -"

the scope of this License.

\n" -"


\n" -"

3. You may copy and distribute the Program (or a work based on it,

\n" -"

under Section 2) in object code or executable form under the terms of

\n" -"

Sections 1 and 2 above provided that you also do one of the following:

\n" -"


\n" -"

a) Accompany it with the complete corresponding machine-readable

\n" -"

source code, which must be distributed under the terms of Sections

\n" -"

1 and 2 above on a medium customarily used for software interchange; or,

\n" -"


\n" -"

b) Accompany it with a written offer, valid for at least three

\n" -"

years, to give any third party, for a charge no more than your

\n" -"

cost of physically performing source distribution, a complete

\n" -"

machine-readable copy of the corresponding source code, to be

\n" -"

distributed under the terms of Sections 1 and 2 above on a medium

\n" -"

customarily used for software interchange; or,

\n" -"


\n" -"

c) Accompany it with the information you received as to the offer

\n" -"

to distribute corresponding source code. (This alternative is

\n" -"

allowed only for noncommercial distribution and only if you

\n" -"

received the program in object code or executable form with such

\n" -"

an offer, in accord with Subsection b above.)

\n" -"


\n" -"

The source code for a work means the preferred form of the work for

\n" -"

making modifications to it. For an executable work, complete source

\n" -"

code means all the source code for all modules it contains, plus any

\n" -"

associated interface definition files, plus the scripts used to

\n" -"

control compilation and installation of the executable. However, as a

\n" -"

special exception, the source code distributed need not include

\n" -"

anything that is normally distributed (in either source or binary

\n" -"

form) with the major components (compiler, kernel, and so on) of the

\n" -"

operating system on which the executable runs, unless that component

\n" -"

itself accompanies the executable.

\n" -"


\n" -"

If distribution of executable or object code is made by offering

\n" -"

access to copy from a designated place, then offering equivalent

\n" -"

access to copy the source code from the same place counts as

\n" -"

distribution of the source code, even though third parties are not

\n" -"

compelled to copy the source along with the object code.

\n" -"

4. You may not copy, modify, sublicense, or distribute the Program

\n" -"

except as expressly provided under this License. Any attempt

\n" -"

otherwise to copy, modify, sublicense or distribute the Program is

\n" -"

void, and will automatically terminate your rights under this License.

\n" -"

However, parties who have received copies, or rights, from you under

\n" -"

this License will not have their licenses terminated so long as such

\n" -"

parties remain in full compliance.

\n" -"


\n" -"

5. You are not required to accept this License, since you have not

\n" -"

signed it. However, nothing else grants you permission to modify or

\n" -"

distribute the Program or its derivative works. These actions are

\n" -"

prohibited by law if you do not accept this License. Therefore, by

\n" -"

modifying or distributing the Program (or any work based on the

\n" -"

Program), you indicate your acceptance of this License to do so, and

\n" -"

all its terms and conditions for copying, distributing or modifying

\n" -"

the Program or works based on it.

\n" -"


\n" -"

6. Each time you redistribute the Program (or any work based on the

\n" -"

Program), the recipient automatically receives a license from the

\n" -"

original licensor to copy, distribute or modify the Program subject to

\n" -"

these terms and conditions. You may not impose any further

\n" -"

restrictions on the recipients\' exercise of the rights granted herein.

\n" -"

You are not responsible for enforcing compliance by third parties to

\n" -"

this License.

\n" -"


\n" -"

7. If, as a consequence of a court judgment or allegation of patent

\n" -"

infringement or for any other reason (not limited to patent issues),

\n" -"

conditions are imposed on you (whether by court order, agreement or

\n" -"

otherwise) that contradict the conditions of this License, they do not

\n" -"

excuse you from the conditions of this License. If you cannot

\n" -"

distribute so as to satisfy simultaneously your obligations under this

\n" -"

License and any other pertinent obligations, then as a consequence you

\n" -"

may not distribute the Program at all. For example, if a patent

\n" -"

license would not permit royalty-free redistribution of the Program by

\n" -"

all those who receive copies directly or indirectly through you, then

\n" -"

the only way you could satisfy both it and this License would be to

\n" -"

refrain entirely from distribution of the Program.

\n" -"


\n" -"

If any portion of this section is held invalid or unenforceable under

\n" -"

any particular circumstance, the balance of the section is intended to

\n" -"

apply and the section as a whole is intended to apply in other

\n" -"

circumstances.

\n" -"


\n" -"

It is not the purpose of this section to induce you to infringe any

\n" -"

patents or other property right claims or to contest validity of any

\n" -"

such claims; this section has the sole purpose of protecting the

\n" -"

integrity of the free software distribution system, which is

\n" -"

implemented by public license practices. Many people have made

\n" -"

generous contributions to the wide range of software distributed

\n" -"

through that system in reliance on consistent application of that

\n" -"

system; it is up to the author/donor to decide if he or she is willing

\n" -"

to distribute software through any other system and a licensee cannot

\n" -"

impose that choice.

\n" -"


\n" -"

This section is intended to make thoroughly clear what is believed to

\n" -"

be a consequence of the rest of this License.

\n" -"

8. If the distribution and/or use of the Program is restricted in

\n" -"

certain countries either by patents or by copyrighted interfaces, the

\n" -"

original copyright holder who places the Program under this License

\n" -"

may add an explicit geographical distribution limitation excluding

\n" -"

those countries, so that distribution is permitted only in or among

\n" -"

countries not thus excluded. In such case, this License incorporates

\n" -"

the limitation as if written in the body of this License.

\n" -"


\n" -"

9. The Free Software Foundation may publish revised and/or new versions

\n" -"

of the General Public License from time to time. Such new versions will

\n" -"

be similar in spirit to the present version, but may differ in detail to

\n" -"

address new problems or concerns.

\n" -"


\n" -"

Each version is given a distinguishing version number. If the Program

\n" -"

specifies a version number of this License which applies to it and "any

\n" -"

later version", you have the option of following the terms and conditions

\n" -"

either of that version or of any later version published by the Free

\n" -"

Software Foundation. If the Program does not specify a version number of

\n" -"

this License, you may choose any version ever published by the Free Software

\n" -"

Foundation.

\n" -"


\n" -"

10. If you wish to incorporate parts of the Program into other free

\n" -"

programs whose distribution conditions are different, write to the author

\n" -"

to ask for permission. For software which is copyrighted by the Free

\n" -"

Software Foundation, write to the Free Software Foundation; we sometimes

\n" -"

make exceptions for this. Our decision will be guided by the two goals

\n" -"

of preserving the free status of all derivatives of our free software and

\n" -"

of promoting the sharing and reuse of software generally.

\n" -"


\n" -"

NO WARRANTY

\n" -"


\n" -"

11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY

\n" -"

FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN

\n" -"

OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES

\n" -"

PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED

\n" -"

OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF

\n" -"

MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS

\n" -"

TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE

\n" -"

PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,

\n" -"

REPAIR OR CORRECTION.

\n" -"


\n" -"

12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING

\n" -"

WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR

\n" -"

REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,

\n" -"

INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING

\n" -"

OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED

\n" -"

TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY

\n" -"

YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER

\n" -"

PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE

\n" -"

POSSIBILITY OF SUCH DAMAGES.

\n" -"


\n" -"

END OF TERMS AND CONDITIONS

\n" -"

How to Apply These Terms to Your New Programs

\n" -"


\n" -"

If you develop a new program, and you want it to be of the greatest

\n" -"

possible use to the public, the best way to achieve this is to make it

\n" -"

free software which everyone can redistribute and change under these terms.

\n" -"


\n" -"

To do so, attach the following notices to the program. It is safest

\n" -"

to attach them to the start of each source file to most effectively

\n" -"

convey the exclusion of warranty; and each file should have at least

\n" -"

the "copyright" line and a pointer to where the full notice is found.

\n" -"


\n" -"

<one line to give the program\'s name and a brief idea of what it does.>

\n" -"

Copyright (C) <year> <name of author>

\n" -"


\n" -"

This program is free software; you can redistribute it and/or modify

\n" -"

it under the terms of the GNU General Public License as published by

\n" -"

the Free Software Foundation; either version 2 of the License, or

\n" -"

(at your option) any later version.

\n" -"


\n" -"

This program is distributed in the hope that it will be useful,

\n" -"

but WITHOUT ANY WARRANTY; without even the implied warranty of

\n" -"

MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the

\n" -"

GNU General Public License for more details.

\n" -"


\n" -"

You should have received a copy of the GNU General Public License

\n" -"

along with this program; if not, write to the Free Software

\n" -"

Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA

\n" -"


\n" -"


\n" -"

Also add information on how to contact you by electronic and paper mail.

\n" -"


\n" -"

If the program is interactive, make it output a short notice like this

\n" -"

when it starts in an interactive mode:

\n" -"


\n" -"

Gnomovision version 69, Copyright (C) year name of author

\n" -"

Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w\'.

\n" -"

This is free software, and you are welcome to redistribute it

\n" -"

under certain conditions; type `show c\' for details.

\n" -"


\n" -"

The hypothetical commands `show w\' and `show c\' should show the appropriate

\n" -"

parts of the General Public License. Of course, the commands you use may

\n" -"

be called something other than `show w\' and `show c\'; they could even be

\n" -"

mouse-clicks or menu items--whatever suits your program.

\n" -"


\n" -"

You should also get your employer (if you work as a programmer) or your

\n" -"

school, if any, to sign a "copyright disclaimer" for the program, if

\n" -"

necessary. Here is a sample; alter the names:

\n" -"


\n" -"

Yoyodyne, Inc., hereby disclaims all copyright interest in the program

\n" -"

`Gnomovision\' (which makes passes at compilers) written by James Hacker.

\n" -"


\n" -"

<signature of Ty Coon>, 1 April 1989

\n" -"

Ty Coon, President of Vice

\n" -"


\n" -"

This General Public License does not permit incorporating your program into

\n" -"

proprietary programs. If your program is a subroutine library, you may

\n" -"

consider it more useful to permit linking proprietary applications with the

\n" -"

library. If this is what you want to do, use the GNU Library General

\n" -"

Public License instead of this License.

\n" -"

FFmpeg(https://github.com/FFmpeg/FFmpeg)

\n" -"

---------------------------------------------

\n" -"

License

\n" -"

Most files in FFmpeg are under the GNU Lesser General Public License version 2.1 or later (LGPL v2.1+). Read the file COPYING.LGPLv2.1 for details. Some other files have MIT/X11/BSD-style licenses. In combination the LGPL v2.1+ applies to FFmpeg.

\n" -"

Some optional parts of FFmpeg are licensed under the GNU General Public License version 2 or later (GPL v2+). See the file COPYING.GPLv2 for details. None of these parts are used by default, you have to explicitly pass --enable-gpl to configure to activate them. In this case, FFmpeg\'s license changes to GPL v2+.

\n" -"

Specifically, the GPL parts of FFmpeg are:

\n" -"\n" -"\n" -"

Should you, for whatever reason, prefer to use version 3 of the (L)GPL, then the configure parameter --enable-version3 will activate this licensing option for you. Read the file COPYING.LGPLv3 or, if you have enabled GPL parts, COPYING.GPLv3 to learn the exact legal terms that apply in this case.

\n" -"

There are a handful of files under other licensing terms, namely:

\n" -"\n" -"

External libraries

\n" -"

FFmpeg can be combined with a number of external libraries, which sometimes affect the licensing of binaries resulting from the combination.

\n" -"

Compatible libraries

\n" -"

The following libraries are under GPL version 2:

\n" -"\n" -"

When combining them with FFmpeg, FFmpeg needs to be licensed as GPL as well by passing --enable-gpl to configure.

\n" -"

The following libraries are under LGPL version 3:

\n" -"\n" -"

When combining them with FFmpeg, use the configure option --enable-version3 to upgrade FFmpeg to the LGPL v3.

\n" -"

The VMAF, mbedTLS, RK MPI, OpenCORE and VisualOn libraries are under the Apache License 2.0. That license is incompatible with the LGPL v2.1 and the GPL v2, but not with version 3 of those licenses. So to combine these libraries with FFmpeg, the license version needs to be upgraded by passing --enable-version3 to configure.

\n" -"

The smbclient library is under the GPL v3, to combine it with FFmpeg, the options --enable-gpl and --enable-version3 have to be passed to configure to upgrade FFmpeg to the GPL v3.

\n" -"

Incompatible libraries

\n" -"

There are certain libraries you can combine with FFmpeg whose licenses are not compatible with the GPL and/or the LGPL. If you wish to enable these libraries, even in circumstances that their license may be incompatible, pass --enable-nonfree to configure. This will cause the resulting binary to be unredistributable.

\n" -"

The Fraunhofer FDK AAC and OpenSSL libraries are under licenses which are incompatible with the GPLv2 and v3. To the best of our knowledge, they are compatible with the LGPL.

")) - self.label.setText(_translate("Form_about", "致谢&协议")) - self.label_2.setText(_translate("Form_about", "BBDown - GUI 1.0.0.20220203\n" -"[Author] ZhiyuShang\n" -"[License] MIT License")) +"

## BBDown - GUI 1.0.3(20220507)

\n" +"


\n" +"

[Author] ZhiyuShang

\n" +"

[License] MIT License

\n" +"

[Repository] https://github.com/1299172402/BBDown_GUI

\n" +"

[BBDown] v1.4.9

\n" +"


\n" +"


\n" +"

## 致谢

\n" +"


\n" +"

- BBDown(https://github.com/nilaoda/BBDown)

\n" +"


\n" +"

[License] https://github.com/nilaoda/BBDown/blob/master/LICENSE

\n" +"


\n" +"


\n" +"

- aria2c(https://github.com/aria2/aria2)

\n" +"


\n" +"

[License] https://github.com/aria2/aria2/blob/master/COPYING

\n" +"


\n" +"


\n" +"

- FFmpeg(https://github.com/FFmpeg/FFmpeg)

\n" +"


\n" +"

[License] https://github.com/FFmpeg/FFmpeg/blob/master/LICENSE.md

")) + self.label.setText(_translate("Form_about", "关于 BBDown - GUI")) diff --git a/UI/about.ui b/UI/about.ui index a8a2669..0824cbb 100644 --- a/UI/about.ui +++ b/UI/about.ui @@ -6,7 +6,7 @@ 0 0 - 805 + 648 300 @@ -21,9 +21,9 @@ 20 - 80 - 771 - 192 + 61 + 611 + 211 @@ -31,478 +31,52 @@ <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'SimSun'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">BBDown</span>(<a href="https://github.com/nilaoda/BBDown"><span style=" text-decoration: underline; color:#0000ff;">https://github.com/nilaoda/BBDown</span></a>)</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">---------------------------------------------</p> -<p style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">MIT License</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">Copyright (c) 2020 nilaoda</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">Permission is hereby granted, free of charge, to any person obtaining a copy</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">of this software and associated documentation files (the &quot;Software&quot;), to deal</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">in the Software without restriction, including without limitation the rights</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">to use, copy, modify, merge, publish, distribute, sublicense, and/or sell</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">copies of the Software, and to permit persons to whom the Software is</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">furnished to do so, subject to the following conditions:</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">The above copyright notice and this permission notice shall be included in all</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">copies or substantial portions of the Software.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE</span></p> -<p style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">SOFTWARE.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">aria2c</span>(<a href="https://github.com/aria2/aria2"><span style=" text-decoration: underline; color:#0000ff;">https://github.com/aria2/aria2</span></a>)</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">---------------------------------------------</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> GNU GENERAL PUBLIC LICENSE</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> Version 2, June 1991</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> Copyright (C) 1989, 1991 Free Software Foundation, Inc.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> Everyone is permitted to copy and distribute verbatim copies</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> of this license document, but changing it is not allowed.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> Preamble</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> The licenses for most software are designed to take away your</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">freedom to share and change it. By contrast, the GNU General Public</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">License is intended to guarantee your freedom to share and change free</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">software--to make sure the software is free for all its users. This</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">General Public License applies to most of the Free Software</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">Foundation's software and to any other program whose authors commit to</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">using it. (Some other Free Software Foundation software is covered by</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">the GNU Library General Public License instead.) You can apply it to</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">your programs, too.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> When we speak of free software, we are referring to freedom, not</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">price. Our General Public Licenses are designed to make sure that you</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">have the freedom to distribute copies of free software (and charge for</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">this service if you wish), that you receive source code or can get it</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">if you want it, that you can change the software or use pieces of it</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">in new free programs; and that you know you can do these things.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> To protect your rights, we need to make restrictions that forbid</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">anyone to deny you these rights or to ask you to surrender the rights.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">These restrictions translate to certain responsibilities for you if you</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">distribute copies of the software, or if you modify it.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> For example, if you distribute copies of such a program, whether</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">gratis or for a fee, you must give the recipients all the rights that</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">you have. You must make sure that they, too, receive or can get the</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">source code. And you must show them these terms so they know their</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">rights.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> We protect your rights with two steps: (1) copyright the software, and</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">(2) offer you this license which gives you legal permission to copy,</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">distribute and/or modify the software.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> Also, for each author's protection and ours, we want to make certain</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">that everyone understands that there is no warranty for this free</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">software. If the software is modified by someone else and passed on, we</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">want its recipients to know that what they have is not the original, so</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">that any problems introduced by others will not reflect on the original</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">authors' reputations.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> Finally, any free program is threatened constantly by software</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">patents. We wish to avoid the danger that redistributors of a free</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">program will individually obtain patent licenses, in effect making the</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">program proprietary. To prevent this, we have made it clear that any</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">patent must be licensed for everyone's free use or not licensed at all.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> The precise terms and conditions for copying, distribution and</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">modification follow.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> GNU GENERAL PUBLIC LICENSE</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> 0. This License applies to any program or other work which contains</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">a notice placed by the copyright holder saying it may be distributed</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">under the terms of this General Public License. The &quot;Program&quot;, below,</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">refers to any such program or work, and a &quot;work based on the Program&quot;</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">means either the Program or any derivative work under copyright law:</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">that is to say, a work containing the Program or a portion of it,</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">either verbatim or with modifications and/or translated into another</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">language. (Hereinafter, translation is included without limitation in</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">the term &quot;modification&quot;.) Each licensee is addressed as &quot;you&quot;.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">Activities other than copying, distribution and modification are not</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">covered by this License; they are outside its scope. The act of</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">running the Program is not restricted, and the output from the Program</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">is covered only if its contents constitute a work based on the</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">Program (independent of having been made by running the Program).</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">Whether that is true depends on what the Program does.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> 1. You may copy and distribute verbatim copies of the Program's</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">source code as you receive it, in any medium, provided that you</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">conspicuously and appropriately publish on each copy an appropriate</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">copyright notice and disclaimer of warranty; keep intact all the</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">notices that refer to this License and to the absence of any warranty;</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">and give any other recipients of the Program a copy of this License</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">along with the Program.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">You may charge a fee for the physical act of transferring a copy, and</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">you may at your option offer warranty protection in exchange for a fee.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> 2. You may modify your copy or copies of the Program or any portion</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">of it, thus forming a work based on the Program, and copy and</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">distribute such modifications or work under the terms of Section 1</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">above, provided that you also meet all of these conditions:</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> a) You must cause the modified files to carry prominent notices</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> stating that you changed the files and the date of any change.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> b) You must cause any work that you distribute or publish, that in</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> whole or in part contains or is derived from the Program or any</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> part thereof, to be licensed as a whole at no charge to all third</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> parties under the terms of this License.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> c) If the modified program normally reads commands interactively</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> when run, you must cause it, when started running for such</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> interactive use in the most ordinary way, to print or display an</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> announcement including an appropriate copyright notice and a</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> notice that there is no warranty (or else, saying that you provide</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> a warranty) and that users may redistribute the program under</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> these conditions, and telling the user how to view a copy of this</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> License. (Exception: if the Program itself is interactive but</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> does not normally print such an announcement, your work based on</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> the Program is not required to print an announcement.)</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">These requirements apply to the modified work as a whole. If</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">identifiable sections of that work are not derived from the Program,</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">and can be reasonably considered independent and separate works in</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">themselves, then this License, and its terms, do not apply to those</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">sections when you distribute them as separate works. But when you</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">distribute the same sections as part of a whole which is a work based</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">on the Program, the distribution of the whole must be on the terms of</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">this License, whose permissions for other licensees extend to the</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">entire whole, and thus to each and every part regardless of who wrote it.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">Thus, it is not the intent of this section to claim rights or contest</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">your rights to work written entirely by you; rather, the intent is to</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">exercise the right to control the distribution of derivative or</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">collective works based on the Program.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">In addition, mere aggregation of another work not based on the Program</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">with the Program (or with a work based on the Program) on a volume of</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">a storage or distribution medium does not bring the other work under</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">the scope of this License.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> 3. You may copy and distribute the Program (or a work based on it,</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">under Section 2) in object code or executable form under the terms of</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">Sections 1 and 2 above provided that you also do one of the following:</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> a) Accompany it with the complete corresponding machine-readable</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> source code, which must be distributed under the terms of Sections</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> 1 and 2 above on a medium customarily used for software interchange; or,</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> b) Accompany it with a written offer, valid for at least three</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> years, to give any third party, for a charge no more than your</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> cost of physically performing source distribution, a complete</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> machine-readable copy of the corresponding source code, to be</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> distributed under the terms of Sections 1 and 2 above on a medium</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> customarily used for software interchange; or,</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> c) Accompany it with the information you received as to the offer</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> to distribute corresponding source code. (This alternative is</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> allowed only for noncommercial distribution and only if you</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> received the program in object code or executable form with such</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> an offer, in accord with Subsection b above.)</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">The source code for a work means the preferred form of the work for</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">making modifications to it. For an executable work, complete source</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">code means all the source code for all modules it contains, plus any</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">associated interface definition files, plus the scripts used to</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">control compilation and installation of the executable. However, as a</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">special exception, the source code distributed need not include</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">anything that is normally distributed (in either source or binary</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">form) with the major components (compiler, kernel, and so on) of the</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">operating system on which the executable runs, unless that component</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">itself accompanies the executable.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">If distribution of executable or object code is made by offering</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">access to copy from a designated place, then offering equivalent</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">access to copy the source code from the same place counts as</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">distribution of the source code, even though third parties are not</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">compelled to copy the source along with the object code.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> 4. You may not copy, modify, sublicense, or distribute the Program</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">except as expressly provided under this License. Any attempt</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">otherwise to copy, modify, sublicense or distribute the Program is</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">void, and will automatically terminate your rights under this License.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">However, parties who have received copies, or rights, from you under</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">this License will not have their licenses terminated so long as such</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">parties remain in full compliance.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> 5. You are not required to accept this License, since you have not</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">signed it. However, nothing else grants you permission to modify or</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">distribute the Program or its derivative works. These actions are</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">prohibited by law if you do not accept this License. Therefore, by</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">modifying or distributing the Program (or any work based on the</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">Program), you indicate your acceptance of this License to do so, and</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">all its terms and conditions for copying, distributing or modifying</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">the Program or works based on it.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> 6. Each time you redistribute the Program (or any work based on the</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">Program), the recipient automatically receives a license from the</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">original licensor to copy, distribute or modify the Program subject to</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">these terms and conditions. You may not impose any further</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">restrictions on the recipients' exercise of the rights granted herein.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">You are not responsible for enforcing compliance by third parties to</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">this License.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> 7. If, as a consequence of a court judgment or allegation of patent</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">infringement or for any other reason (not limited to patent issues),</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">conditions are imposed on you (whether by court order, agreement or</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">otherwise) that contradict the conditions of this License, they do not</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">excuse you from the conditions of this License. If you cannot</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">distribute so as to satisfy simultaneously your obligations under this</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">License and any other pertinent obligations, then as a consequence you</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">may not distribute the Program at all. For example, if a patent</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">license would not permit royalty-free redistribution of the Program by</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">all those who receive copies directly or indirectly through you, then</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">the only way you could satisfy both it and this License would be to</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">refrain entirely from distribution of the Program.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">If any portion of this section is held invalid or unenforceable under</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">any particular circumstance, the balance of the section is intended to</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">apply and the section as a whole is intended to apply in other</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">circumstances.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">It is not the purpose of this section to induce you to infringe any</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">patents or other property right claims or to contest validity of any</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">such claims; this section has the sole purpose of protecting the</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">integrity of the free software distribution system, which is</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">implemented by public license practices. Many people have made</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">generous contributions to the wide range of software distributed</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">through that system in reliance on consistent application of that</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">system; it is up to the author/donor to decide if he or she is willing</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">to distribute software through any other system and a licensee cannot</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">impose that choice.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">This section is intended to make thoroughly clear what is believed to</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">be a consequence of the rest of this License.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> 8. If the distribution and/or use of the Program is restricted in</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">certain countries either by patents or by copyrighted interfaces, the</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">original copyright holder who places the Program under this License</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">may add an explicit geographical distribution limitation excluding</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">those countries, so that distribution is permitted only in or among</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">countries not thus excluded. In such case, this License incorporates</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">the limitation as if written in the body of this License.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> 9. The Free Software Foundation may publish revised and/or new versions</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">of the General Public License from time to time. Such new versions will</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">be similar in spirit to the present version, but may differ in detail to</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">address new problems or concerns.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">Each version is given a distinguishing version number. If the Program</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">specifies a version number of this License which applies to it and &quot;any</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">later version&quot;, you have the option of following the terms and conditions</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">either of that version or of any later version published by the Free</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">Software Foundation. If the Program does not specify a version number of</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">this License, you may choose any version ever published by the Free Software</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">Foundation.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> 10. If you wish to incorporate parts of the Program into other free</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">programs whose distribution conditions are different, write to the author</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">to ask for permission. For software which is copyrighted by the Free</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">Software Foundation, write to the Free Software Foundation; we sometimes</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">make exceptions for this. Our decision will be guided by the two goals</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">of preserving the free status of all derivatives of our free software and</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">of promoting the sharing and reuse of software generally.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> NO WARRANTY</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">PROVIDE THE PROGRAM &quot;AS IS&quot; WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">REPAIR OR CORRECTION.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">POSSIBILITY OF SUCH DAMAGES.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> END OF TERMS AND CONDITIONS</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> How to Apply These Terms to Your New Programs</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> If you develop a new program, and you want it to be of the greatest</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">possible use to the public, the best way to achieve this is to make it</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">free software which everyone can redistribute and change under these terms.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> To do so, attach the following notices to the program. It is safest</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">to attach them to the start of each source file to most effectively</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">convey the exclusion of warranty; and each file should have at least</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">the &quot;copyright&quot; line and a pointer to where the full notice is found.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> &lt;one line to give the program's name and a brief idea of what it does.&gt;</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> Copyright (C) &lt;year&gt; &lt;name of author&gt;</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> This program is free software; you can redistribute it and/or modify</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> it under the terms of the GNU General Public License as published by</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> the Free Software Foundation; either version 2 of the License, or</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> (at your option) any later version.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> This program is distributed in the hope that it will be useful,</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> but WITHOUT ANY WARRANTY; without even the implied warranty of</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> GNU General Public License for more details.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> You should have received a copy of the GNU General Public License</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> along with this program; if not, write to the Free Software</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">Also add information on how to contact you by electronic and paper mail.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">If the program is interactive, make it output a short notice like this</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">when it starts in an interactive mode:</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> Gnomovision version 69, Copyright (C) year name of author</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> This is free software, and you are welcome to redistribute it</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> under certain conditions; type `show c' for details.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">The hypothetical commands `show w' and `show c' should show the appropriate</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">parts of the General Public License. Of course, the commands you use may</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">be called something other than `show w' and `show c'; they could even be</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">mouse-clicks or menu items--whatever suits your program.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">You should also get your employer (if you work as a programmer) or your</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">school, if any, to sign a &quot;copyright disclaimer&quot; for the program, if</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">necessary. Here is a sample; alter the names:</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> Yoyodyne, Inc., hereby disclaims all copyright interest in the program</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> `Gnomovision' (which makes passes at compilers) written by James Hacker.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> &lt;signature of Ty Coon&gt;, 1 April 1989</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;"> Ty Coon, President of Vice</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Courier New'; color:#000000;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">This General Public License does not permit incorporating your program into</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">proprietary programs. If your program is a subroutine library, you may</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">consider it more useful to permit linking proprietary applications with the</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">library. If this is what you want to do, use the GNU Library General</span></p> -<p style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier New'; color:#000000;">Public License instead of this License.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">FFmpeg</span>(<a href="https://github.com/FFmpeg/FFmpeg"><span style=" text-decoration: underline; color:#0000ff;">https://github.com/FFmpeg/FFmpeg</span></a>)</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">---------------------------------------------</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:xx-large; font-weight:600; color:#24292f; background-color:#ffffff;">License</span></p> -<p style=" margin-top:0px; margin-bottom:16px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; background-color:#ffffff;"><span style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f; background-color:#ffffff;">Most files in FFmpeg are under the GNU Lesser General Public License version 2.1 or later (LGPL v2.1+). Read the file</span><span style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;"> </span><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px; color:#24292f;">COPYING.LGPLv2.1</span><span style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;"> for details. Some other files have MIT/X11/BSD-style licenses. In combination the LGPL v2.1+ applies to FFmpeg.</span></p> -<p style=" margin-top:0px; margin-bottom:16px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; background-color:#ffffff;"><span style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f; background-color:#ffffff;">Some optional parts of FFmpeg are licensed under the GNU General Public License version 2 or later (GPL v2+). See the file</span><span style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;"> </span><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px; color:#24292f;">COPYING.GPLv2</span><span style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;"> for details. None of these parts are used by default, you have to explicitly pass </span><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px; color:#24292f;">--enable-gpl</span><span style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;"> to configure to activate them. In this case, FFmpeg's license changes to GPL v2+.</span></p> -<p style=" margin-top:0px; margin-bottom:16px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; background-color:#ffffff;"><span style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f; background-color:#ffffff;">Specifically, the GPL parts of FFmpeg are:</span></p> -<ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:16px;">libpostproc</span></li> -<li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:4px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:16px;">optional x86 optimization in the files</span></li> -<ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 2;"><li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px;">libavcodec/x86/flac_dsp_gpl.asm</span></li> -<li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:4px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px;">libavcodec/x86/idct_mmx.c</span></li> -<li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:4px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px;">libavfilter/x86/vf_removegrain.asm</span></li></ul> -<li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:4px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:16px;">the following building and testing tools</span></li> -<ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 2;"><li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px;">compat/solaris/make_sunver.pl</span></li> -<li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:4px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px;">doc/t2h.pm</span></li> -<li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:4px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px;">doc/texi2pod.pl</span></li> -<li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:4px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px;">libswresample/tests/swresample.c</span></li> -<li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:4px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px;">tests/checkasm/*</span></li> -<li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:4px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px;">tests/tiny_ssim.c</span></li></ul> -<li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:4px; margin-bottom:16px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:16px;">the following filters in libavfilter:</span></li></ul> -<ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 2;"><li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px;">signature_lookup.c</span></li> -<li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:4px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px;">vf_blackframe.c</span></li> -<li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:4px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px;">vf_boxblur.c</span></li> -<li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:4px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px;">vf_colormatrix.c</span></li> -<li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:4px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px;">vf_cover_rect.c</span></li> -<li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:4px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px;">vf_cropdetect.c</span></li> -<li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:4px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px;">vf_delogo.c</span></li> -<li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:4px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px;">vf_eq.c</span></li> -<li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:4px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px;">vf_find_rect.c</span></li> -<li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:4px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px;">vf_fspp.c</span></li> -<li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:4px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px;">vf_histeq.c</span></li> -<li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:4px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px;">vf_hqdn3d.c</span></li> -<li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:4px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px;">vf_kerndeint.c</span></li> -<li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:4px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px;">vf_lensfun.c</span><span style=" font-size:16px;"> (GPL version 3 or later)</span></li> -<li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:4px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px;">vf_mcdeint.c</span></li> -<li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:4px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px;">vf_mpdecimate.c</span></li> -<li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:4px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px;">vf_nnedi.c</span></li> -<li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:4px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px;">vf_owdenoise.c</span></li> -<li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:4px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px;">vf_perspective.c</span></li> -<li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:4px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px;">vf_phase.c</span></li> -<li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:4px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px;">vf_pp.c</span></li> -<li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:4px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px;">vf_pp7.c</span></li> -<li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:4px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px;">vf_pullup.c</span></li> -<li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:4px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px;">vf_repeatfields.c</span></li> -<li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:4px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px;">vf_sab.c</span></li> -<li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:4px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px;">vf_signature.c</span></li> -<li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:4px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px;">vf_smartblur.c</span></li> -<li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:4px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px;">vf_spp.c</span></li> -<li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:4px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px;">vf_stereo3d.c</span></li> -<li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:4px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px;">vf_super2xsai.c</span></li> -<li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:4px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px;">vf_tinterlace.c</span></li> -<li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:4px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px;">vf_uspp.c</span></li> -<li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:4px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px;">vf_vaguedenoiser.c</span></li> -<li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:4px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px;">vsrc_mptestsrc.c</span></li></ul> -<p style=" margin-top:0px; margin-bottom:16px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; background-color:#ffffff;"><span style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f; background-color:#ffffff;">Should you, for whatever reason, prefer to use version 3 of the (L)GPL, then the configure parameter</span><span style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;"> </span><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px; color:#24292f;">--enable-version3</span><span style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;"> will activate this licensing option for you. Read the file </span><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px; color:#24292f;">COPYING.LGPLv3</span><span style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;"> or, if you have enabled GPL parts, </span><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px; color:#24292f;">COPYING.GPLv3</span><span style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;"> to learn the exact legal terms that apply in this case.</span></p> -<p style=" margin-top:0px; margin-bottom:16px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; background-color:#ffffff;"><span style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f; background-color:#ffffff;">There are a handful of files under other licensing terms, namely:</span></p> -<ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:16px;">The files </span><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px;">libavcodec/jfdctfst.c</span><span style=" font-size:16px;">, </span><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px;">libavcodec/jfdctint_template.c</span><span style=" font-size:16px;"> and </span><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px;">libavcodec/jrevdct.c</span><span style=" font-size:16px;"> are taken from libjpeg, see the top of the files for licensing details. Specifically note that you must credit the IJG in the documentation accompanying your program if you only distribute executables. You must also indicate any changes including additions and deletions to those three files in the documentation.</span></li> -<li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:4px; margin-bottom:16px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px;">tests/reference.pnm</span><span style=" font-size:16px;"> is under the expat license.</span></li></ul> -<h2 style=" margin-top:24px; margin-bottom:16px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; line-height:125%; background-color:#ffffff;"><a name="user-content-external-libraries"></a><span style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:x-large; font-weight:600; color:#24292f;">E</span><span style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:x-large; font-weight:600; color:#24292f;">xternal libraries</span></h2> -<p style=" margin-top:0px; margin-bottom:16px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; background-color:#ffffff;"><span style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f; background-color:#ffffff;">FFmpeg can be combined with a number of external libraries, which sometimes affect the licensing of binaries resulting from the combination.</span></p> -<h3 style=" margin-top:24px; margin-bottom:16px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; line-height:125%; background-color:#ffffff;"><a name="user-content-compatible-libraries"></a><span style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:large; font-weight:600; color:#24292f;">C</span><span style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:large; font-weight:600; color:#24292f;">ompatible libraries</span></h3> -<p style=" margin-top:0px; margin-bottom:16px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; background-color:#ffffff;"><span style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f; background-color:#ffffff;">The following libraries are under GPL version 2:</span></p> -<ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:16px;">avisynth</span></li> -<li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:4px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:16px;">frei0r</span></li> -<li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:4px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:16px;">libcdio</span></li> -<li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:4px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:16px;">libdavs2</span></li> -<li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:4px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:16px;">librubberband</span></li> -<li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:4px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:16px;">libvidstab</span></li> -<li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:4px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:16px;">libx264</span></li> -<li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:4px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:16px;">libx265</span></li> -<li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:4px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:16px;">libxavs</span></li> -<li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:4px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:16px;">libxavs2</span></li> -<li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:4px; margin-bottom:16px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:16px;">libxvid</span></li></ul> -<p style=" margin-top:0px; margin-bottom:16px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; background-color:#ffffff;"><span style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f; background-color:#ffffff;">When combining them with FFmpeg, FFmpeg needs to be licensed as GPL as well by passing</span><span style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;"> </span><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px; color:#24292f;">--enable-gpl</span><span style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;"> to configure.</span></p> -<p style=" margin-top:0px; margin-bottom:16px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; background-color:#ffffff;"><span style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f; background-color:#ffffff;">The following libraries are under LGPL version 3:</span></p> -<ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:16px;">gmp</span></li> -<li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:4px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:16px;">libaribb24</span></li> -<li style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;" style=" margin-top:4px; margin-bottom:16px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:16px;">liblensfun</span></li></ul> -<p style=" margin-top:0px; margin-bottom:16px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; background-color:#ffffff;"><span style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f; background-color:#ffffff;">When combining them with FFmpeg, use the configure option</span><span style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;"> </span><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px; color:#24292f;">--enable-version3</span><span style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;"> to upgrade FFmpeg to the LGPL v3.</span></p> -<p style=" margin-top:0px; margin-bottom:16px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; background-color:#ffffff;"><span style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f; background-color:#ffffff;">The VMAF, mbedTLS, RK MPI, OpenCORE and VisualOn libraries are under the Apache License 2.0. That license is incompatible with the LGPL v2.1 and the GPL v2, but not with version 3 of those licenses. So to combine these libraries with FFmpeg, the license version needs to be upgraded by passing</span><span style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;"> </span><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px; color:#24292f;">--enable-version3</span><span style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;"> to configure.</span></p> -<p style=" margin-top:0px; margin-bottom:16px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; background-color:#ffffff;"><span style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f; background-color:#ffffff;">The smbclient library is under the GPL v3, to combine it with FFmpeg, the options</span><span style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;"> </span><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px; color:#24292f;">--enable-gpl</span><span style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;"> and </span><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px; color:#24292f;">--enable-version3</span><span style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;"> have to be passed to configure to upgrade FFmpeg to the GPL v3.</span></p> -<h3 style=" margin-top:24px; margin-bottom:16px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; line-height:125%; background-color:#ffffff;"><a name="user-content-incompatible-libraries"></a><span style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:large; font-weight:600; color:#24292f;">I</span><span style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:large; font-weight:600; color:#24292f;">ncompatible libraries</span></h3> -<p style=" margin-top:0px; margin-bottom:16px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; background-color:#ffffff;"><span style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f; background-color:#ffffff;">There are certain libraries you can combine with FFmpeg whose licenses are not compatible with the GPL and/or the LGPL. If you wish to enable these libraries, even in circumstances that their license may be incompatible, pass</span><span style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;"> </span><span style=" font-family:'ui-monospace','SFMono-Regular','SF Mono','Menlo','Consolas','Liberation Mono','monospace'; font-size:16px; color:#24292f;">--enable-nonfree</span><span style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f;"> to configure. This will cause the resulting binary to be unredistributable.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; background-color:#ffffff;"><span style=" font-family:'-apple-system','BlinkMacSystemFont','Segoe UI','Helvetica','Arial','sans-serif','Apple Color Emoji','Segoe UI Emoji'; font-size:16px; color:#24292f; background-color:#ffffff;">The Fraunhofer FDK AAC and OpenSSL libraries are under licenses which are incompatible with the GPLv2 and v3. To the best of our knowledge, they are compatible with the LGPL.</span></p></body></html> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">## BBDown - GUI 1.0.3(20220507)</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><br /></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">[Author] ZhiyuShang</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">[License] MIT License</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">[Repository] https://github.com/1299172402/BBDown_GUI</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">[BBDown] v1.4.9</p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">## 致谢</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">- BBDown</span>(https://github.com/nilaoda/BBDown)</p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">[License] https://github.com/nilaoda/BBDown/blob/master/LICENSE</p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">- aria2c</span>(https://github.com/aria2/aria2)</p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">[License] https://github.com/aria2/aria2/blob/master/COPYING</p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">- FFmpeg</span>(https://github.com/FFmpeg/FFmpeg)</p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; background-color:#ffffff;"><span style=" background-color:#ffffff;">[License] https://github.com/FFmpeg/FFmpeg/blob/master/LICENSE.md</span></p></body></html> - 20 - 50 - 81 - 20 + 230 + 20 + 171 + 31 - - 致谢&协议 - - - - - - 560 - 10 - 231 - 71 - + + + 11 + 75 + true + - BBDown - GUI 1.0.0.20220203 -[Author] ZhiyuShang -[License] MIT License + 关于 BBDown - GUI + + + Qt::AutoText diff --git a/UI/main.py b/UI/main.py index 73d71c7..08cddb6 100644 --- a/UI/main.py +++ b/UI/main.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Form implementation generated from reading ui file 'D:\Desktop\BBDown\UI\main.ui' +# Form implementation generated from reading ui file 'D:\Desktop\BBDown_GUI\UI\main.ui' # # Created by: PyQt5 UI code generator 5.15.4 # @@ -14,19 +14,20 @@ class Ui_Form_main(object): def setupUi(self, Form_main): Form_main.setObjectName("Form_main") - Form_main.resize(620, 400) + Form_main.resize(1560, 500) Form_main.setMinimumSize(QtCore.QSize(620, 400)) - Form_main.setMaximumSize(QtCore.QSize(1220, 500)) + Form_main.setMaximumSize(QtCore.QSize(1560, 500)) icon = QtGui.QIcon() - icon.addPixmap(QtGui.QPixmap("D:\\Desktop\\BBDown\\UI\\favicon.ico"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + icon.addPixmap(QtGui.QPixmap("D:\\Desktop\\BBDown_GUI\\UI\\favicon.ico"), QtGui.QIcon.Normal, QtGui.QIcon.Off) Form_main.setWindowIcon(icon) self.horizontalLayoutWidget = QtWidgets.QWidget(Form_main) - self.horizontalLayoutWidget.setGeometry(QtCore.QRect(30, 160, 571, 31)) + self.horizontalLayoutWidget.setGeometry(QtCore.QRect(30, 180, 571, 31)) self.horizontalLayoutWidget.setObjectName("horizontalLayoutWidget") self.horizontalLayout = QtWidgets.QHBoxLayout(self.horizontalLayoutWidget) self.horizontalLayout.setContentsMargins(0, 0, 0, 0) self.horizontalLayout.setObjectName("horizontalLayout") self.checkBox_ffmpeg = QtWidgets.QCheckBox(self.horizontalLayoutWidget) + self.checkBox_ffmpeg.setWhatsThis("") self.checkBox_ffmpeg.setChecked(True) self.checkBox_ffmpeg.setObjectName("checkBox_ffmpeg") self.horizontalLayout.addWidget(self.checkBox_ffmpeg) @@ -39,26 +40,8 @@ def setupUi(self, Form_main): self.pushButton_ffmpeg.setEnabled(True) self.pushButton_ffmpeg.setObjectName("pushButton_ffmpeg") self.horizontalLayout.addWidget(self.pushButton_ffmpeg) - self.horizontalLayoutWidget_2 = QtWidgets.QWidget(Form_main) - self.horizontalLayoutWidget_2.setGeometry(QtCore.QRect(30, 200, 571, 31)) - self.horizontalLayoutWidget_2.setObjectName("horizontalLayoutWidget_2") - self.horizontalLayout_2 = QtWidgets.QHBoxLayout(self.horizontalLayoutWidget_2) - self.horizontalLayout_2.setContentsMargins(0, 0, 0, 0) - self.horizontalLayout_2.setObjectName("horizontalLayout_2") - self.checkBox_aria2c = QtWidgets.QCheckBox(self.horizontalLayoutWidget_2) - self.checkBox_aria2c.setObjectName("checkBox_aria2c") - self.horizontalLayout_2.addWidget(self.checkBox_aria2c) - self.lineEdit_aria2c = QtWidgets.QLineEdit(self.horizontalLayoutWidget_2) - self.lineEdit_aria2c.setText("") - self.lineEdit_aria2c.setReadOnly(False) - self.lineEdit_aria2c.setObjectName("lineEdit_aria2c") - self.horizontalLayout_2.addWidget(self.lineEdit_aria2c) - self.pushButton_aria2c = QtWidgets.QPushButton(self.horizontalLayoutWidget_2) - self.pushButton_aria2c.setEnabled(True) - self.pushButton_aria2c.setObjectName("pushButton_aria2c") - self.horizontalLayout_2.addWidget(self.pushButton_aria2c) self.horizontalLayoutWidget_3 = QtWidgets.QWidget(Form_main) - self.horizontalLayoutWidget_3.setGeometry(QtCore.QRect(30, 240, 571, 31)) + self.horizontalLayoutWidget_3.setGeometry(QtCore.QRect(30, 220, 571, 31)) self.horizontalLayoutWidget_3.setObjectName("horizontalLayoutWidget_3") self.horizontalLayout_3 = QtWidgets.QHBoxLayout(self.horizontalLayoutWidget_3) self.horizontalLayout_3.setContentsMargins(0, 0, 0, 0) @@ -75,55 +58,30 @@ def setupUi(self, Form_main): self.pushButton_dir.setObjectName("pushButton_dir") self.horizontalLayout_3.addWidget(self.pushButton_dir) self.groupBox = QtWidgets.QGroupBox(Form_main) - self.groupBox.setGeometry(QtCore.QRect(160, 20, 191, 131)) + self.groupBox.setGeometry(QtCore.QRect(440, 20, 161, 71)) self.groupBox.setObjectName("groupBox") - self.verticalLayoutWidget = QtWidgets.QWidget(self.groupBox) - self.verticalLayoutWidget.setGeometry(QtCore.QRect(19, 20, 151, 101)) - self.verticalLayoutWidget.setObjectName("verticalLayoutWidget") - self.verticalLayout = QtWidgets.QVBoxLayout(self.verticalLayoutWidget) - self.verticalLayout.setContentsMargins(0, 0, 0, 0) - self.verticalLayout.setObjectName("verticalLayout") - self.radioButton_1 = QtWidgets.QRadioButton(self.verticalLayoutWidget) - self.radioButton_1.setChecked(True) - self.radioButton_1.setObjectName("radioButton_1") - self.verticalLayout.addWidget(self.radioButton_1) - self.radioButton_2 = QtWidgets.QRadioButton(self.verticalLayoutWidget) - self.radioButton_2.setChecked(False) - self.radioButton_2.setObjectName("radioButton_2") - self.verticalLayout.addWidget(self.radioButton_2) - self.radioButton_3 = QtWidgets.QRadioButton(self.verticalLayoutWidget) - self.radioButton_3.setObjectName("radioButton_3") - self.verticalLayout.addWidget(self.radioButton_3) - self.radioButton_4 = QtWidgets.QRadioButton(self.verticalLayoutWidget) - self.radioButton_4.setObjectName("radioButton_4") - self.verticalLayout.addWidget(self.radioButton_4) + self.comboBox_source = QtWidgets.QComboBox(self.groupBox) + self.comboBox_source.setGeometry(QtCore.QRect(10, 30, 141, 22)) + self.comboBox_source.setObjectName("comboBox_source") + self.comboBox_source.addItem("") + self.comboBox_source.addItem("") + self.comboBox_source.addItem("") + self.comboBox_source.addItem("") self.groupBox_2 = QtWidgets.QGroupBox(Form_main) - self.groupBox_2.setGeometry(QtCore.QRect(360, 20, 241, 131)) + self.groupBox_2.setGeometry(QtCore.QRect(440, 110, 161, 51)) self.groupBox_2.setObjectName("groupBox_2") - self.verticalLayoutWidget_2 = QtWidgets.QWidget(self.groupBox_2) - self.verticalLayoutWidget_2.setGeometry(QtCore.QRect(10, 20, 224, 101)) - self.verticalLayoutWidget_2.setObjectName("verticalLayoutWidget_2") - self.verticalLayout_2 = QtWidgets.QVBoxLayout(self.verticalLayoutWidget_2) - self.verticalLayout_2.setContentsMargins(0, 0, 0, 0) - self.verticalLayout_2.setObjectName("verticalLayout_2") - self.radioButton_5 = QtWidgets.QRadioButton(self.verticalLayoutWidget_2) - self.radioButton_5.setChecked(True) - self.radioButton_5.setObjectName("radioButton_5") - self.verticalLayout_2.addWidget(self.radioButton_5) - self.radioButton_6 = QtWidgets.QRadioButton(self.verticalLayoutWidget_2) - self.radioButton_6.setObjectName("radioButton_6") - self.verticalLayout_2.addWidget(self.radioButton_6) - self.radioButton_7 = QtWidgets.QRadioButton(self.verticalLayoutWidget_2) - self.radioButton_7.setObjectName("radioButton_7") - self.verticalLayout_2.addWidget(self.radioButton_7) - self.radioButton_8 = QtWidgets.QRadioButton(self.verticalLayoutWidget_2) - self.radioButton_8.setObjectName("radioButton_8") - self.verticalLayout_2.addWidget(self.radioButton_8) + self.comboBox_encoding = QtWidgets.QComboBox(self.groupBox_2) + self.comboBox_encoding.setGeometry(QtCore.QRect(10, 20, 141, 22)) + self.comboBox_encoding.setObjectName("comboBox_encoding") + self.comboBox_encoding.addItem("") + self.comboBox_encoding.addItem("") + self.comboBox_encoding.addItem("") + self.comboBox_encoding.addItem("") self.groupBox_3 = QtWidgets.QGroupBox(Form_main) - self.groupBox_3.setGeometry(QtCore.QRect(20, 20, 131, 131)) + self.groupBox_3.setGeometry(QtCore.QRect(20, 20, 131, 141)) self.groupBox_3.setObjectName("groupBox_3") self.verticalLayoutWidget_3 = QtWidgets.QWidget(self.groupBox_3) - self.verticalLayoutWidget_3.setGeometry(QtCore.QRect(10, 20, 111, 100)) + self.verticalLayoutWidget_3.setGeometry(QtCore.QRect(10, 20, 111, 111)) self.verticalLayoutWidget_3.setObjectName("verticalLayoutWidget_3") self.verticalLayout_4 = QtWidgets.QVBoxLayout(self.verticalLayoutWidget_3) self.verticalLayout_4.setContentsMargins(0, 0, 0, 0) @@ -135,22 +93,18 @@ def setupUi(self, Form_main): self.pushButton_logintv.setObjectName("pushButton_logintv") self.verticalLayout_4.addWidget(self.pushButton_logintv) self.horizontalLayoutWidget_4 = QtWidgets.QWidget(Form_main) - self.horizontalLayoutWidget_4.setGeometry(QtCore.QRect(30, 300, 571, 41)) + self.horizontalLayoutWidget_4.setGeometry(QtCore.QRect(30, 280, 571, 41)) self.horizontalLayoutWidget_4.setObjectName("horizontalLayoutWidget_4") self.horizontalLayout_4 = QtWidgets.QHBoxLayout(self.horizontalLayoutWidget_4) self.horizontalLayout_4.setContentsMargins(0, 0, 0, 0) self.horizontalLayout_4.setObjectName("horizontalLayout_4") - self.label = QtWidgets.QLabel(self.horizontalLayoutWidget_4) - self.label.setObjectName("label") - self.horizontalLayout_4.addWidget(self.label) + self.label_url = QtWidgets.QLabel(self.horizontalLayoutWidget_4) + self.label_url.setObjectName("label_url") + self.horizontalLayout_4.addWidget(self.label_url) self.lineEdit_url = QtWidgets.QLineEdit(self.horizontalLayoutWidget_4) self.lineEdit_url.setMaximumSize(QtCore.QSize(16777215, 24)) self.lineEdit_url.setObjectName("lineEdit_url") self.horizontalLayout_4.addWidget(self.lineEdit_url) - self.checkBox_25 = QtWidgets.QCheckBox(self.horizontalLayoutWidget_4) - self.checkBox_25.setChecked(True) - self.checkBox_25.setObjectName("checkBox_25") - self.horizontalLayout_4.addWidget(self.checkBox_25) self.pushButton_download = QtWidgets.QPushButton(Form_main) self.pushButton_download.setGeometry(QtCore.QRect(510, 360, 93, 28)) self.pushButton_download.setObjectName("pushButton_download") @@ -162,7 +116,7 @@ def setupUi(self, Form_main): self.pushButton_about.setGeometry(QtCore.QRect(30, 360, 93, 28)) self.pushButton_about.setObjectName("pushButton_about") self.groupBox_4 = QtWidgets.QGroupBox(Form_main) - self.groupBox_4.setGeometry(QtCore.QRect(1030, 180, 181, 111)) + self.groupBox_4.setGeometry(QtCore.QRect(800, 180, 181, 111)) self.groupBox_4.setObjectName("groupBox_4") self.verticalLayoutWidget_10 = QtWidgets.QWidget(self.groupBox_4) self.verticalLayoutWidget_10.setGeometry(QtCore.QRect(10, 20, 160, 80)) @@ -170,15 +124,15 @@ def setupUi(self, Form_main): self.verticalLayout_10 = QtWidgets.QVBoxLayout(self.verticalLayoutWidget_10) self.verticalLayout_10.setContentsMargins(0, 0, 0, 0) self.verticalLayout_10.setObjectName("verticalLayout_10") - self.checkBox_1 = QtWidgets.QCheckBox(self.verticalLayoutWidget_10) - self.checkBox_1.setObjectName("checkBox_1") - self.verticalLayout_10.addWidget(self.checkBox_1) - self.checkBox_23 = QtWidgets.QCheckBox(self.verticalLayoutWidget_10) - self.checkBox_23.setObjectName("checkBox_23") - self.verticalLayout_10.addWidget(self.checkBox_23) - self.lineEdit_6 = QtWidgets.QLineEdit(self.verticalLayoutWidget_10) - self.lineEdit_6.setObjectName("lineEdit_6") - self.verticalLayout_10.addWidget(self.lineEdit_6) + self.checkBox_mp4box = QtWidgets.QCheckBox(self.verticalLayoutWidget_10) + self.checkBox_mp4box.setObjectName("checkBox_mp4box") + self.verticalLayout_10.addWidget(self.checkBox_mp4box) + self.checkBox_mp4box_path = QtWidgets.QCheckBox(self.verticalLayoutWidget_10) + self.checkBox_mp4box_path.setObjectName("checkBox_mp4box_path") + self.verticalLayout_10.addWidget(self.checkBox_mp4box_path) + self.lineEdit_mp4box_path = QtWidgets.QLineEdit(self.verticalLayoutWidget_10) + self.lineEdit_mp4box_path.setObjectName("lineEdit_mp4box_path") + self.verticalLayout_10.addWidget(self.lineEdit_mp4box_path) self.groupBox_5 = QtWidgets.QGroupBox(Form_main) self.groupBox_5.setGeometry(QtCore.QRect(1000, 20, 211, 141)) self.groupBox_5.setObjectName("groupBox_5") @@ -190,24 +144,26 @@ def setupUi(self, Form_main): self.verticalLayout_13.setObjectName("verticalLayout_13") self.verticalLayout_9 = QtWidgets.QVBoxLayout() self.verticalLayout_9.setObjectName("verticalLayout_9") - self.checkBox_22 = QtWidgets.QCheckBox(self.verticalLayoutWidget_13) - self.checkBox_22.setObjectName("checkBox_22") - self.verticalLayout_9.addWidget(self.checkBox_22) - self.lineEdit_5 = QtWidgets.QLineEdit(self.verticalLayoutWidget_13) - self.lineEdit_5.setObjectName("lineEdit_5") - self.verticalLayout_9.addWidget(self.lineEdit_5) + self.checkBox_token = QtWidgets.QCheckBox(self.verticalLayoutWidget_13) + self.checkBox_token.setObjectName("checkBox_token") + self.verticalLayout_9.addWidget(self.checkBox_token) + self.lineEdit_token = QtWidgets.QLineEdit(self.verticalLayoutWidget_13) + self.lineEdit_token.setPlaceholderText("") + self.lineEdit_token.setObjectName("lineEdit_token") + self.verticalLayout_9.addWidget(self.lineEdit_token) self.verticalLayout_13.addLayout(self.verticalLayout_9) self.verticalLayout_8 = QtWidgets.QVBoxLayout() self.verticalLayout_8.setObjectName("verticalLayout_8") - self.checkBox_21 = QtWidgets.QCheckBox(self.verticalLayoutWidget_13) - self.checkBox_21.setObjectName("checkBox_21") - self.verticalLayout_8.addWidget(self.checkBox_21) - self.lineEdit_4 = QtWidgets.QLineEdit(self.verticalLayoutWidget_13) - self.lineEdit_4.setObjectName("lineEdit_4") - self.verticalLayout_8.addWidget(self.lineEdit_4) + self.checkBox_c = QtWidgets.QCheckBox(self.verticalLayoutWidget_13) + self.checkBox_c.setObjectName("checkBox_c") + self.verticalLayout_8.addWidget(self.checkBox_c) + self.lineEdit_c = QtWidgets.QLineEdit(self.verticalLayoutWidget_13) + self.lineEdit_c.setPlaceholderText("") + self.lineEdit_c.setObjectName("lineEdit_c") + self.verticalLayout_8.addWidget(self.lineEdit_c) self.verticalLayout_13.addLayout(self.verticalLayout_8) self.groupBox_6 = QtWidgets.QGroupBox(Form_main) - self.groupBox_6.setGeometry(QtCore.QRect(640, 20, 141, 141)) + self.groupBox_6.setGeometry(QtCore.QRect(630, 20, 141, 141)) self.groupBox_6.setObjectName("groupBox_6") self.verticalLayoutWidget_6 = QtWidgets.QWidget(self.groupBox_6) self.verticalLayoutWidget_6.setGeometry(QtCore.QRect(10, 30, 121, 99)) @@ -215,38 +171,57 @@ def setupUi(self, Form_main): self.verticalLayout_6 = QtWidgets.QVBoxLayout(self.verticalLayoutWidget_6) self.verticalLayout_6.setContentsMargins(0, 0, 0, 0) self.verticalLayout_6.setObjectName("verticalLayout_6") - self.checkBox_9 = QtWidgets.QCheckBox(self.verticalLayoutWidget_6) - self.checkBox_9.setObjectName("checkBox_9") - self.verticalLayout_6.addWidget(self.checkBox_9) - self.checkBox_10 = QtWidgets.QCheckBox(self.verticalLayoutWidget_6) - self.checkBox_10.setObjectName("checkBox_10") - self.verticalLayout_6.addWidget(self.checkBox_10) - self.checkBox_11 = QtWidgets.QCheckBox(self.verticalLayoutWidget_6) - self.checkBox_11.setObjectName("checkBox_11") - self.verticalLayout_6.addWidget(self.checkBox_11) - self.checkBox_17 = QtWidgets.QCheckBox(self.verticalLayoutWidget_6) - self.checkBox_17.setObjectName("checkBox_17") - self.verticalLayout_6.addWidget(self.checkBox_17) + self.checkBox_audio_only = QtWidgets.QCheckBox(self.verticalLayoutWidget_6) + self.checkBox_audio_only.setObjectName("checkBox_audio_only") + self.verticalLayout_6.addWidget(self.checkBox_audio_only) + self.checkBox_video_only = QtWidgets.QCheckBox(self.verticalLayoutWidget_6) + self.checkBox_video_only.setObjectName("checkBox_video_only") + self.verticalLayout_6.addWidget(self.checkBox_video_only) + self.checkBox_sub_only = QtWidgets.QCheckBox(self.verticalLayoutWidget_6) + self.checkBox_sub_only.setObjectName("checkBox_sub_only") + self.verticalLayout_6.addWidget(self.checkBox_sub_only) + self.checkBox_danmaku = QtWidgets.QCheckBox(self.verticalLayoutWidget_6) + self.checkBox_danmaku.setObjectName("checkBox_danmaku") + self.verticalLayout_6.addWidget(self.checkBox_danmaku) self.groupBox_7 = QtWidgets.QGroupBox(Form_main) - self.groupBox_7.setGeometry(QtCore.QRect(800, 180, 221, 111)) + self.groupBox_7.setGeometry(QtCore.QRect(1230, 20, 311, 271)) self.groupBox_7.setObjectName("groupBox_7") - self.verticalLayoutWidget_14 = QtWidgets.QWidget(self.groupBox_7) - self.verticalLayoutWidget_14.setGeometry(QtCore.QRect(10, 20, 179, 80)) - self.verticalLayoutWidget_14.setObjectName("verticalLayoutWidget_14") - self.verticalLayout_14 = QtWidgets.QVBoxLayout(self.verticalLayoutWidget_14) + self.verticalLayoutWidget_4 = QtWidgets.QWidget(self.groupBox_7) + self.verticalLayoutWidget_4.setGeometry(QtCore.QRect(10, 30, 291, 231)) + self.verticalLayoutWidget_4.setObjectName("verticalLayoutWidget_4") + self.verticalLayout_14 = QtWidgets.QVBoxLayout(self.verticalLayoutWidget_4) self.verticalLayout_14.setContentsMargins(0, 0, 0, 0) self.verticalLayout_14.setObjectName("verticalLayout_14") - self.checkBox_18 = QtWidgets.QCheckBox(self.verticalLayoutWidget_14) - self.checkBox_18.setObjectName("checkBox_18") - self.verticalLayout_14.addWidget(self.checkBox_18) - self.checkBox_12 = QtWidgets.QCheckBox(self.verticalLayoutWidget_14) - self.checkBox_12.setObjectName("checkBox_12") - self.verticalLayout_14.addWidget(self.checkBox_12) - self.checkBox_19 = QtWidgets.QCheckBox(self.verticalLayoutWidget_14) - self.checkBox_19.setObjectName("checkBox_19") - self.verticalLayout_14.addWidget(self.checkBox_19) + self.verticalLayout = QtWidgets.QVBoxLayout() + self.verticalLayout.setObjectName("verticalLayout") + self.checkBox_F = QtWidgets.QCheckBox(self.verticalLayoutWidget_4) + self.checkBox_F.setObjectName("checkBox_F") + self.verticalLayout.addWidget(self.checkBox_F) + self.lineEdit_F = QtWidgets.QLineEdit(self.verticalLayoutWidget_4) + self.lineEdit_F.setObjectName("lineEdit_F") + self.verticalLayout.addWidget(self.lineEdit_F) + self.verticalLayout_14.addLayout(self.verticalLayout) + self.verticalLayout_2 = QtWidgets.QVBoxLayout() + self.verticalLayout_2.setObjectName("verticalLayout_2") + self.checkBox_M = QtWidgets.QCheckBox(self.verticalLayoutWidget_4) + self.checkBox_M.setObjectName("checkBox_M") + self.verticalLayout_2.addWidget(self.checkBox_M) + self.lineEdit_M = QtWidgets.QLineEdit(self.verticalLayoutWidget_4) + self.lineEdit_M.setObjectName("lineEdit_M") + self.verticalLayout_2.addWidget(self.lineEdit_M) + self.verticalLayout_14.addLayout(self.verticalLayout_2) + self.verticalLayout_18 = QtWidgets.QVBoxLayout() + self.verticalLayout_18.setObjectName("verticalLayout_18") + self.label_val = QtWidgets.QLabel(self.verticalLayoutWidget_4) + self.label_val.setObjectName("label_val") + self.verticalLayout_18.addWidget(self.label_val) + self.plainTextEdit = QtWidgets.QPlainTextEdit(self.verticalLayoutWidget_4) + self.plainTextEdit.setReadOnly(True) + self.plainTextEdit.setObjectName("plainTextEdit") + self.verticalLayout_18.addWidget(self.plainTextEdit) + self.verticalLayout_14.addLayout(self.verticalLayout_18) self.groupBox_8 = QtWidgets.QGroupBox(Form_main) - self.groupBox_8.setGeometry(QtCore.QRect(640, 310, 191, 171)) + self.groupBox_8.setGeometry(QtCore.QRect(620, 300, 191, 171)) self.groupBox_8.setObjectName("groupBox_8") self.verticalLayoutWidget_12 = QtWidgets.QWidget(self.groupBox_8) self.verticalLayoutWidget_12.setGeometry(QtCore.QRect(10, 20, 174, 141)) @@ -254,26 +229,26 @@ def setupUi(self, Form_main): self.verticalLayout_12 = QtWidgets.QVBoxLayout(self.verticalLayoutWidget_12) self.verticalLayout_12.setContentsMargins(0, 0, 0, 0) self.verticalLayout_12.setObjectName("verticalLayout_12") - self.checkBox_5 = QtWidgets.QCheckBox(self.verticalLayoutWidget_12) - self.checkBox_5.setObjectName("checkBox_5") - self.verticalLayout_12.addWidget(self.checkBox_5) + self.checkBox_p_show_all = QtWidgets.QCheckBox(self.verticalLayoutWidget_12) + self.checkBox_p_show_all.setObjectName("checkBox_p_show_all") + self.verticalLayout_12.addWidget(self.checkBox_p_show_all) self.verticalLayout_5 = QtWidgets.QVBoxLayout() self.verticalLayout_5.setObjectName("verticalLayout_5") - self.checkBox_8 = QtWidgets.QCheckBox(self.verticalLayoutWidget_12) - self.checkBox_8.setObjectName("checkBox_8") - self.verticalLayout_5.addWidget(self.checkBox_8) - self.lineEdit_2 = QtWidgets.QLineEdit(self.verticalLayoutWidget_12) - self.lineEdit_2.setObjectName("lineEdit_2") - self.verticalLayout_5.addWidget(self.lineEdit_2) + self.checkBox_p = QtWidgets.QCheckBox(self.verticalLayoutWidget_12) + self.checkBox_p.setObjectName("checkBox_p") + self.verticalLayout_5.addWidget(self.checkBox_p) + self.lineEdit_p = QtWidgets.QLineEdit(self.verticalLayoutWidget_12) + self.lineEdit_p.setObjectName("lineEdit_p") + self.verticalLayout_5.addWidget(self.lineEdit_p) self.verticalLayout_12.addLayout(self.verticalLayout_5) self.verticalLayout_11 = QtWidgets.QVBoxLayout() self.verticalLayout_11.setObjectName("verticalLayout_11") - self.checkBox_24 = QtWidgets.QCheckBox(self.verticalLayoutWidget_12) - self.checkBox_24.setObjectName("checkBox_24") - self.verticalLayout_11.addWidget(self.checkBox_24) - self.lineEdit_7 = QtWidgets.QLineEdit(self.verticalLayoutWidget_12) - self.lineEdit_7.setObjectName("lineEdit_7") - self.verticalLayout_11.addWidget(self.lineEdit_7) + self.checkBox_p_delay = QtWidgets.QCheckBox(self.verticalLayoutWidget_12) + self.checkBox_p_delay.setObjectName("checkBox_p_delay") + self.verticalLayout_11.addWidget(self.checkBox_p_delay) + self.lineEdit_p_delay = QtWidgets.QLineEdit(self.verticalLayoutWidget_12) + self.lineEdit_p_delay.setObjectName("lineEdit_p_delay") + self.verticalLayout_11.addWidget(self.lineEdit_p_delay) self.verticalLayout_12.addLayout(self.verticalLayout_11) self.groupBox_9 = QtWidgets.QGroupBox(Form_main) self.groupBox_9.setGeometry(QtCore.QRect(790, 20, 201, 141)) @@ -284,20 +259,20 @@ def setupUi(self, Form_main): self.verticalLayout_15 = QtWidgets.QVBoxLayout(self.verticalLayoutWidget_15) self.verticalLayout_15.setContentsMargins(0, 0, 0, 0) self.verticalLayout_15.setObjectName("verticalLayout_15") - self.checkBox_4 = QtWidgets.QCheckBox(self.verticalLayoutWidget_15) - self.checkBox_4.setObjectName("checkBox_4") - self.verticalLayout_15.addWidget(self.checkBox_4) - self.checkBox_2 = QtWidgets.QCheckBox(self.verticalLayoutWidget_15) - self.checkBox_2.setObjectName("checkBox_2") - self.verticalLayout_15.addWidget(self.checkBox_2) - self.checkBox_3 = QtWidgets.QCheckBox(self.verticalLayoutWidget_15) - self.checkBox_3.setObjectName("checkBox_3") - self.verticalLayout_15.addWidget(self.checkBox_3) - self.checkBox_13 = QtWidgets.QCheckBox(self.verticalLayoutWidget_15) - self.checkBox_13.setObjectName("checkBox_13") - self.verticalLayout_15.addWidget(self.checkBox_13) + self.checkBox_ia = QtWidgets.QCheckBox(self.verticalLayoutWidget_15) + self.checkBox_ia.setObjectName("checkBox_ia") + self.verticalLayout_15.addWidget(self.checkBox_ia) + self.checkBox_info = QtWidgets.QCheckBox(self.verticalLayoutWidget_15) + self.checkBox_info.setObjectName("checkBox_info") + self.verticalLayout_15.addWidget(self.checkBox_info) + self.checkBox_hs = QtWidgets.QCheckBox(self.verticalLayoutWidget_15) + self.checkBox_hs.setObjectName("checkBox_hs") + self.verticalLayout_15.addWidget(self.checkBox_hs) + self.checkBox_debug = QtWidgets.QCheckBox(self.verticalLayoutWidget_15) + self.checkBox_debug.setObjectName("checkBox_debug") + self.verticalLayout_15.addWidget(self.checkBox_debug) self.groupBox_10 = QtWidgets.QGroupBox(Form_main) - self.groupBox_10.setGeometry(QtCore.QRect(640, 180, 151, 111)) + self.groupBox_10.setGeometry(QtCore.QRect(630, 180, 151, 111)) self.groupBox_10.setObjectName("groupBox_10") self.verticalLayoutWidget_16 = QtWidgets.QWidget(self.groupBox_10) self.verticalLayoutWidget_16.setGeometry(QtCore.QRect(10, 20, 131, 80)) @@ -305,60 +280,124 @@ def setupUi(self, Form_main): self.verticalLayout_16 = QtWidgets.QVBoxLayout(self.verticalLayoutWidget_16) self.verticalLayout_16.setContentsMargins(0, 0, 0, 0) self.verticalLayout_16.setObjectName("verticalLayout_16") - self.checkBox_15 = QtWidgets.QCheckBox(self.verticalLayoutWidget_16) - self.checkBox_15.setObjectName("checkBox_15") - self.verticalLayout_16.addWidget(self.checkBox_15) - self.checkBox_16 = QtWidgets.QCheckBox(self.verticalLayoutWidget_16) - self.checkBox_16.setObjectName("checkBox_16") - self.verticalLayout_16.addWidget(self.checkBox_16) - self.checkBox_14 = QtWidgets.QCheckBox(self.verticalLayoutWidget_16) - self.checkBox_14.setObjectName("checkBox_14") - self.verticalLayout_16.addWidget(self.checkBox_14) + self.checkBox_skip_subtitle = QtWidgets.QCheckBox(self.verticalLayoutWidget_16) + self.checkBox_skip_subtitle.setObjectName("checkBox_skip_subtitle") + self.verticalLayout_16.addWidget(self.checkBox_skip_subtitle) + self.checkBox_skip_cover = QtWidgets.QCheckBox(self.verticalLayoutWidget_16) + self.checkBox_skip_cover.setObjectName("checkBox_skip_cover") + self.verticalLayout_16.addWidget(self.checkBox_skip_cover) + self.checkBox_skip_mux = QtWidgets.QCheckBox(self.verticalLayoutWidget_16) + self.checkBox_skip_mux.setObjectName("checkBox_skip_mux") + self.verticalLayout_16.addWidget(self.checkBox_skip_mux) self.groupBox_11 = QtWidgets.QGroupBox(Form_main) - self.groupBox_11.setGeometry(QtCore.QRect(850, 310, 221, 171)) + self.groupBox_11.setGeometry(QtCore.QRect(990, 180, 221, 111)) self.groupBox_11.setObjectName("groupBox_11") self.verticalLayoutWidget_17 = QtWidgets.QWidget(self.groupBox_11) - self.verticalLayoutWidget_17.setGeometry(QtCore.QRect(10, 20, 198, 139)) + self.verticalLayoutWidget_17.setGeometry(QtCore.QRect(10, 20, 198, 81)) self.verticalLayoutWidget_17.setObjectName("verticalLayoutWidget_17") self.verticalLayout_17 = QtWidgets.QVBoxLayout(self.verticalLayoutWidget_17) self.verticalLayout_17.setContentsMargins(0, 0, 0, 0) self.verticalLayout_17.setObjectName("verticalLayout_17") - self.checkBox_7 = QtWidgets.QCheckBox(self.verticalLayoutWidget_17) - self.checkBox_7.setObjectName("checkBox_7") - self.verticalLayout_17.addWidget(self.checkBox_7) - self.verticalLayout_3 = QtWidgets.QVBoxLayout() - self.verticalLayout_3.setObjectName("verticalLayout_3") - self.checkBox_6 = QtWidgets.QCheckBox(self.verticalLayoutWidget_17) - self.checkBox_6.setObjectName("checkBox_6") - self.verticalLayout_3.addWidget(self.checkBox_6) - self.lineEdit_1 = QtWidgets.QLineEdit(self.verticalLayoutWidget_17) - self.lineEdit_1.setObjectName("lineEdit_1") - self.verticalLayout_3.addWidget(self.lineEdit_1) - self.verticalLayout_7 = QtWidgets.QVBoxLayout() - self.verticalLayout_7.setObjectName("verticalLayout_7") - self.checkBox_20 = QtWidgets.QCheckBox(self.verticalLayoutWidget_17) - self.checkBox_20.setObjectName("checkBox_20") - self.verticalLayout_7.addWidget(self.checkBox_20) - self.lineEdit_3 = QtWidgets.QLineEdit(self.verticalLayoutWidget_17) - self.lineEdit_3.setObjectName("lineEdit_3") - self.verticalLayout_7.addWidget(self.lineEdit_3) - self.verticalLayout_3.addLayout(self.verticalLayout_7) - self.verticalLayout_17.addLayout(self.verticalLayout_3) + self.checkBox_mt = QtWidgets.QCheckBox(self.verticalLayoutWidget_17) + self.checkBox_mt.setChecked(False) + self.checkBox_mt.setObjectName("checkBox_mt") + self.verticalLayout_17.addWidget(self.checkBox_mt) + self.checkBox_language = QtWidgets.QCheckBox(self.verticalLayoutWidget_17) + self.checkBox_language.setObjectName("checkBox_language") + self.verticalLayout_17.addWidget(self.checkBox_language) + self.lineEdit_language = QtWidgets.QLineEdit(self.verticalLayoutWidget_17) + self.lineEdit_language.setObjectName("lineEdit_language") + self.verticalLayout_17.addWidget(self.lineEdit_language) self.horizontalLayoutWidget_5 = QtWidgets.QWidget(Form_main) - self.horizontalLayoutWidget_5.setGeometry(QtCore.QRect(30, 440, 571, 31)) + self.horizontalLayoutWidget_5.setGeometry(QtCore.QRect(30, 420, 571, 31)) self.horizontalLayoutWidget_5.setObjectName("horizontalLayoutWidget_5") self.horizontalLayout_5 = QtWidgets.QHBoxLayout(self.horizontalLayoutWidget_5) self.horizontalLayout_5.setContentsMargins(0, 0, 0, 0) self.horizontalLayout_5.setObjectName("horizontalLayout_5") - self.label_2 = QtWidgets.QLabel(self.horizontalLayoutWidget_5) - self.label_2.setObjectName("label_2") - self.horizontalLayout_5.addWidget(self.label_2) + self.label_bbdown = QtWidgets.QLabel(self.horizontalLayoutWidget_5) + self.label_bbdown.setObjectName("label_bbdown") + self.horizontalLayout_5.addWidget(self.label_bbdown) self.lineEdit_bbdown = QtWidgets.QLineEdit(self.horizontalLayoutWidget_5) self.lineEdit_bbdown.setObjectName("lineEdit_bbdown") self.horizontalLayout_5.addWidget(self.lineEdit_bbdown) self.pushButton_bbdown = QtWidgets.QPushButton(self.horizontalLayoutWidget_5) self.pushButton_bbdown.setObjectName("pushButton_bbdown") self.horizontalLayout_5.addWidget(self.pushButton_bbdown) + self.horizontalLayoutWidget_2 = QtWidgets.QWidget(Form_main) + self.horizontalLayoutWidget_2.setGeometry(QtCore.QRect(220, 320, 381, 31)) + self.horizontalLayoutWidget_2.setObjectName("horizontalLayoutWidget_2") + self.horizontalLayout_2 = QtWidgets.QHBoxLayout(self.horizontalLayoutWidget_2) + self.horizontalLayout_2.setContentsMargins(0, 0, 0, 0) + self.horizontalLayout_2.setObjectName("horizontalLayout_2") + self.radioButton_p_current = QtWidgets.QRadioButton(self.horizontalLayoutWidget_2) + self.radioButton_p_current.setChecked(True) + self.radioButton_p_current.setObjectName("radioButton_p_current") + self.horizontalLayout_2.addWidget(self.radioButton_p_current) + self.radioButton_p_all = QtWidgets.QRadioButton(self.horizontalLayoutWidget_2) + self.radioButton_p_all.setObjectName("radioButton_p_all") + self.horizontalLayout_2.addWidget(self.radioButton_p_all) + self.radioButton_p_new = QtWidgets.QRadioButton(self.horizontalLayoutWidget_2) + self.radioButton_p_new.setObjectName("radioButton_p_new") + self.horizontalLayout_2.addWidget(self.radioButton_p_new) + self.groupBox_14 = QtWidgets.QGroupBox(Form_main) + self.groupBox_14.setGeometry(QtCore.QRect(160, 20, 271, 141)) + self.groupBox_14.setObjectName("groupBox_14") + self.radioButton_dfn_480P = QtWidgets.QRadioButton(self.groupBox_14) + self.radioButton_dfn_480P.setGeometry(QtCore.QRect(140, 50, 120, 19)) + self.radioButton_dfn_480P.setObjectName("radioButton_dfn_480P") + self.radioButton_dfn_more = QtWidgets.QRadioButton(self.groupBox_14) + self.radioButton_dfn_more.setGeometry(QtCore.QRect(10, 100, 61, 19)) + self.radioButton_dfn_more.setObjectName("radioButton_dfn_more") + self.radioButton_dfn_priority = QtWidgets.QRadioButton(self.groupBox_14) + self.radioButton_dfn_priority.setGeometry(QtCore.QRect(10, 20, 249, 19)) + self.radioButton_dfn_priority.setChecked(True) + self.radioButton_dfn_priority.setObjectName("radioButton_dfn_priority") + self.radioButton_dfn_1080P = QtWidgets.QRadioButton(self.groupBox_14) + self.radioButton_dfn_1080P.setGeometry(QtCore.QRect(10, 50, 119, 19)) + self.radioButton_dfn_1080P.setObjectName("radioButton_dfn_1080P") + self.radioButton_dfn_360P = QtWidgets.QRadioButton(self.groupBox_14) + self.radioButton_dfn_360P.setGeometry(QtCore.QRect(140, 70, 120, 19)) + self.radioButton_dfn_360P.setObjectName("radioButton_dfn_360P") + self.radioButton_dfn_720P = QtWidgets.QRadioButton(self.groupBox_14) + self.radioButton_dfn_720P.setGeometry(QtCore.QRect(10, 70, 119, 19)) + self.radioButton_dfn_720P.setObjectName("radioButton_dfn_720P") + self.comboBox_dfn_more = QtWidgets.QComboBox(self.groupBox_14) + self.comboBox_dfn_more.setGeometry(QtCore.QRect(80, 100, 181, 22)) + self.comboBox_dfn_more.setObjectName("comboBox_dfn_more") + self.comboBox_dfn_more.addItem("") + self.comboBox_dfn_more.addItem("") + self.comboBox_dfn_more.addItem("") + self.comboBox_dfn_more.addItem("") + self.comboBox_dfn_more.addItem("") + self.comboBox_dfn_more.addItem("") + self.comboBox_dfn_more.addItem("") + self.comboBox_dfn_more.addItem("") + self.groupBox_12 = QtWidgets.QGroupBox(Form_main) + self.groupBox_12.setGeometry(QtCore.QRect(840, 300, 211, 171)) + self.groupBox_12.setObjectName("groupBox_12") + self.verticalLayoutWidget_7 = QtWidgets.QWidget(self.groupBox_12) + self.verticalLayoutWidget_7.setGeometry(QtCore.QRect(10, 20, 196, 141)) + self.verticalLayoutWidget_7.setObjectName("verticalLayoutWidget_7") + self.verticalLayout_19 = QtWidgets.QVBoxLayout(self.verticalLayoutWidget_7) + self.verticalLayout_19.setContentsMargins(0, 0, 0, 0) + self.verticalLayout_19.setObjectName("verticalLayout_19") + self.checkBox_use_aria2c = QtWidgets.QCheckBox(self.verticalLayoutWidget_7) + self.checkBox_use_aria2c.setObjectName("checkBox_use_aria2c") + self.verticalLayout_19.addWidget(self.checkBox_use_aria2c) + self.checkBox_aria2c_path = QtWidgets.QCheckBox(self.verticalLayoutWidget_7) + self.checkBox_aria2c_path.setObjectName("checkBox_aria2c_path") + self.verticalLayout_19.addWidget(self.checkBox_aria2c_path) + self.lineEdit_aria2c_path = QtWidgets.QLineEdit(self.verticalLayoutWidget_7) + self.lineEdit_aria2c_path.setText("") + self.lineEdit_aria2c_path.setReadOnly(False) + self.lineEdit_aria2c_path.setObjectName("lineEdit_aria2c_path") + self.verticalLayout_19.addWidget(self.lineEdit_aria2c_path) + self.checkBox_aria2c_proxy = QtWidgets.QCheckBox(self.verticalLayoutWidget_7) + self.checkBox_aria2c_proxy.setObjectName("checkBox_aria2c_proxy") + self.verticalLayout_19.addWidget(self.checkBox_aria2c_proxy) + self.lineEdit_aria2c_proxy = QtWidgets.QLineEdit(self.verticalLayoutWidget_7) + self.lineEdit_aria2c_proxy.setObjectName("lineEdit_aria2c_proxy") + self.verticalLayout_19.addWidget(self.lineEdit_aria2c_proxy) self.retranslateUi(Form_main) QtCore.QMetaObject.connectSlotsByName(Form_main) @@ -368,78 +407,107 @@ def retranslateUi(self, Form_main): Form_main.setWindowTitle(_translate("Form_main", "BBDown - GUI")) self.checkBox_ffmpeg.setText(_translate("Form_main", "ffmpeg")) self.pushButton_ffmpeg.setText(_translate("Form_main", "浏览")) - self.checkBox_aria2c.setText(_translate("Form_main", "aria2c")) - self.pushButton_aria2c.setText(_translate("Form_main", "浏览")) self.label_dir.setText(_translate("Form_main", "下载目录")) self.pushButton_dir.setText(_translate("Form_main", "浏览")) self.groupBox.setTitle(_translate("Form_main", "下载源")) - self.radioButton_1.setText(_translate("Form_main", "网页端(无参数)")) - self.radioButton_2.setText(_translate("Form_main", "TV端(-tv)")) - self.radioButton_3.setText(_translate("Form_main", "APP端(-app)")) - self.radioButton_4.setText(_translate("Form_main", "国际端(-intl)")) - self.groupBox_2.setTitle(_translate("Form_main", "下载视频格式")) - self.radioButton_5.setText(_translate("Form_main", "优先下载可用编码(无参数)")) - self.radioButton_6.setText(_translate("Form_main", "只下载hevc编码(-hevc)")) - self.radioButton_7.setText(_translate("Form_main", "只下载avc编码(-avc)")) - self.radioButton_8.setText(_translate("Form_main", "只下载av1编码(-av1)")) + self.comboBox_source.setItemText(0, _translate("Form_main", "网页端")) + self.comboBox_source.setItemText(1, _translate("Form_main", "TV端")) + self.comboBox_source.setItemText(2, _translate("Form_main", "APP端")) + self.comboBox_source.setItemText(3, _translate("Form_main", "国际端")) + self.groupBox_2.setTitle(_translate("Form_main", "下载视频编码格式")) + self.comboBox_encoding.setItemText(0, _translate("Form_main", "优先可用编码")) + self.comboBox_encoding.setItemText(1, _translate("Form_main", "AVC")) + self.comboBox_encoding.setItemText(2, _translate("Form_main", "AV1")) + self.comboBox_encoding.setItemText(3, _translate("Form_main", "HEVC")) self.groupBox_3.setTitle(_translate("Form_main", "账户")) self.pushButton_login.setText(_translate("Form_main", "登录")) self.pushButton_logintv.setText(_translate("Form_main", "登录(TV端)")) - self.label.setText(_translate("Form_main", "视频地址")) + self.label_url.setText(_translate("Form_main", "视频地址")) self.lineEdit_url.setToolTip(_translate("Form_main", "

视频地址 或 av bv BV ep ss

")) self.lineEdit_url.setWhatsThis(_translate("Form_main", "


")) - self.checkBox_25.setText(_translate("Form_main", "下载全部分p")) self.pushButton_download.setText(_translate("Form_main", "下载")) self.pushButton_advanced.setText(_translate("Form_main", "高级选项>")) self.pushButton_about.setText(_translate("Form_main", "关于")) - self.groupBox_4.setTitle(_translate("Form_main", "mp4box")) - self.checkBox_1.setText(_translate("Form_main", "使用mp4Box来混流")) - self.checkBox_23.setText(_translate("Form_main", "设置mp4box的路径")) - self.lineEdit_6.setToolTip(_translate("Form_main", "

mp4box的路径

")) - self.lineEdit_6.setWhatsThis(_translate("Form_main", "

路径不要包含空格

")) + self.groupBox_4.setTitle(_translate("Form_main", "MP4Box")) + self.checkBox_mp4box.setText(_translate("Form_main", "使用MP4Box来混流")) + self.checkBox_mp4box_path.setText(_translate("Form_main", "设置MP4Box的路径")) + self.lineEdit_mp4box_path.setToolTip(_translate("Form_main", "

mp4box的路径

")) + self.lineEdit_mp4box_path.setWhatsThis(_translate("Form_main", "

路径不要包含空格

")) self.groupBox_5.setTitle(_translate("Form_main", "cookies")) - self.checkBox_22.setToolTip(_translate("Form_main", "

设置access_token用以下载TV/APP接口的会员内容

")) - self.checkBox_22.setText(_translate("Form_main", "单独设置access_token")) - self.lineEdit_5.setPlaceholderText(_translate("Form_main", "access_token")) - self.checkBox_21.setToolTip(_translate("Form_main", "

设置字符串cookie用以下载网页接口的会员内容

")) - self.checkBox_21.setText(_translate("Form_main", "单独设置cookie")) - self.lineEdit_4.setPlaceholderText(_translate("Form_main", "cookie")) + self.checkBox_token.setToolTip(_translate("Form_main", "

设置access_token用以下载TV/APP接口的会员内容

")) + self.checkBox_token.setText(_translate("Form_main", "单独设置access_token")) + self.checkBox_c.setToolTip(_translate("Form_main", "

设置字符串cookie用以下载网页接口的会员内容

")) + self.checkBox_c.setText(_translate("Form_main", "单独设置cookie")) self.groupBox_6.setTitle(_translate("Form_main", "下载选项")) - self.checkBox_9.setText(_translate("Form_main", "仅下载音频")) - self.checkBox_10.setText(_translate("Form_main", "仅下载视频")) - self.checkBox_11.setText(_translate("Form_main", "仅下载字幕")) - self.checkBox_17.setText(_translate("Form_main", "下载弹幕")) + self.checkBox_audio_only.setText(_translate("Form_main", "仅下载音频")) + self.checkBox_video_only.setText(_translate("Form_main", "仅下载视频")) + self.checkBox_sub_only.setText(_translate("Form_main", "仅下载字幕")) + self.checkBox_danmaku.setText(_translate("Form_main", "下载弹幕")) self.groupBox_7.setTitle(_translate("Form_main", "文件名选项")) - self.checkBox_18.setToolTip(_translate("Form_main", "

为文件加入清晰度后缀,如XXX[1080P 高码率]

")) - self.checkBox_18.setText(_translate("Form_main", "文件名包含清晰度后缀")) - self.checkBox_12.setText(_translate("Form_main", "不给分P序号补零")) - self.checkBox_19.setToolTip(_translate("Form_main", "

多P时,不要加入分P前缀,如[P1],[P2]等

")) - self.checkBox_19.setText(_translate("Form_main", "不加入分P前缀")) - self.groupBox_8.setTitle(_translate("Form_main", "分p")) - self.checkBox_5.setText(_translate("Form_main", "展示所有分P标题")) - self.checkBox_8.setToolTip(_translate("Form_main", "

选择指定分p或分p范围:(-p 8 或 -p 1,2 或 -p 3-5 或 -p ALL)

")) - self.checkBox_8.setText(_translate("Form_main", "指定下载分p")) - self.lineEdit_2.setToolTip(_translate("Form_main", "

选择指定分p或分p范围:(-p 8 或 -p 1,2 或 -p 3-5 或 -p ALL)

")) - self.lineEdit_2.setPlaceholderText(_translate("Form_main", "如1,2或3-5或ALL")) - self.checkBox_24.setToolTip(_translate("Form_main", "

设置下载合集分P之间的下载间隔时间(单位: 秒, 默认无间隔)

")) - self.checkBox_24.setText(_translate("Form_main", "分P下载时间间隔")) - self.lineEdit_7.setPlaceholderText(_translate("Form_main", "0")) + self.checkBox_F.setText(_translate("Form_main", "单分P")) + self.lineEdit_F.setPlaceholderText(_translate("Form_main", "")) + self.checkBox_M.setText(_translate("Form_main", "多分P")) + self.lineEdit_M.setPlaceholderText(_translate("Form_main", "/[P]")) + self.label_val.setText(_translate("Form_main", "内置变量")) + self.plainTextEdit.setPlainText(_translate("Form_main", ": 视频主标题\n" +": 视频分P序号\n" +": 视频分P序号(前缀补零)\n" +": 视频分P标题\n" +": 视频aid\n" +": 视频cid\n" +": 视频清晰度\n" +": 视频分辨率\n" +": 视频帧率\n" +": 视频编码\n" +": 视频码率\n" +": 音频编码\n" +": 音频码率")) + self.groupBox_8.setTitle(_translate("Form_main", "分P")) + self.checkBox_p_show_all.setText(_translate("Form_main", "展示所有分P标题")) + self.checkBox_p.setToolTip(_translate("Form_main", "

选择指定分p或分p范围:(-p 8 或 -p 1,2 或 -p 3-5 或 -p ALL)

")) + self.checkBox_p.setText(_translate("Form_main", "指定下载分P")) + self.lineEdit_p.setToolTip(_translate("Form_main", "

选择指定分p或分p范围:(-p 8 或 -p 1,2 或 -p 3-5 或 -p ALL)

")) + self.lineEdit_p.setPlaceholderText(_translate("Form_main", "如1,2或3-5或ALL或NEW")) + self.checkBox_p_delay.setToolTip(_translate("Form_main", "

设置下载合集分P之间的下载间隔时间(单位: 秒, 默认无间隔)

")) + self.checkBox_p_delay.setText(_translate("Form_main", "分P下载时间间隔")) + self.lineEdit_p_delay.setPlaceholderText(_translate("Form_main", "0")) self.groupBox_9.setTitle(_translate("Form_main", "交互选项")) - self.checkBox_4.setText(_translate("Form_main", "交互式选择清晰度")) - self.checkBox_2.setText(_translate("Form_main", "仅解析而不进行下载")) - self.checkBox_3.setText(_translate("Form_main", "不显示所有音视频流")) - self.checkBox_13.setText(_translate("Form_main", "输出调试日志")) + self.checkBox_ia.setText(_translate("Form_main", "交互式选择清晰度")) + self.checkBox_info.setText(_translate("Form_main", "仅解析而不进行下载")) + self.checkBox_hs.setText(_translate("Form_main", "不显示所有音视频流")) + self.checkBox_debug.setText(_translate("Form_main", "输出调试日志")) self.groupBox_10.setTitle(_translate("Form_main", "跳过选项")) - self.checkBox_15.setText(_translate("Form_main", "跳过字幕下载")) - self.checkBox_16.setText(_translate("Form_main", "跳过封面下载")) - self.checkBox_14.setText(_translate("Form_main", "跳过混流步骤")) + self.checkBox_skip_subtitle.setText(_translate("Form_main", "跳过字幕下载")) + self.checkBox_skip_cover.setText(_translate("Form_main", "跳过封面下载")) + self.checkBox_skip_mux.setText(_translate("Form_main", "跳过混流步骤")) self.groupBox_11.setTitle(_translate("Form_main", "其他")) - self.checkBox_7.setText(_translate("Form_main", "使用多线程下载")) - self.checkBox_6.setToolTip(_translate("Form_main", "

调用aria2c进行下载时的代理地址配置

")) - self.checkBox_6.setText(_translate("Form_main", "aria2c的代理地址")) - self.lineEdit_1.setToolTip(_translate("Form_main", "

调用aria2c进行下载时的代理地址配置

")) - self.checkBox_20.setToolTip(_translate("Form_main", "

设置混流的音频语言(代码),如chi, jpn等

")) - self.checkBox_20.setText(_translate("Form_main", "设置混流的音频语言代码")) - self.lineEdit_3.setPlaceholderText(_translate("Form_main", "如chi,jpn")) - self.label_2.setText(_translate("Form_main", " BBDown")) + self.checkBox_mt.setText(_translate("Form_main", "使用多线程下载")) + self.checkBox_language.setToolTip(_translate("Form_main", "

设置混流的音频语言(代码),如chi, jpn等

")) + self.checkBox_language.setText(_translate("Form_main", "设置混流的音频语言代码")) + self.lineEdit_language.setPlaceholderText(_translate("Form_main", "如chi,jpn")) + self.label_bbdown.setText(_translate("Form_main", " BBDown")) self.pushButton_bbdown.setText(_translate("Form_main", "浏览")) + self.radioButton_p_current.setText(_translate("Form_main", "下载当前分P")) + self.radioButton_p_all.setText(_translate("Form_main", "下载全部分P")) + self.radioButton_p_new.setText(_translate("Form_main", "下载最新分P")) + self.groupBox_14.setTitle(_translate("Form_main", "下载视频画质")) + self.radioButton_dfn_480P.setText(_translate("Form_main", "480P 清晰")) + self.radioButton_dfn_more.setText(_translate("Form_main", "更多")) + self.radioButton_dfn_priority.setText(_translate("Form_main", "优先下载最高画质")) + self.radioButton_dfn_1080P.setText(_translate("Form_main", "1080P 高清")) + self.radioButton_dfn_360P.setText(_translate("Form_main", "360P 流畅")) + self.radioButton_dfn_720P.setText(_translate("Form_main", "720P 高清")) + self.comboBox_dfn_more.setItemText(0, _translate("Form_main", "优先下载最高画质")) + self.comboBox_dfn_more.setItemText(1, _translate("Form_main", "8K 超高清")) + self.comboBox_dfn_more.setItemText(2, _translate("Form_main", "杜比视界")) + self.comboBox_dfn_more.setItemText(3, _translate("Form_main", "HDR 真彩")) + self.comboBox_dfn_more.setItemText(4, _translate("Form_main", "4K 超清")) + self.comboBox_dfn_more.setItemText(5, _translate("Form_main", "1080P 高帧率")) + self.comboBox_dfn_more.setItemText(6, _translate("Form_main", "1080P 高码率")) + self.comboBox_dfn_more.setItemText(7, _translate("Form_main", "720P 高帧率")) + self.groupBox_12.setTitle(_translate("Form_main", "aria2c")) + self.checkBox_use_aria2c.setText(_translate("Form_main", "使用aria2c")) + self.checkBox_aria2c_path.setText(_translate("Form_main", "aria2c的路径")) + self.checkBox_aria2c_proxy.setToolTip(_translate("Form_main", "

调用aria2c进行下载时的代理地址配置

")) + self.checkBox_aria2c_proxy.setText(_translate("Form_main", "aria2c的代理地址")) + self.lineEdit_aria2c_proxy.setToolTip(_translate("Form_main", "

调用aria2c进行下载时的代理地址配置

")) diff --git a/UI/main.ui b/UI/main.ui index bb158da..d909cd7 100644 --- a/UI/main.ui +++ b/UI/main.ui @@ -6,8 +6,8 @@ 0 0 - 620 - 400 + 1560 + 500 @@ -18,7 +18,7 @@ - 1220 + 1560 500 @@ -33,7 +33,7 @@ 30 - 160 + 180 571 31 @@ -41,6 +41,9 @@ + + + ffmpeg @@ -71,50 +74,11 @@ - - - - 30 - 200 - 571 - 31 - - - - - - - aria2c - - - - - - - - - - false - - - - - - - true - - - 浏览 - - - - - 30 - 240 + 220 571 31 @@ -149,116 +113,87 @@ - 160 + 440 20 - 191 - 131 + 161 + 71 下载源 - + - 19 - 20 - 151 - 101 + 10 + 30 + 141 + 22 - - - - - 网页端(无参数) - - - true - - - - - - - TV端(-tv) - - - false - - - - - - - APP端(-app) - - - - - - - 国际端(-intl) - - - - + + + 网页端 + + + + + TV端 + + + + + APP端 + + + + + 国际端 + + - 360 - 20 - 241 - 131 + 440 + 110 + 161 + 51 - 下载视频格式 + 下载视频编码格式 - + 10 20 - 224 - 101 + 141 + 22 - - - - - 优先下载可用编码(无参数) - - - true - - - - - - - 只下载hevc编码(-hevc) - - - - - - - 只下载avc编码(-avc) - - - - - - - 只下载av1编码(-av1) - - - - + + + 优先可用编码 + + + + + AVC + + + + + AV1 + + + + + HEVC + + @@ -267,7 +202,7 @@ 20 20 131 - 131 + 141 @@ -279,7 +214,7 @@ 10 20 111 - 100 + 111 @@ -304,14 +239,14 @@ 30 - 300 + 280 571 41 - + 视频地址 @@ -333,16 +268,6 @@ - - - - 下载全部分p - - - true - - - @@ -390,14 +315,14 @@ - 1030 + 800 180 181 111 - mp4box + MP4Box @@ -410,21 +335,21 @@ - + - 使用mp4Box来混流 + 使用MP4Box来混流 - + - 设置mp4box的路径 + 设置MP4Box的路径 - + <html><head/><body><p>mp4box的路径</p></body></html> @@ -461,7 +386,7 @@ - + <html><head/><body><p>设置access_token用以下载TV/APP接口的会员内容</p></body></html> @@ -471,9 +396,9 @@ - + - access_token + @@ -482,7 +407,7 @@ - + <html><head/><body><p>设置字符串cookie用以下载网页接口的会员内容</p></body></html> @@ -492,9 +417,9 @@ - + - cookie + @@ -506,7 +431,7 @@ - 640 + 630 20 141 141 @@ -526,28 +451,28 @@ - + 仅下载音频 - + 仅下载视频 - + 仅下载字幕 - + 下载弹幕 @@ -559,51 +484,93 @@ - 800 - 180 - 221 - 111 + 1230 + 20 + 311 + 271 文件名选项 - + 10 - 20 - 179 - 80 + 30 + 291 + 231 - - - <html><head/><body><p>为文件加入清晰度后缀,如XXX[1080P 高码率]</p></body></html> - - - 文件名包含清晰度后缀 - - + + + + + 单分P + + + + + + + <videoTitle> + + + + - - - 不给分P序号补零 - - + + + + + 多分P + + + + + + + <videoTitle>/[P<pageNumberWithZero>]<pageTitle> + + + + - - - <html><head/><body><p>多P时,不要加入分P前缀,如[P1],[P2]等</p></body></html> - - - 不加入分P前缀 - - + + + + + 内置变量 + + + + + + + true + + + <videoTitle>: 视频主标题 +<pageNumber>: 视频分P序号 +<pageNumberWithZero>: 视频分P序号(前缀补零) +<pageTitle>: 视频分P标题 +<aid>: 视频aid +<cid>: 视频cid +<dfn>: 视频清晰度 +<res>: 视频分辨率 +<fps>: 视频帧率 +<videoCodecs>: 视频编码 +<videoBandwidth>: 视频码率 +<audioCodecs>: 音频编码 +<audioBandwidth>: 音频码率 + + + + @@ -611,14 +578,14 @@ - 640 - 310 + 620 + 300 191 171 - 分p + 分P @@ -631,7 +598,7 @@ - + 展示所有分P标题 @@ -640,22 +607,22 @@ - + <html><head/><body><p>选择指定分p或分p范围:(-p 8 或 -p 1,2 或 -p 3-5 或 -p ALL)</p></body></html> - 指定下载分p + 指定下载分P - + <html><head/><body><p>选择指定分p或分p范围:(-p 8 或 -p 1,2 或 -p 3-5 或 -p ALL)</p></body></html> - 如1,2或3-5或ALL + 如1,2或3-5或ALL或NEW @@ -664,7 +631,7 @@ - + <html><head/><body><p>设置下载合集分P之间的下载间隔时间(单位: 秒, 默认无间隔)</p></body></html> @@ -674,7 +641,7 @@ - + 0 @@ -708,28 +675,28 @@ - + 交互式选择清晰度 - + 仅解析而不进行下载 - + 不显示所有音视频流 - + 输出调试日志 @@ -741,7 +708,7 @@ - 640 + 630 180 151 111 @@ -761,21 +728,21 @@ - + 跳过字幕下载 - + 跳过封面下载 - + 跳过混流步骤 @@ -787,10 +754,10 @@ - 850 - 310 + 990 + 180 221 - 171 + 111 @@ -802,58 +769,36 @@ 10 20 198 - 139 + 81 - + 使用多线程下载 + + false + - - - - - <html><head/><body><p>调用aria2c进行下载时的代理地址配置</p></body></html> - - - aria2c的代理地址 - - - - - - - <html><head/><body><p>调用aria2c进行下载时的代理地址配置</p></body></html> - - - - - - - - - <html><head/><body><p>设置混流的音频语言(代码),如chi, jpn等</p></body></html> - - - 设置混流的音频语言代码 - - - - - - - 如chi,jpn - - - - - - + + + <html><head/><body><p>设置混流的音频语言(代码),如chi, jpn等</p></body></html> + + + 设置混流的音频语言代码 + + + + + + + 如chi,jpn + + @@ -862,14 +807,14 @@ 30 - 440 + 420 571 31 - + BBDown @@ -887,6 +832,252 @@ + + + + 220 + 320 + 381 + 31 + + + + + + + 下载当前分P + + + true + + + + + + + 下载全部分P + + + + + + + 下载最新分P + + + + + + + + + 160 + 20 + 271 + 141 + + + + 下载视频画质 + + + + + 140 + 50 + 120 + 19 + + + + 480P 清晰 + + + + + + 10 + 100 + 61 + 19 + + + + 更多 + + + + + + 10 + 20 + 249 + 19 + + + + 优先下载最高画质 + + + true + + + + + + 10 + 50 + 119 + 19 + + + + 1080P 高清 + + + + + + 140 + 70 + 120 + 19 + + + + 360P 流畅 + + + + + + 10 + 70 + 119 + 19 + + + + 720P 高清 + + + + + + 80 + 100 + 181 + 22 + + + + + 优先下载最高画质 + + + + + 8K 超高清 + + + + + 杜比视界 + + + + + HDR 真彩 + + + + + 4K 超清 + + + + + 1080P 高帧率 + + + + + 1080P 高码率 + + + + + 720P 高帧率 + + + + + + + + 840 + 300 + 211 + 171 + + + + aria2c + + + + + 10 + 20 + 196 + 141 + + + + + + + 使用aria2c + + + + + + + aria2c的路径 + + + + + + + + + + false + + + + + + + <html><head/><body><p>调用aria2c进行下载时的代理地址配置</p></body></html> + + + aria2c的代理地址 + + + + + + + <html><head/><body><p>调用aria2c进行下载时的代理地址配置</p></body></html> + + + + + + diff --git a/UI/qrcode.py b/UI/qrcode.py index da1dcd0..e5f1990 100644 --- a/UI/qrcode.py +++ b/UI/qrcode.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Form implementation generated from reading ui file 'D:\Desktop\BBDown\UI\qrcode.ui' +# Form implementation generated from reading ui file 'D:\Desktop\BBDown_GUI\UI\qrcode.ui' # # Created by: PyQt5 UI code generator 5.15.4 # @@ -18,7 +18,7 @@ def setupUi(self, Form_QRcode): Form_QRcode.setMinimumSize(QtCore.QSize(455, 421)) Form_QRcode.setMaximumSize(QtCore.QSize(455, 421)) icon = QtGui.QIcon() - icon.addPixmap(QtGui.QPixmap("D:\\Desktop\\BBDown\\UI\\favicon.ico"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + icon.addPixmap(QtGui.QPixmap("D:\\Desktop\\BBDown_GUI\\UI\\favicon.ico"), QtGui.QIcon.Normal, QtGui.QIcon.Off) Form_QRcode.setWindowIcon(icon) self.label_QR = QtWidgets.QLabel(Form_QRcode) self.label_QR.setGeometry(QtCore.QRect(80, 40, 300, 300))