iOS开发笔记-138: swift-iOS15后,推送商家收款语音播报

先添加UNNotificationServiceExtension。File - new - targrt - UNNotificationServiceExtension

项目和UNNotificationServiceExtension,都要添加appGroups,GroupIdentifier要一致,一般是"group.自己项目的BundleIdentifier",不一致会有问题。
添加appGroups的原因是:共享一个group后,可以合成播报语音,然后存到group中,之后在UNNotificationServiceExtension中可以读取到合成后的语音文件。

UNNotificationServiceExtension的Minimum Deployment最低版本号要改一下,默认是最高iOS系统版本。会出现低版本真机调试不可用的情况

网上的实现方式有3种,我用的是第一种。
关于音频的拼接,如果用Data数据流的方式拼接,会出现只有第一段音频声音的问题,所有还是要用AVAssetExportSession来拼接。
1种是修改系统的通知声音,可以实现效果,但是因为音量不能调节,声音太小。如果对音量没有要求的,可以用这个方案,而且体验更好。

//自定义通知声音
    override func didReceive(_ request: UNNotificationRequest, withContentHandler contentHandler: @escaping (UNNotificationContent) -> Void) {
        self.contentHandler = contentHandler
        bestAttemptContent = (request.content.mutableCopy() as? UNMutableNotificationContent)
        let keyS = bestAttemptContent?.userInfo["key"] as? String
        if keyS == "sound" {
            let valueS = bestAttemptContent?.userInfo["value"] as? String//金额
            let formatter = NumberFormatter()
            formatter.locale = Locale(identifier: "zh-CN")
            formatter.allowsFloats = true
            let strF: CGFloat = formatter.number(from: valueS ?? "0") as? CGFloat ?? 0.0
            formatter.numberStyle = . spellOut
            let resultS: String = formatter.string(from: NSNumber (value: strF)) ?? ""
            let resultSA: Array<String> = resultS.map { String($0) }
            var finalA: Array<String> = ["钱响", "哥小兔到账"]
            finalA.append(contentsOf: resultSA)
            finalA.append("元")
            mergeAVAsset(with: finalA) { (name,path)  in
                if let bestAttemptContent = self.bestAttemptContent {
                    let temp3 = UNNotificationSoundName(rawValue: name ?? "")
                    let temp4 = UNNotificationSound.init(named: temp3)
                    bestAttemptContent.sound = temp4
                    contentHandler(bestAttemptContent)
                }
            }
        } else {
            if let bestAttemptContent = self.bestAttemptContent {
                contentHandler(bestAttemptContent)
            }
        }
    }

第2种是:AVAudioPlayer播放语音,瑕疵点就是,推送横幅要在语音播报结束后出现,不然就会和AVAudioPlayer语音播报冲突。(功能实现了,但是打包上传有问题,这个当打包上传到Appstore上就会出现错误了,提示说UNNotificationServiceExtension中的UIBackgroundModes的Audio这个字段是非法的,如果是企业分发模式可以添加。要上架审核的话,是无法添加的)所以这个方法只适合企业分发用,上架的话暂时还是用上面的第1方法。

UNNotificationServiceExtension 要添加一下权限,否则AVAudioPlayer不能在UNNotificationServiceExtension中播放


截屏2024-08-23 10.53.39.png
import UserNotifications
import MediaPlayer

class NotificationService: UNNotificationServiceExtension {

    var contentHandler: ((UNNotificationContent) -> Void)?
    var bestAttemptContent: UNMutableNotificationContent?

    var audioPlayer: AVAudioPlayer?
    
    override func didReceive(_ request: UNNotificationRequest, withContentHandler contentHandler: @escaping (UNNotificationContent) -> Void) {
        self.contentHandler = contentHandler
        bestAttemptContent = (request.content.mutableCopy() as? UNMutableNotificationContent)
        let keyS = bestAttemptContent?.userInfo["type"] as? Int
        if keyS == 2 {
            let valueS = bestAttemptContent?.userInfo["amount"] as? String//金额
            let formatter = NumberFormatter()
            formatter.locale = Locale(identifier: "zh-CN")
            formatter.allowsFloats = true
            let strF: CGFloat = formatter.number(from: valueS ?? "0") as? CGFloat ?? 0.0
            formatter.numberStyle = . spellOut
            let resultS: String = formatter.string(from: NSNumber (value: strF)) ?? ""
            let resultSA: Array<String> = resultS.map { String($0) }
            var finalA: Array<String> = ["钱响", "哥小兔到账"]
            finalA.append(contentsOf: resultSA)
            finalA.append("元")
            mergeAVAsset(with: finalA) { (name,path)  in
//                NSLog("合并后的音频路径: \(path)")
                let audioSession = AVAudioSession.sharedInstance()
                do {//配置音频,可以在后台、静音情况下播放
                    try audioSession.setCategory(.playback, mode:.default, options: [.mixWithOthers])
                    try audioSession.setActive(true)
                } catch {
                    print("Error configuring audio session: \(error)")
                }
                self.audioPlayer = try? AVAudioPlayer(contentsOf: path ?? URL(fileURLWithPath: ""))
                self.audioPlayer?.delegate = self
                self.audioPlayer?.play()
            }
        } else {
            if let bestAttemptContent = self.bestAttemptContent {
                // Modify the notification content here...
//                    bestAttemptContent.title = "\(bestAttemptContent.title) [modified]"
                contentHandler(bestAttemptContent)
            }
        }
    }
     
