I am trying to convert some Cantonese audio clip into text with the Google Speech API. The example app on https://cloud.google.com/speech/docs/samples was good (I am using Java) and following the instruction I can get the example converting the sample clip into text. But than I get into trouble converting the Cantonese. Firstly, I can't get it converting Cantonese clip. It just returned blank result. I did two things to make it return some transcript. Setting the Language Code RecognitionConfig config = RecognitionConfig.newBuilder() .setEncoding(AudioEncoding. LINEAR16 ) .setSampleRate( samplingRate ).setLanguageCode( "yue-Hant-HK" ) .build(); Using Audacity and record the clip with MONO channel, and export it as RAW type: File type: Other uncompressed files Header: RAW (header-less) En...