Skip to content

Commit 92aef1e

Browse files
Prabhutvalaukikm
authored andcommitted
Update Copyright
1 parent 4d11793 commit 92aef1e

File tree

19 files changed

+269
-262
lines changed

19 files changed

+269
-262
lines changed

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2024 Oracle and/or its affiliates.
1+
Copyright (c) 2024, 2025, Oracle and/or its affiliates.
22

33
The Universal Permissive License (UPL), Version 1.0
44

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,22 +19,23 @@ You can also choose to clone this git repo and install from source.
1919
The home page for the OCI Speech Service can be found [here](https://www.oracle.com/artificial-intelligence/speech/).
2020
The API reference for OCI Speech Service can be found [here](https://docs.oracle.com/en-us/iaas/api/#/en/speech/latest/).
2121

22-
Note that realtime speech URLs are distinct from the speech URLs mentioned in the above link. To obtain a realtime speech url, take a speech url, and replace 'speech' with realtime. Also replace https with wss.
22+
Note that realtime speech URLs are distinct from the speech URLs mentioned in the above link. To obtain a realtime speech url, take a speech url, and replace 'speech' with realtime. Also replace https with wss.
2323

2424
For example, for the following speech url:
2525

26-
```https://speech.aiservice.af-johannesburg-1.oci.oraclecloud.com```
26+
`https://speech.aiservice.af-johannesburg-1.oci.oraclecloud.com`
2727

2828
This is the corresponding realtime speech URL:
2929

30-
```wss://realtime.aiservice.af-johannesburg-1.oci.oraclecloud.com```
30+
`wss://realtime.aiservice.af-johannesburg-1.oci.oraclecloud.com`
3131

3232
## Examples
33-
We have an example here itself, it can be found in the [example-client](example-client/) directory.
3433

34+
We have an example here itself, it can be found in the [example-client](example-client/) directory.
3535

3636
## Development
37-
Follow the instructions in the [Development Readme](ai-speech-realtime-sdk-web/README.md) to get started with local development/testing of the SDK code.
37+
38+
Follow the instructions in the [Development Readme](ai-speech-realtime-sdk-web/README.md) to get started with local development/testing of the SDK code.
3839

3940
## Contributing
4041

@@ -46,7 +47,7 @@ Please consult the [security guide](./SECURITY.md) for our responsible security
4647

4748
## License
4849

49-
Copyright (c) 2024 Oracle and/or its affiliates.
50+
Copyright (c) 2024, 2025, Oracle and/or its affiliates.
5051

5152
Released under the Universal Permissive License v1.0 as shown at
5253
<https://oss.oracle.com/licenses/upl/>.

ai-speech-realtime-sdk-web/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
** Copyright (c) 2024, Oracle and/or its affiliates.
3-
** Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/
4-
*/
2+
** Copyright (c) 2024, 2025, Oracle and/or its affiliates.
3+
** Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/
4+
*/
55

66
import * as AIServiceSpeechRealtimeClient from "./src/ai-speech-realtime-web-client";
77
export * from "./src/ai-speech-realtime-web-client";

ai-speech-realtime-sdk-web/src/ai-speech-api-client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/* tslint:disable */
22

33
/*
4-
** Copyright (c) 2024, Oracle and/or its affiliates.
4+
** Copyright (c) 2024, 2025, Oracle and/or its affiliates.
55
** Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/
66
*/
77

ai-speech-realtime-sdk-web/src/ai-speech-realtime-web-client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
** Copyright (c) 2024, Oracle and/or its affiliates.
2+
** Copyright (c) 2024, 2025, Oracle and/or its affiliates.
33
** Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/
44
*/
55

ai-speech-realtime-sdk-web/src/libs/speech-audio-resampler/SpeechAudioResampler.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/*
2-
**
3-
** Copyright (c) 2024 Oracle and/or its affiliates
4-
** Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/
5-
*/
2+
**
3+
** Copyright (c) 2024, 2025, Oracle and/or its affiliates
4+
** Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/
5+
*/
66

77
import { LP_275_TO_100_FIR, LP_2_TO_1_FIR, LP_3_TO_1_FIR } from "./filters";
88

ai-speech-realtime-sdk-web/src/libs/speech-audio-resampler/filters/LP_275_TO_100_FIR.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
** Copyright (c) 2024, Oracle and/or its affiliates.
2+
** Copyright (c) 2024, 2025, Oracle and/or its affiliates.
33
** Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/
44
55
/**

ai-speech-realtime-sdk-web/src/libs/speech-audio-resampler/filters/LP_2_TO_1_FIR.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
**
3-
** Copyright (c) 2024, Oracle and/or its affiliates.
3+
** Copyright (c) 2024, 2025, Oracle and/or its affiliates.
44
** Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/
55
66
* @author Stephane PEILLON

ai-speech-realtime-sdk-web/src/libs/speech-audio-resampler/filters/LP_3_TO_1_FIR.ts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
/*
2-
** Copyright (c) 2024, Oracle and/or its affiliates.
3-
** Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/
4-
* @author Stephane PEILLON
5-
* @description 3:1 Low Pass FIR for Downsampling Antialisaing.
6-
* Works for any 3x kHz to x kHz downsampling.
7-
* ( QMF FIR filter with cut-off frequency (@ -3 dB) at about 0.913 times target fs/2 - 180 taps )
8-
* @example Convert 48000 Hz to 16000 Hz, or 96000 Hz to 32000 Hz.
9-
**/
1+
/*
2+
** Copyright (c) 2024, 2025, Oracle and/or its affiliates.
3+
** Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/
4+
* @author Stephane PEILLON
5+
* @description 3:1 Low Pass FIR for Downsampling Antialisaing.
6+
* Works for any 3x kHz to x kHz downsampling.
7+
* ( QMF FIR filter with cut-off frequency (@ -3 dB) at about 0.913 times target fs/2 - 180 taps )
8+
* @example Convert 48000 Hz to 16000 Hz, or 96000 Hz to 32000 Hz.
9+
**/
1010
export default [
1111
-2.5033838264794034e-5, -3.6451561137378568e-5, -1.1489993827892933e-5, 3.9324378887465603e-5, 6.9984193520672766e-5, 3.7556691270439976e-5, -4.7696645534530499e-5, -0.00011379935461751734,
1212
-8.4009576971176187e-5, 4.2088177776074692e-5, 0.00016391587447478332, 0.00015508372993570357, -1.253765788919669e-5, -0.00021258262011091092, -0.00025240598961751948, -5.1874329668708116e-5,

ai-speech-realtime-sdk-web/src/libs/speech-audio-resampler/filters/index.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
/*
2-
**
3-
** Copyright (c) 2024, Oracle and/or its affiliates.
4-
** Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/
5-
*/
1+
/*
2+
**
3+
** Copyright (c) 2024, 2025, Oracle and/or its affiliates.
4+
** Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/
5+
*/
66

77
export { default as LP_275_TO_100_FIR } from "./LP_275_TO_100_FIR";
88
export { default as LP_2_TO_1_FIR } from "./LP_2_TO_1_FIR";

0 commit comments

Comments
 (0)