├── .gitignore ├── Cartfile ├── Cartfile.resolved ├── LICENSE ├── README.md ├── Speech to Text.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata └── Speech to Text ├── AppDelegate.swift ├── Assets.xcassets └── AppIcon.appiconset │ └── Contents.json ├── AudioFileViewController.swift ├── Base.lproj ├── LaunchScreen.storyboard └── Main.storyboard ├── CredentialsExample.swift ├── Info.plist ├── MicrophoneAdvancedViewController.swift ├── MicrophoneBasicViewController.swift └── SpeechSample.wav /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/speech-to-text-swift/HEAD/.gitignore -------------------------------------------------------------------------------- /Cartfile: -------------------------------------------------------------------------------- 1 | github "watson-developer-cloud/swift-sdk" ~> 2.0.0 2 | -------------------------------------------------------------------------------- /Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/speech-to-text-swift/HEAD/Cartfile.resolved -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/speech-to-text-swift/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/speech-to-text-swift/HEAD/README.md -------------------------------------------------------------------------------- /Speech to Text.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/speech-to-text-swift/HEAD/Speech to Text.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Speech to Text.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/speech-to-text-swift/HEAD/Speech to Text.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Speech to Text/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/speech-to-text-swift/HEAD/Speech to Text/AppDelegate.swift -------------------------------------------------------------------------------- /Speech to Text/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/speech-to-text-swift/HEAD/Speech to Text/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Speech to Text/AudioFileViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/speech-to-text-swift/HEAD/Speech to Text/AudioFileViewController.swift -------------------------------------------------------------------------------- /Speech to Text/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/speech-to-text-swift/HEAD/Speech to Text/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Speech to Text/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/speech-to-text-swift/HEAD/Speech to Text/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Speech to Text/CredentialsExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/speech-to-text-swift/HEAD/Speech to Text/CredentialsExample.swift -------------------------------------------------------------------------------- /Speech to Text/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/speech-to-text-swift/HEAD/Speech to Text/Info.plist -------------------------------------------------------------------------------- /Speech to Text/MicrophoneAdvancedViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/speech-to-text-swift/HEAD/Speech to Text/MicrophoneAdvancedViewController.swift -------------------------------------------------------------------------------- /Speech to Text/MicrophoneBasicViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/speech-to-text-swift/HEAD/Speech to Text/MicrophoneBasicViewController.swift -------------------------------------------------------------------------------- /Speech to Text/SpeechSample.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson-developer-cloud/speech-to-text-swift/HEAD/Speech to Text/SpeechSample.wav --------------------------------------------------------------------------------