Skip to content

Commit

Permalink
Add LICENSE and NOTICE
Browse files Browse the repository at this point in the history
  • Loading branch information
ccoreilly committed Dec 3, 2020
1 parent de4ccc2 commit e70988c
Show file tree
Hide file tree
Showing 6 changed files with 751 additions and 11 deletions.
674 changes: 674 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

19 changes: 19 additions & 0 deletions NOTICE
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
LocalSTT
Copyright 2020 Ciaran O'Reilly

The Initial Developer of the app/src/main/java/cat/oreilly/localstt/SpeechActivity.java,
is Kaarel Kaljurand (https://github.com/Kaljurand).
Copyright 2011-2020, Institute of Cybernetics at Tallinn University of Technology

The Initial Developer of the app/src/main/java/cat/oreilly/localstt/VoskRecognitionService.java,
is Alpha Cephei Inc (https://alphacephei.com/).
Copyright 2019 Alpha Cephei Inc. All Rights Reserved.

The Initial Developer of some parts of the application, which are copied from, derived from, or
inspired by the Vosk Android Demo (https://github.com/alphacep/vosk-android-demo),
is Alpha Cephei Inc (https://alphacephei.com/e).
Copyright 2019 Alpha Cephei Inc. All Rights Reserved.

The Vosk Catalan Model in app/src/main/assets/sync/vosk-catala
was created by Alpha Cephei Inc (https://alphacephei.com/).
Copyright 2020 Alpha Cephei Inc. All Rights Reserved.
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
// Copyright 2020 Ciaran O'Reilly
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.

// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.

// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
package cat.oreilly.localstt;

import android.content.Intent;
Expand Down
24 changes: 13 additions & 11 deletions app/src/main/java/cat/oreilly/localstt/DeepSpeechService.java
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
// Copyright 2020 Ciaran O'Reilly
// Copyright 2019 Alpha Cephei Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.

// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.

// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

package cat.oreilly.localstt;

Expand Down
15 changes: 15 additions & 0 deletions app/src/main/java/cat/oreilly/localstt/SpeechActivity.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
// Copyright 2020 Ciaran O'Reilly
// Copyright 2011-2020, Institute of Cybernetics at Tallinn University of Technology
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.

// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.

// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
package cat.oreilly.localstt;

import androidx.annotation.NonNull;
Expand Down
16 changes: 16 additions & 0 deletions app/src/main/java/cat/oreilly/localstt/VoskRecognitionService.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
// Copyright 2020 Ciaran O'Reilly
// Copyright 2019 Alpha Cephei Inc.
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.

// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.

// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

package cat.oreilly.localstt;

import android.content.Intent;
Expand Down

0 comments on commit e70988c

Please sign in to comment.