Rust
Rust
OpenAI (ChatGPT) Create Transcription
See more OpenAI ChatGPT Examples
Show how to transcribe audio to text.Chilkat Rust Downloads
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
let http = chilkat::Http::new();
// Implements the following CURL command:
// curl https://api.openai.com/v1/audio/transcriptions \
// -H "Authorization: Bearer $OPENAI_API_KEY" \
// -H "Content-Type: multipart/form-data" \
// -F file="@/path/to/file/audio.mp3" \
// -F model="whisper-1"
// Use the following online tool to generate HTTP code from a CURL command
// Convert a cURL Command to HTTP Source Code
let req = chilkat::HttpRequest::new();
req.set_http_verb("POST");
req.set_path("/v1/audio/transcriptions");
req.set_content_type("multipart/form-data");
let _ = req.add_file_for_upload2("file", "qa_data/mp3/Conversation-with-39-year-old-male-Virginia_afccal000227_001_00-03-37.mp3", "audio/mpeg").is_ok();
req.add_param("model", "whisper-1");
req.add_header("Expect", "100-continue");
// This is NOT a real key. Change the "sk-vi...." to your own key.
req.add_header("Authorization", "Bearer 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");
let resp = chilkat::HttpResponse::new();
if http.http_s_req("api.openai.com", 443, true, &req, &resp).is_err() {
println!("{}", http.last_error_text());
return;
}
let sb_response_body = chilkat::StringBuilder::new();
let _ = resp.get_body_sb(&sb_response_body);
let j_resp = chilkat::JsonObject::new();
let _ = j_resp.load_sb(&sb_response_body);
j_resp.set_emit_compact(false);
println!("Response Body:");
println!("{}", j_resp.emit().unwrap_or_default());
let resp_status_code = resp.status_code();
println!("Response Status Code = {}", resp_status_code);
if resp_status_code >= 400 {
println!("Response Header:");
println!("{}", resp.header());
println!("Failed.");
return;
}
// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)
// {
// "text": "Imagine the wildest idea that you've ever had, and you're curious about how it might scale to something that's a 100, a 1,000 times bigger. This is a place where you can get to do that."
// }
// Sample code for parsing the JSON response...
// Use the following online tool to generate parsing code from sample JSON:
// Generate Parsing Code from JSON
let text = j_resp.string_of("text").unwrap_or_default();