Skip to content

Commit e70988c

Browse files
committed
Add LICENSE and NOTICE
1 parent de4ccc2 commit e70988c

File tree

6 files changed

+751
-11
lines changed

6 files changed

+751
-11
lines changed

LICENSE

Lines changed: 674 additions & 0 deletions
Large diffs are not rendered by default.

NOTICE

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
LocalSTT
2+
Copyright 2020 Ciaran O'Reilly
3+
4+
The Initial Developer of the app/src/main/java/cat/oreilly/localstt/SpeechActivity.java,
5+
is Kaarel Kaljurand (https://github.com/Kaljurand).
6+
Copyright 2011-2020, Institute of Cybernetics at Tallinn University of Technology
7+
8+
The Initial Developer of the app/src/main/java/cat/oreilly/localstt/VoskRecognitionService.java,
9+
is Alpha Cephei Inc (https://alphacephei.com/).
10+
Copyright 2019 Alpha Cephei Inc. All Rights Reserved.
11+
12+
The Initial Developer of some parts of the application, which are copied from, derived from, or
13+
inspired by the Vosk Android Demo (https://github.com/alphacep/vosk-android-demo),
14+
is Alpha Cephei Inc (https://alphacephei.com/e).
15+
Copyright 2019 Alpha Cephei Inc. All Rights Reserved.
16+
17+
The Vosk Catalan Model in app/src/main/assets/sync/vosk-catala
18+
was created by Alpha Cephei Inc (https://alphacephei.com/).
19+
Copyright 2020 Alpha Cephei Inc. All Rights Reserved.

app/src/main/java/cat/oreilly/localstt/DeepSpeechRecognitionService.java

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
// Copyright 2020 Ciaran O'Reilly
2+
//
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+
8+
// This program is distributed in the hope that it will be useful,
9+
// but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11+
// GNU General Public License for more details.
12+
13+
// You should have received a copy of the GNU General Public License
14+
// along with this program. If not, see <https://www.gnu.org/licenses/>.
115
package cat.oreilly.localstt;
216

317
import android.content.Intent;

app/src/main/java/cat/oreilly/localstt/DeepSpeechService.java

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
1+
// Copyright 2020 Ciaran O'Reilly
12
// Copyright 2019 Alpha Cephei Inc.
23
//
3-
// Licensed under the Apache License, Version 2.0 (the "License");
4-
// you may not use this file except in compliance with the License.
5-
// You may obtain a copy of the License at
6-
//
7-
// http://www.apache.org/licenses/LICENSE-2.0
8-
//
9-
// Unless required by applicable law or agreed to in writing, software
10-
// distributed under the License is distributed on an "AS IS" BASIS,
11-
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12-
// See the License for the specific language governing permissions and
13-
// limitations under the License.
4+
// This program is free software: you can redistribute it and/or modify
5+
// it under the terms of the GNU General Public License as published by
6+
// the Free Software Foundation, either version 3 of the License, or
7+
// (at your option) any later version.
8+
9+
// This program is distributed in the hope that it will be useful,
10+
// but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
// GNU General Public License for more details.
13+
14+
// You should have received a copy of the GNU General Public License
15+
// along with this program. If not, see <https://www.gnu.org/licenses/>.
1416

1517
package cat.oreilly.localstt;
1618

app/src/main/java/cat/oreilly/localstt/SpeechActivity.java

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
// Copyright 2020 Ciaran O'Reilly
2+
// Copyright 2011-2020, Institute of Cybernetics at Tallinn University of Technology
3+
//
4+
// This program is free software: you can redistribute it and/or modify
5+
// it under the terms of the GNU General Public License as published by
6+
// the Free Software Foundation, either version 3 of the License, or
7+
// (at your option) any later version.
8+
9+
// This program is distributed in the hope that it will be useful,
10+
// but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
// GNU General Public License for more details.
13+
14+
// You should have received a copy of the GNU General Public License
15+
// along with this program. If not, see <https://www.gnu.org/licenses/>.
116
package cat.oreilly.localstt;
217

318
import androidx.annotation.NonNull;

app/src/main/java/cat/oreilly/localstt/VoskRecognitionService.java

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
// Copyright 2020 Ciaran O'Reilly
2+
// Copyright 2019 Alpha Cephei Inc.
3+
//
4+
// This program is free software: you can redistribute it and/or modify
5+
// it under the terms of the GNU General Public License as published by
6+
// the Free Software Foundation, either version 3 of the License, or
7+
// (at your option) any later version.
8+
9+
// This program is distributed in the hope that it will be useful,
10+
// but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
// GNU General Public License for more details.
13+
14+
// You should have received a copy of the GNU General Public License
15+
// along with this program. If not, see <https://www.gnu.org/licenses/>.
16+
117
package cat.oreilly.localstt;
218

319
import android.content.Intent;

0 commit comments

Comments
 (0)