Skip to content

Commit 01ba376

Browse files
committed
Added GPL copyright notice
1 parent 685b979 commit 01ba376

File tree

14 files changed

+157
-4
lines changed

14 files changed

+157
-4
lines changed

pytranscriber/control/ctr_autosub.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
'''
2+
(C) 2025 Raryel C. Souza
3+
This program is free software: you can redistribute it and/or modify
4+
it under the terms of the GNU General Public License as published by
5+
the Free Software Foundation, either version 3 of the License, or
6+
(at your option) any later version.
7+
This program is distributed in the hope that it will be useful,
8+
but WITHOUT ANY WARRANTY; without even the implied warranty of
9+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10+
GNU General Public License for more details.
11+
You should have received a copy of the GNU General Public License
12+
along with this program. If not, see <https://www.gnu.org/licenses/>.
13+
'''
14+
115
from autosub import FLACConverter
216
from autosub import SpeechRecognizer
317
from autosub import extract_audio

pytranscriber/control/ctr_db.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
'''
2+
(C) 2025 Raryel C. Souza
3+
This program is free software: you can redistribute it and/or modify
4+
it under the terms of the GNU General Public License as published by
5+
the Free Software Foundation, either version 3 of the License, or
6+
(at your option) any later version.
7+
This program is distributed in the hope that it will be useful,
8+
but WITHOUT ANY WARRANTY; without even the implied warranty of
9+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10+
GNU General Public License for more details.
11+
You should have received a copy of the GNU General Public License
12+
along with this program. If not, see <https://www.gnu.org/licenses/>.
13+
'''
14+
115
from pathlib import PurePath
216

317
from pytranscriber.gui.message_util import MessageUtil

pytranscriber/control/ctr_engine.py

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,17 @@
1-
import os
1+
'''
2+
(C) 2025 Raryel C. Souza
3+
This program is free software: you can redistribute it and/or modify
4+
it under the terms of the GNU General Public License as published by
5+
the Free Software Foundation, either version 3 of the License, or
6+
(at your option) any later version.
7+
This program is distributed in the hope that it will be useful,
8+
but WITHOUT ANY WARRANTY; without even the implied warranty of
9+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10+
GNU General Public License for more details.
11+
You should have received a copy of the GNU General Public License
12+
along with this program. If not, see <https://www.gnu.org/licenses/>.
13+
'''
14+
215
class CtrEngine:
316
@staticmethod
417
def init():

pytranscriber/control/ctr_main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
'''
2-
(C) 2019 Raryel C. Souza
2+
(C) 2025 Raryel C. Souza
33
This program is free software: you can redistribute it and/or modify
44
it under the terms of the GNU General Public License as published by
55
the Free Software Foundation, either version 3 of the License, or

pytranscriber/control/ctr_proxy.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
'''
2+
(C) 2025 Raryel C. Souza
3+
This program is free software: you can redistribute it and/or modify
4+
it under the terms of the GNU General Public License as published by
5+
the Free Software Foundation, either version 3 of the License, or
6+
(at your option) any later version.
7+
This program is distributed in the hope that it will be useful,
8+
but WITHOUT ANY WARRANTY; without even the implied warranty of
9+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10+
GNU General Public License for more details.
11+
You should have received a copy of the GNU General Public License
12+
along with this program. If not, see <https://www.gnu.org/licenses/>.
13+
'''
14+
115
from pytranscriber.util.util import MyUtil
216
from pytranscriber.gui.message_util import MessageUtil
317
from pytranscriber.gui.proxy.view_proxy import ViewProxy

pytranscriber/control/ctr_whisper.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
'''
2+
(C) 2025 Raryel C. Souza
3+
This program is free software: you can redistribute it and/or modify
4+
it under the terms of the GNU General Public License as published by
5+
the Free Software Foundation, either version 3 of the License, or
6+
(at your option) any later version.
7+
This program is distributed in the hope that it will be useful,
8+
but WITHOUT ANY WARRANTY; without even the implied warranty of
9+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10+
GNU General Public License for more details.
11+
You should have received a copy of the GNU General Public License
12+
along with this program. If not, see <https://www.gnu.org/licenses/>.
13+
'''
14+
115
from PyQt5.QtCore import pyqtSignal, QObject
216
from PyQt5.QtWidgets import QMessageBox
317
import os

pytranscriber/control/thread_cancel_autosub.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
'''
2+
(C) 2025 Raryel C. Souza
3+
This program is free software: you can redistribute it and/or modify
4+
it under the terms of the GNU General Public License as published by
5+
the Free Software Foundation, either version 3 of the License, or
6+
(at your option) any later version.
7+
This program is distributed in the hope that it will be useful,
8+
but WITHOUT ANY WARRANTY; without even the implied warranty of
9+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10+
GNU General Public License for more details.
11+
You should have received a copy of the GNU General Public License
12+
along with this program. If not, see <https://www.gnu.org/licenses/>.
13+
'''
14+
115
from PyQt5.QtCore import QThread
216
from PyQt5.QtCore import pyqtSignal
317

pytranscriber/control/thread_exec_autosub.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
'''
2-
(C) 2019 Raryel C. Souza
2+
(C) 2025 Raryel C. Souza
33
This program is free software: you can redistribute it and/or modify
44
it under the terms of the GNU General Public License as published by
55
the Free Software Foundation, either version 3 of the License, or

pytranscriber/control/thread_exec_generic.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
'''
2+
(C) 2025 Raryel C. Souza
3+
This program is free software: you can redistribute it and/or modify
4+
it under the terms of the GNU General Public License as published by
5+
the Free Software Foundation, either version 3 of the License, or
6+
(at your option) any later version.
7+
This program is distributed in the hope that it will be useful,
8+
but WITHOUT ANY WARRANTY; without even the implied warranty of
9+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10+
GNU General Public License for more details.
11+
You should have received a copy of the GNU General Public License
12+
along with this program. If not, see <https://www.gnu.org/licenses/>.
13+
'''
14+
115
from abc import ABC, abstractmethod
216
from PyQt5.QtCore import QThread
317
from PyQt5.QtCore import pyqtSignal

pytranscriber/control/thread_exec_whisper.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
'''
2+
(C) 2025 Raryel C. Souza
3+
This program is free software: you can redistribute it and/or modify
4+
it under the terms of the GNU General Public License as published by
5+
the Free Software Foundation, either version 3 of the License, or
6+
(at your option) any later version.
7+
This program is distributed in the hope that it will be useful,
8+
but WITHOUT ANY WARRANTY; without even the implied warranty of
9+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10+
GNU General Public License for more details.
11+
You should have received a copy of the GNU General Public License
12+
along with this program. If not, see <https://www.gnu.org/licenses/>.
13+
'''
14+
115
from pytranscriber.control.ctr_whisper import CtrWhisper
216
from pytranscriber.control.thread_exec_generic import ThreadExecGeneric
317
from pytranscriber.util.util import MyUtil

0 commit comments

Comments
 (0)