You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -15,7 +15,7 @@ Follow one of the tutorials to create a project and get your host, access_key an
15
15
*[Recognize Live Channels and Custom Content](https://docs.acrcloud.com/tutorials/recognize-tv-channels-and-custom-content)
16
16
*
17
17
## Identify Music or TV with iOS SDK
18
-
This demo shows how to identify music ( songs ) or detect live TV channels by recorded sound with ACRCloud iOS SDK. Contact us if you have any question or special requirement about the SDK: [email protected]
18
+
This demo shows how to identify music ( songs ) or detect live TV channels by recorded sound with ACRCloud iOS SDK. Contact us if you have any questions or special requirements about the SDK: [email protected]
19
19
20
20
## Preparation
21
21
* The newest ACRCloud iOS SDK which contains both ObjectC and Swift demo projects.
@@ -27,7 +27,7 @@ This demo shows how to identify music ( songs ) or detect live TV channels by re
27
27
## Test the demo
28
28
* Download the ACRCloud iOS SDK package and unzip it.
29
29
* Open either ACRCloudDemo or ACRCloudDemo_Swift
30
-
* Update accessKey, host and accessSecret in ViewController with the information of your project.
30
+
* Update accessKey, host, and accessSecret in ViewController with the information of your project.
31
31
* Run the demo project to test recognizing contents in the buckets of your project.
32
32
33
33
## How to use the iOS SDK
@@ -77,32 +77,34 @@ In the progress of recording and detecting, you can stop (click the “Stop” B
77
77
```
78
78
79
79
#### Open Prerecording Recognition
80
-
Open prerecording will make the recognition much more faster.
80
+
Open prerecording will make the recognition much faster.
81
81
If you want open this feature, call "-(void)startPreRecord:(NSInteger)recordTime" before "startRecordRec"
82
-
The parameter recordTime is the prerecording time. The recommend value is 3000-4000
82
+
The parameter recordTime is the prerecording time. The recommended value is 3000-4000
83
83
```
84
84
[_client startPreRecord:3000]
85
85
```
86
86
87
87
### Low-Level Function
88
88
#### File/PCM/Fingerprint Recognition
89
-
if you recongize audio data, the audio format shoud be RIFF (little-endian) data, WAVE audio, Microsoft PCM, 16bit, mono 8000 Hz, you also can use the resample function to convert the audio data to what we need.
89
+
if you recognize audio data or get the audio fingerprint, the audio format should be RIFF (little-endian) data, WAVE audio, Microsoft PCM, 16-bit, mono 8000 Hz, you also can use the resample function to convert the audio data to what we need.
0 commit comments