Files
servicebase/pkg/helper/AliAudio_test.go
2025-11-18 17:48:20 +08:00

12 lines
257 B
Go

package helper
import (
"fmt"
"testing"
)
func TestTransAudioToText(t *testing.T) {
gotResult, err := TransAudioToText("https://check.dongdongdianjing.com/videos/20250606/d69960523fe2756076f1f8d7c37fa742.mp4")
fmt.Sprintf("%+v %+v", gotResult, err)
}