google speech api 호출(Google 음성 인식 엔진 사용)
4182 단어 Google
http://mikepultz.com/2011/03/accessing-google-speech-api-chrome-11/
http://aiku.me/bar/10448042
첨부:http://src.chromium.org/viewvc/chrome/trunk/src/content/browser/speech/
curl 명령 행
curl -H "Content-Type: audio/x-flac; rate=8000" "https://www.google.com/speech-api/v1/recognize?xjerr=1&client=chromium&lang=en-US" -F myfile="@org.flac" -k -o 'org_xx.txt'
wget 명령 행
wget -O 'org_xx.txt' --user-agent="Mozilla/5.0" --post-file=org.flac --header="Content-Type: audio/x-flac; rate=8000" "http://www.google.com/speech-api/v1/recognize?xjerr=1&client=chromium&lang=en-US"
perl 스 크 립 트 myspeech
1 #! /usr/bin/perl
2 require LWP::UserAgent;
3
4 my $url = "https://www.google.com/speech-api/v1/recognize?xjerr=1&client=chromium&lang=en-US";
5 my $audio = "";
6
7 open(FILE, "<" . $ARGV[0]);
8 while(<FILE>)
9 {
10 $audio .= $_;
11 }
12 close(FILE);
13
14 my $ua = LWP::UserAgent->new;
15
16 my $response = $ua->post($url, Content_Type => "audio/x-flac; rate=8000", Content => $audio);
17
18 if ($response->is_success)
19 {
20 print $response->content;
21 }
운행 방식 ./myspeech org.flac
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
how to realize GMap텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.