To be or not to be is not the question.The vital question is how to be and how not to be.We'll all go on to achieve great things.There is no doubt about that.Achievement is wonderful when you know why you're doing it and when you don't know it can be a terrible trap.Each time you set out to do something new,your inexperience can either lead you down a path where you will conform to someone else's values or you can forge your own path,even if you don't realize that's what you're doing.If your reasons are your own,your path,even if it's a strange and clumsy path,will be wholly yours and you will control the rewards of what you do by making your internal life fulfilling.
SpeechflowのASR APIは、以下のような優れた精度で文字起こしを行います。 14言語と、そのリストは増え続けています。このため、SpeechFlowは音声をテキストに変換したり、音声をテキストに変換したりするための理想的なソリューションとなっています。
AIモデルにより、音声は適切な句読点を含むテキストに変換され、読解に最適化されるため、理解しやすく、行動しやすいトランスクリプトになります。
シンプルなAPI設計により、SpeechFlowの導入は手間をかけずに行うことができます。クラウドとオンプレミスの両方をサポートし、セキュリティ、信頼性、柔軟性を確保します。
SpeechFlowは、最大1時間の音声ファイルを3分以内に処理できるため、正確でタイムリーなテープ起こしサービスを必要とする企業や個人にとって、非常に効率的なソリューションとなります。
1秒あたり $0.0002 の従量課金です。使用量と支払額を完全にコントロールし、透明性を確保できます。
まず、API KEY IDとAPI KEY SECRETを以下のコードにコピーしてください。ターミナルでこのコードを実行すると、すぐにtaskIdが返されます。
# for remote file API_KEY_ID="YOUR_API_KEY_ID" API_KEY_SECRET="YOUR_API_KEY_SECRET" # See more lang code: https://docs.speechflow.io/#/?id=ap-lang-list LANG="en" FILE_REMOTE_PATH="https://sf-docs-prod.s3.us-west-1.amazonaws.com/web/sample-audios/EN.wav" curl -H "keyId:${API_KEY_ID}" -H "keySecret:${API_KEY_SECRET}" -X POST -d "lang=${LANG}&remotePath=${FILE_REMOTE_PATH}" \ "https://api.speechflow.io/asr/file/v1/create"
# for local file API_KEY_ID="YOUR_API_KEY_ID" API_KEY_SECRET="YOUR_API_KEY_SECRET" # See more lang code: https://docs.speechflow.io/#/?id=ap-lang-list LANG="en" FILE_LOCAL_PATH="YOUR_FILE_LOCAL_PATH" curl -H "keyId:${API_KEY_ID}" -H "keySecret:${API_KEY_SECRET}" -F "file=@${FILE_LOCAL_PATH}" \ -X POST "https://api.speechflow.io/asr/file/v1/create?lang=${LANG}"
セカンド、taskIdを以下のコードにコピーしてください。このコードをターミナルで実行すると、転写結果が返されます。
API_KEY_ID="YOUR_API_KEY_ID" API_KEY_SECRET="YOUR_API_KEY_SECRET" TASK_ID="THE_TASKID_RETURNED_IN_THE_FIRST_STEP" curl -H "keyId:${API_KEY_ID}" -H "keySecret:${API_KEY_SECRET}" \ "https://api.speechflow.io/asr/file/v1/query?taskId=${TASK_ID}"