播放Apple Watch扬声器的声音

时间:2015-03-11 06:41:52

标签: ios objective-c iphone audio apple-watch

有没有办法从Apple Watch的扬声器中播放声音?我无法在线找到任何文档。

6 个答案:

答案 0 :(得分:17)

现在,从使用WKAudioFilePlayerWKInterfaceMovie的watchOS 2开始,这是可能的。

NSURL *assetURL = [[NSBundle mainBundle] URLForResource:@"file" withExtension:@"wav"];

WKAudioFilePlayer示例:

WKAudioFileAsset *asset = [WKAudioFileAsset assetWithURL:assetURL];
WKAudioFilePlayerItem *playerItem = [WKAudioFilePlayerItem playerItemWithAsset:asset];
WKAudioFilePlayer *audioFilePlayer = [WKAudioFilePlayer playerWithPlayerItem:playerItem];
[audioFilePlayer play];

WKInterfaceMovie示例:

[self presentMediaPlayerControllerWithURL:assetURL options:nil completion:nil];

答案 1 :(得分:3)

无法从Apple Watch的扬声器中播放声音,但您可以触发在iPhone上播放声音文件,此处为thread

答案 2 :(得分:3)

  • presentMediaPlayerControllerWithURL:选择:完成: (watchOS 2.0新增功能)

URL 您要播放的媒体文件的URL。 URL必须指定一个文件;不支持流媒体。该文件可能包含音频,视频或两者。

如果为远程服务器上的文件指定URL,则此方法首先下载文件并显示显示操作进度的进度指示器。由于WatchKit在从Web服务器下载文件时使用App Transport Security(ATS),因此该文件必须位于安全服务器上,并且URL必须使用https方案。如果您的服务器不支持ATS级别的安全性,请在播放前自行下载该文件。

使用sharedcontainer,watch extensions来存储文件。

使用此方法播放的任何音频都会路由到配对的蓝牙音频设备(如果有)。如果没有可用的蓝牙音频设备,音频将被路由到Apple Watch扬声器。

答案 3 :(得分:3)

对于WatchOS3,原始问题的答案是WKInterfaceInlineMovie https://developer.apple.com/reference/watchkit/wkinterfaceinlinemovie

您可以隐藏小部件,使其不会改变您的界面设计。如果没有连接蓝牙音箱,它会通过手表的扬声器播放音频文件。

答案 4 :(得分:0)

import AVFoundation
var player: AVAudioPlayer?

if let path = Bundle.main.path(forResource: "siren", ofType: "wav") {

        let fileUrl = URL(fileURLWithPath: path)

        do{
            try AVAudioSession.sharedInstance().setCategory(AVAudioSessionCategoryPlayback)
            try AVAudioSession.sharedInstance().setActive(true)

            player = try AVAudioPlayer(contentsOf: fileUrl)

            guard let player = player else { return }

            player.play()

        }
        catch
        {

        }

    }

我用它来播放来自Apple Watch(4.3)扬声器的自定义声音,并且效果很好。 不要忘记将音频文件目标成员资格设置为监视工具包。

答案 5 :(得分:0)

在InterfaceController.swift文件中

还可在模拟器和设备中正常运行 在最新的WatchOS 5中可用

import AVFoundation

var player = AVAudioPlayer()
let audioSession = AVAudioSession.sharedInstance()


    override func willActivate() {
    // This method is called when watch view controller is about to be visible to user
    super.willActivate()

    do {
        // Working Reroutes to headset
        //            try session.setCategory(AVAudioSession.Category.playback,
        //                                    mode: .default,
        //                                    policy: .longForm,
        //                                    options: [])

        // Plays in watch speaker
        try audioSession.setCategory(AVAudioSession.Category.playback,
                                mode: .default,
                                policy: .default,
                                options: [])
    } catch let error {
        fatalError("*** Unable to set up the audio session: \(error.localizedDescription) ***")
    }
    if let path = Bundle.main.url(forResource: "piano", withExtension: "mp3") {
        let fileUrl = path
        do{
            player = try AVAudioPlayer(contentsOf: fileUrl)
        }
        catch
        {
            print("*** Unable to set up the audio player: \(error.localizedDescription) ***")
            // Handle the error here.
            return
        }
    }
}

使用此代码调用音频会话,并在“播放”按钮动作内或要播放音频的任何情况下播放音频。

     audioSession.activate(options: []) { (success, error) in
            guard error == nil else {
                print("*** error occurred: \(error!.localizedDescription) 
                     ***")
                // Handle the error here.
                return
            }
            if(success){
                // Play the audio file.
                self.player.play()
            }
        }

如果您仍然无法播放音频,那一定是因为您在音频文件中获得了nil值,所以指定的音频文件将不在您要搜索的正确包中