    override func serviceExtensionTimeWillExpire() {
        // Called just before the extension will be terminated by the system.
        // Use this as an opportunity to deliver your "best attempt" at modified content, otherwise the original push payload will be used.
        if let contentHandler = contentHandler, let bestAttemptContent =  bestAttemptContent {
            contentHandler(bestAttemptContent)
        }
    }
    //合成要播报的语音
    func mergeAVAsset(with sourcePathArr: [String], rate: Double = 1.0, completed: @escaping (_ soundName: String?,_ soundsFileURL: URL?) -> Void) {
        // 创建音频轨道, 并获取多个音频素材的轨道
        let composition = AVMutableComposition()
        // 音频插入的开始时间, 用于记录每次添加音频文件的开始时间
        var beginTime = CMTime.zero
        for audioFilePath in sourcePathArr {
            // 获取音频素材
            let audioFileURL: String = Bundle.main.path(forResource: audioFilePath, ofType: "mp3") ?? ""
            guard let audioAsset = AVURLAsset(url: URL(fileURLWithPath: audioFileURL)) as AVAsset? else { continue }
            // 音频轨道
            let audioTrack = composition.addMutableTrack(withMediaType: .audio, preferredTrackID: kCMPersistentTrackID_Invalid)
            // 获取音频素材轨道
            guard let audioAssetTrack = audioAsset.tracks(withMediaType: .audio).first else { continue }
            // 音频合并 - 插入音轨文件
            try? audioTrack?.insertTimeRange(CMTimeRangeMake(start: CMTime.zero, duration: audioAsset.duration), of: audioAssetTrack, at: beginTime)
            // 记录尾部时间
            beginTime = CMTimeAdd(beginTime, audioAsset.duration)
        }
        let finalTimeValue = composition.duration.value * Int64(10 * rate)
        let finalTimeScale = composition.duration.timescale * 10
        composition.scaleTimeRange(.init(start: .zero, end: composition.duration), toDuration: .init(value: finalTimeValue, timescale: finalTimeScale))
        
        let groupURL = FileManager.default.containerURL(forSecurityApplicationGroupIdentifier: "group.自己项目的BundleIdentifier")
        //建立文件夹
        let soundsURL = groupURL?.appendingPathComponent("Library/", isDirectory: true)
        let soundsURL2 = groupURL?.appendingPathComponent("Library/Sounds/", isDirectory: true)
        do {
            //建立文件夹
            if !FileManager.default.fileExists(atPath: (soundsURL?.path ?? "")) {
                try FileManager.default.createDirectory(atPath: (soundsURL?.path ?? ""), withIntermediateDirectories: true, attributes: nil)
            }
            //建立文件夹
            if !FileManager.default.fileExists(atPath: (soundsURL2?.path ?? "")) {
                try FileManager.default.createDirectory(atPath: (soundsURL2?.path ?? ""), withIntermediateDirectories: true, attributes: nil)
            }
        } catch {
            print("Error 建立文件夹: \(error)")
        }
        // 新建文件名,如果存在就删除旧的
        let soundName = "sound.m4a"
        let outPutFilePath = "Library/Sounds/" + soundName
        let soundsFileURL = groupURL?.appendingPathComponent(outPutFilePath, isDirectory: false)
        
        if FileManager.default.fileExists(atPath: (soundsFileURL?.path ?? "")) {
            do {
                try FileManager.default.removeItem(atPath:(soundsFileURL?.path ?? ""))
            } catch {
                print("Error 新建文件名,如果存在就删除旧的: \(error)")
            }
        }
        // 导出合并后的音频文件
        guard let session = AVAssetExportSession(asset: composition, presetName: AVAssetExportPresetAppleM4A) else { completed(nil, nil); return }
        // 音频文件输出
        session.outputURL = soundsFileURL
        session.outputFileType = AVFileType.m4a // 与上述的`preset`相对应
        session.shouldOptimizeForNetworkUse = true // 优化网络
        //            session.audioMix = videoAudioMixTools
        session.exportAsynchronously {
            if session.status == .completed {
//                print("合并成功 ----\(soundsFileURL)")
                completed(soundName, soundsFileURL)
            } else {
                // 其他情况, 具体请看这里`AVAssetExportSessionStatus`.
//                print("合并失败 ----\(session.status.rawValue)")
//                print("合并失败 ----\(session.error)")
                completed(nil, nil)
            }
        }
    }
}
extension NotificationService: AVAudioPlayerDelegate {
    func audioPlayerDidFinishPlaying(_ player: AVAudioPlayer, successfully flag: Bool) {
        //播放结束,执行contentHandler,结束这个通知
        if (contentHandler != nil) && (bestAttemptContent != nil) {
            bestAttemptContent?.sound = .none//因为有语音播报了,这里把系统通知的声音关了
            contentHandler!(bestAttemptContent!)
        }
    }
}

像 哥小兔到账.mp3、 元.mp3、 万.mp3 这些语音文件,可以去ai语音合成,类似的有:百度、科大讯飞、标贝等

语音生成工具:标贝悦读、百度、科大讯飞

第三种
经过查找,大概率支付宝、微信使用的使用voip模式,通过查找微信与支付宝的ipa,ipa中配置的文件都UIBackgroundModes(后台模式)包含voip。
所以大概率支付宝与微信都使用的是Voip PushKit实现的收款的语音播报功能
之后也会调查下Voip PushKit实现的收款的语音播报功能,PushKit和极光推送还不太一样。持续关注中。。。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,378评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,356评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,702评论 0 342
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,259评论 1 279
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,263评论 5 371
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,036评论 1 285
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,349评论 3 400
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,979评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,469评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,938评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,059评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,703评论 4 323
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,257评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,262评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,485评论 1 262
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,501评论 2 354
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,792评论 2 345

推荐阅读更多精彩内容